diff --git a/pom.xml b/pom.xml index af7ee12..b00301b 100644 --- a/pom.xml +++ b/pom.xml @@ -182,17 +182,22 @@ + wms-server org.springframework.boot spring-boot-maven-plugin + + -Dfile.encoding=UTF-8 + org.apache.maven.plugins maven-compiler-plugin - 16 - 16 + 17 + 17 + UTF-8 diff --git a/src/main/java/com/wms/controller/ExcelController.java b/src/main/java/com/wms/controller/ExcelController.java index 21a00b0..e4a6dce 100644 --- a/src/main/java/com/wms/controller/ExcelController.java +++ b/src/main/java/com/wms/controller/ExcelController.java @@ -72,7 +72,7 @@ public class ExcelController { @ResponseBody @Transactional(isolation = Isolation.REPEATABLE_READ, propagation = Propagation.REQUIRED) public String uploadStocks(@RequestPart("file") MultipartFile file, @RequestPart("obj") FileVo fileVo) { - logger.info("导入库存,请求ip:{}", getIpAddr(servletRequest)); + logger.info("导入库存,请求ip:{},文件详情:{}", getIpAddr(servletRequest), convertJsonString(fileVo)); ResponseEntity response = new ResponseEntity(); try { // 导入excel @@ -102,7 +102,7 @@ public class ExcelController { @ResponseBody @Transactional(isolation = Isolation.REPEATABLE_READ, propagation = Propagation.REQUIRED) public String uploadDbs(@RequestPart("file") MultipartFile file, @RequestPart("obj") FileVo fileVo) { - logger.info("导入DBS,请求ip:{}", getIpAddr(servletRequest)); + logger.info("导入DBS,请求ip:{},文件详情:{}", getIpAddr(servletRequest), convertJsonString(fileVo)); ResponseEntity response = new ResponseEntity(); try { // 先移除之前last表中的内容 @@ -138,7 +138,7 @@ public class ExcelController { @ResponseBody @Transactional(isolation = Isolation.REPEATABLE_READ, propagation = Propagation.REQUIRED) public String uploadKateOrders(@RequestPart("file") MultipartFile file, @RequestPart("obj") FileVo fileVo) { - logger.info("导入工单,请求ip:{}", getIpAddr(servletRequest)); + logger.info("导入工单,请求ip:{},文件详情:{}", getIpAddr(servletRequest), convertJsonString(fileVo)); ResponseEntity response = new ResponseEntity(); try { // 导入excel @@ -168,8 +168,8 @@ public class ExcelController { public void downloadStockExcel(@RequestBody StockQuery stockQuery, HttpServletResponse response) throws IOException { logger.info("导出库存记录,筛选参数:{},请求ip:{}", convertJsonString(stockQuery), getIpAddr(servletRequest)); //设置响应格式 -// response.setContentType("application/vnd.openxmlformats-officedocument.spreadsheetml.sheet"); - response.setContentType("application/vnd.ms-excel"); //文件扩展名为excel格式 + response.setContentType("application/vnd.openxmlformats-officedocument.spreadsheetml.sheet"); +// response.setContentType("application/vnd.ms-excel"); //文件扩展名为excel格式 response.setCharacterEncoding("utf-8"); // 这里URLEncoder.encode可以防止中文乱码 当然和easyexcel没有关系 String fileName = URLEncoder.encode("库存报表", StandardCharsets.UTF_8).replaceAll("\\+", "%20"); @@ -200,7 +200,7 @@ public class ExcelController { public void downloadInRecordExcel(@RequestBody TaskRecordQuery query, HttpServletResponse response) throws IOException { logger.info("导出入库记录,筛选参数:{},请求ip:{}", convertJsonString(query), getIpAddr(servletRequest)); //设置响应格式 - response.setContentType("application/vnd.ms-excel"); //文件扩展名为excel格式 + response.setContentType("application/vnd.openxmlformats-officedocument.spreadsheetml.sheet"); response.setCharacterEncoding("utf-8"); // 这里URLEncoder.encode可以防止中文乱码 当然和easyexcel没有关系 String fileName = URLEncoder.encode("入库记录", StandardCharsets.UTF_8).replaceAll("\\+", "%20"); @@ -226,7 +226,7 @@ public class ExcelController { public void downloadOutRecordExcel(@RequestBody TaskRecordQuery query, HttpServletResponse response) throws IOException { logger.info("导出出库记录,筛选参数:{},请求ip:{}", convertJsonString(query), getIpAddr(servletRequest)); //设置响应格式 - response.setContentType("application/vnd.ms-excel"); //文件扩展名为excel格式 + response.setContentType("application/vnd.openxmlformats-officedocument.spreadsheetml.sheet"); response.setCharacterEncoding("utf-8"); // 这里URLEncoder.encode可以防止中文乱码 当然和easyexcel没有关系 String fileName = URLEncoder.encode("出库记录", StandardCharsets.UTF_8).replaceAll("\\+", "%20"); @@ -252,7 +252,7 @@ public class ExcelController { public void downloadInventoryRecordExcel(@RequestBody TaskRecordQuery query, HttpServletResponse response) throws IOException { logger.info("导出盘点记录,筛选参数:{},请求ip:{}", convertJsonString(query), getIpAddr(servletRequest)); //设置响应格式 - response.setContentType("application/vnd.ms-excel"); //文件扩展名为excel格式 + response.setContentType("application/vnd.openxmlformats-officedocument.spreadsheetml.sheet"); response.setCharacterEncoding("utf-8"); // 这里URLEncoder.encode可以防止中文乱码 当然和easyexcel没有关系 String fileName = URLEncoder.encode("盘点记录", StandardCharsets.UTF_8).replaceAll("\\+", "%20"); @@ -278,7 +278,7 @@ public class ExcelController { public void downloadVehicleExcel(@RequestBody VehicleQuery vehicleQuery, HttpServletResponse response) throws IOException { logger.info("导出料箱报表,筛选参数:{},请求ip:{}", convertJsonString(vehicleQuery), getIpAddr(servletRequest)); //设置响应格式 - response.setContentType("application/vnd.ms-excel"); //文件扩展名为excel格式 + response.setContentType("application/vnd.openxmlformats-officedocument.spreadsheetml.sheet"); response.setCharacterEncoding("utf-8"); // 这里URLEncoder.encode可以防止中文乱码 当然和easyexcel没有关系 String fileName = URLEncoder.encode("盘点记录", StandardCharsets.UTF_8).replaceAll("\\+", "%20"); @@ -308,7 +308,7 @@ public class ExcelController { public void downloadLocationsExcel(@RequestBody LocationQuery locationQuery, HttpServletResponse response) throws IOException { logger.info("导出库位报表,筛选参数:{},请求ip:{}", convertJsonString(locationQuery), getIpAddr(servletRequest)); //设置响应格式 - response.setContentType("application/vnd.ms-excel"); //文件扩展名为excel格式 + response.setContentType("application/vnd.openxmlformats-officedocument.spreadsheetml.sheet"); response.setCharacterEncoding("utf-8"); // 这里URLEncoder.encode可以防止中文乱码 当然和easyexcel没有关系 String fileName = URLEncoder.encode("库位报表", StandardCharsets.UTF_8).replaceAll("\\+", "%20"); diff --git a/src/main/java/com/wms/controller/TaskController.java b/src/main/java/com/wms/controller/TaskController.java index 0c4a7b4..8744652 100644 --- a/src/main/java/com/wms/controller/TaskController.java +++ b/src/main/java/com/wms/controller/TaskController.java @@ -308,20 +308,15 @@ public class TaskController { // 已有库存,直接更新数量 existStock.getGoodsRelated().setRemainNum(existStock.getGoodsRelated().getRemainNum().add(inTask.getGoodsRelated().getOpNum())); existStock.getGoodsRelated().setTotalNum(existStock.getGoodsRelated().getTotalNum().add(inTask.getGoodsRelated().getOpNum())); - existStock.setLastUpdateTime(LocalDateTime.now()); - existStock.setLastUpdateUser(inTask.getUserName()); - existStock.setLocationId(inTask.getDestination()); stockService.update(existStock, new LambdaUpdateWrapper().eq(Stock::getStockId, existStock.getStockId())); } else { Stock newStock = new Stock(); newStock.setStockId(generateId("ST_")); newStock.setVehicleId(inTask.getVehicleId()); - newStock.setLocationId(inTask.getDestination()); newStock.setNoUseDays(0); newStock.setIsInventory(0); newStock.setCreateTime(LocalDateTime.now()); newStock.setWeight(inTask.getWeight()); - newStock.setLastUpdateUser(inTask.getUserName()); StockDetailInfo detailInfo = new StockDetailInfo(); detailInfo.setGoodsId(inTask.getGoodsRelated().getGoodsId()); detailInfo.setGoodsName(inTask.getGoodsRelated().getGoodsName()); @@ -335,7 +330,8 @@ public class TaskController { } // 更新库存状态 List backStocks = stockService.list(new LambdaQueryWrapper() - .eq(Stock::getVehicleId, inTask.getVehicleId())); + .eq(Stock::getVehicleId, inTask.getVehicleId()) + .ne(Stock::getStockStatus, StockStatus.OK.getCode())); backStocks.forEach(stock -> { if (stock.getGoodsRelated().getRemainNum().compareTo(BigDecimal.ZERO) == 0) { // 库存数量为0时要删除当前库存 @@ -348,6 +344,7 @@ public class TaskController { // 后续没有移库 stock.setStockStatus(StockStatus.OK.getCode()); } + stock.setLocationId(inTask.getDestination()); stock.setLastUpdateTime(LocalDateTime.now()); stock.setLastUpdateUser(inTask.getUserName()); stockService.update(stock, new LambdaUpdateWrapper().eq(Stock::getStockId, stock.getStockId())); @@ -1806,65 +1803,80 @@ public class TaskController { .eq(Task::getTaskType, TaskType.IN.getCode()) .likeRight(Task::getTaskId, "HK_")); if (!hasBackTask) { - // 寻找库位 - String nextLocationId = ""; - for (int i = 0; i < locationService.count(new LambdaQueryWrapper().eq(Location::getLocationStatus, LocationStatus.EMPTY.getCode())); i++) { - Map resultMap = locationService.getOneLocation("", ""); - if (resultMap.isEmpty() || !resultMap.containsKey("nextLocationId")) { + // 判断当前载具是否有入库任务 + boolean hasInTask = taskService.exists(new LambdaQueryWrapper() + .eq(Task::getVehicleId, requestBackQuery.getVehicleId()) + .eq(Task::getTaskType, TaskType.IN.getCode()) + .eq(Task::getTaskStatus, WmsTaskStatus.TEMP.getCode()) + .likeRight(Task::getTaskId, "RK_")); + if (hasInTask) { + taskService.update(new LambdaUpdateWrapper() + .set(Task::getTaskStatus, WmsTaskStatus.NEW.getCode()) + .eq(Task::getVehicleId, requestBackQuery.getVehicleId()) + .eq(Task::getTaskType, TaskType.IN.getCode()) + .eq(Task::getTaskStatus, WmsTaskStatus.TEMP.getCode()) + .likeRight(Task::getTaskId, "RK_")); + } else { + // 寻找库位 + String nextLocationId = ""; + for (int i = 0; i < locationService.count(new LambdaQueryWrapper().eq(Location::getLocationStatus, LocationStatus.EMPTY.getCode())); i++) { + Map resultMap = locationService.getOneLocation("", ""); + if (resultMap.isEmpty() || !resultMap.containsKey("nextLocationId")) { + logger.error("暂无可用库位"); + response.setCode(ResponseCode.ERROR.getCode()); + response.setMessage("暂无可用库位!"); + return convertJsonString(response); + } else { + Location nextLocation = locationService.getOne(new LambdaQueryWrapper().eq(Location::getLocationId, resultMap.get("nextLocationId"))); + LambdaUpdateWrapper updateLocationWrapper = new LambdaUpdateWrapper() + .set(Location::getLocationStatus, LocationStatus.OCCUPY.getCode()) + .set(Location::getVehicleId, requestBackQuery.getVehicleId()) + .eq(Location::getLocationId, nextLocation.getLocationId()) + .eq(Location::getLocationStatus, LocationStatus.EMPTY.getCode()); + if (locationService.update(updateLocationWrapper)) { + nextLocationId = resultMap.get("nextLocationId"); + break; + } + } + } + if (Objects.equals(nextLocationId, "")) { logger.error("暂无可用库位"); response.setCode(ResponseCode.ERROR.getCode()); response.setMessage("暂无可用库位!"); return convertJsonString(response); - } else { - Location nextLocation = locationService.getOne(new LambdaQueryWrapper().eq(Location::getLocationId, resultMap.get("nextLocationId"))); - LambdaUpdateWrapper updateLocationWrapper = new LambdaUpdateWrapper() - .set(Location::getLocationStatus, LocationStatus.OCCUPY.getCode()) - .set(Location::getVehicleId, requestBackQuery.getVehicleId()) - .eq(Location::getLocationId, nextLocation.getLocationId()) - .eq(Location::getLocationStatus, LocationStatus.EMPTY.getCode()); - if (locationService.update(updateLocationWrapper)) { - nextLocationId = resultMap.get("nextLocationId"); - break; - } } - } - if (Objects.equals(nextLocationId, "")) { - logger.error("暂无可用库位"); - response.setCode(ResponseCode.ERROR.getCode()); - response.setMessage("暂无可用库位!"); - return convertJsonString(response); - } - // 生成回库任务 - Task backTask = new Task(); - backTask.setTaskId(generateId("HK_")); - backTask.setTaskGroup(generateId("")); - backTask.setTaskType(TaskType.IN.getCode()); - backTask.setTaskStatus(WmsTaskStatus.NEW.getCode()); - backTask.setVehicleId(requestBackQuery.getVehicleId()); - backTask.setDestination(nextLocationId); - backTask.setVehicleSize(1); - backTask.setWeight(BigDecimal.ZERO); - backTask.setTaskPriority(1); - backTask.setUserName("WMS"); - backTask.setCreateTime(LocalDateTime.now()); - if (taskService.save(backTask)) { - // 删除outsideVehicle表 - outsideVehiclesService.remove(new LambdaQueryWrapper().eq(OutsideVehicles::getVehicleId, requestBackQuery.getVehicleId())); - // 设置库存状态为回库中 - stockService.update(new LambdaUpdateWrapper() - .set(Stock::getStockStatus, StockStatus.BACK.getCode()) - .eq(Stock::getVehicleId, requestBackQuery.getVehicleId())); - } else { - // 回退库位锁定 - locationService.update(new LambdaUpdateWrapper() - .set(Location::getLocationStatus, LocationStatus.EMPTY.getCode()) - .set(Location::getVehicleId, "") - .eq(Location::getLocationId, nextLocationId) - .eq(Location::getLocationStatus, LocationStatus.OCCUPY.getCode())); - logger.error("生成回库任务失败,箱号:{}", requestBackQuery.getVehicleId()); - response.setCode(ResponseCode.ERROR.getCode()); - response.setMessage("生成回库任务失败。"); - return convertJsonString(response); + // 生成回库任务 + Task backTask = new Task(); + backTask.setTaskId(generateId("HK_")); + backTask.setTaskGroup(generateId("")); + backTask.setTaskType(TaskType.IN.getCode()); + backTask.setTaskStatus(WmsTaskStatus.NEW.getCode()); + backTask.setVehicleId(requestBackQuery.getVehicleId()); + backTask.setDestination(nextLocationId); + backTask.setVehicleSize(1); + backTask.setWeight(BigDecimal.ZERO); + backTask.setTaskPriority(1); + backTask.setUserName("WMS"); + backTask.setCreateTime(LocalDateTime.now()); + if (taskService.save(backTask)) { + // 删除outsideVehicle表 + outsideVehiclesService.remove(new LambdaQueryWrapper().eq(OutsideVehicles::getVehicleId, requestBackQuery.getVehicleId())); + // 设置库存状态为回库中 + stockService.update(new LambdaUpdateWrapper() + .set(Stock::getStockStatus, StockStatus.BACK.getCode()) + .eq(Stock::getVehicleId, requestBackQuery.getVehicleId())); + } else { + // 回退库位锁定 + locationService.update(new LambdaUpdateWrapper() + .set(Location::getLocationStatus, LocationStatus.EMPTY.getCode()) + .set(Location::getVehicleId, "") + .eq(Location::getLocationId, nextLocationId) + .eq(Location::getLocationStatus, LocationStatus.OCCUPY.getCode())); + logger.error("生成回库任务失败,箱号:{}", requestBackQuery.getVehicleId()); + response.setCode(ResponseCode.ERROR.getCode()); + response.setMessage("生成回库任务失败。"); + return convertJsonString(response); + } } } } @@ -1881,4 +1893,308 @@ public class TaskController { return convertJsonString(response); } } + + + + /** + * 特殊用法---请求拣选 + * + * @param taskOutRequest 出库任务 + * @return 结果 + */ + @PostMapping("/requestPickTest") + @ResponseBody + @Transactional(isolation = Isolation.REPEATABLE_READ, propagation = Propagation.REQUIRED) + @MyLog(logTitle = "特殊用法---请求拣选", logMethod = "requestPickTest") + public String requestPickTest(@RequestBody TaskOutRequest taskOutRequest) { + logger.info("接收到特殊用法---请求拣选:{},ip地址:{}", convertJsonString(taskOutRequest), HttpUtils.getIpAddr(servletRequest)); + // 创建响应信息 + ResponseEntity response = new ResponseEntity(); + try { + // 获取站台号 + String standId = ""; + if (StringUtils.isNotEmpty(taskOutRequest.getPickStand())) { + // 站台号从请求参数中获取 + standId = taskOutRequest.getPickStand(); + } else { + // 站台号从ip获取 + Stand standOfIp = standService.getOne(new LambdaQueryWrapper() + .eq(Stand::getStandIp, HttpUtils.getIpAddr(servletRequest)) + .eq(Stand::getStandType, 2)); + if (standOfIp != null && StringUtils.isNotEmpty(standOfIp.getStandId())) { + standId = standOfIp.getStandId(); + } + } + if (StringUtils.isEmpty(standId)) { + logger.error("请求参数缺少站台号。"); + response.setCode(ResponseCode.ERROR.getCode()); + response.setMessage("请求参数缺少站台号。"); + return convertJsonString(response); + } + if (StringUtils.isNotEmpty(taskOutRequest.getGoodsId())) { + // 根据物料请求拣选 + List stockList = stockService.list(new LambdaQueryWrapper() + .eq(Stock::getStockStatus, StockStatus.OK.getCode()) + .apply("goods_related ->> '$.goodsId' = {0}", taskOutRequest.getGoodsId()) + .eq(StringUtils.isNotEmpty(taskOutRequest.getVehicleId()), Stock::getVehicleId, taskOutRequest.getVehicleId())); + BigDecimal needNum = taskOutRequest.getGoodsNum(); + if (stockList != null && !stockList.isEmpty()) { + List waitForOutStockList = new ArrayList<>(); + // 尝试生成出库任务 + for (Stock tempStock : stockList) { + if (needNum.compareTo(BigDecimal.ZERO) <= 0) {// 需求数量小于等于0 + break; + } + if (tempStock.getGoodsRelated().getRemainNum().compareTo(needNum) > 0) { + // 当前箱子剩余物料数量多于需求数量 + needNum = BigDecimal.ZERO; + // 设置剩余数量 + StockDetailInfo goodsRelated = tempStock.getGoodsRelated(); + goodsRelated.setRemainNum(goodsRelated.getRemainNum().subtract(needNum)); + tempStock.setGoodsRelated(goodsRelated); + waitForOutStockList.add(tempStock); + break; + } else { + // 当前箱子物料剩余数量少于需求数量 + needNum = needNum.subtract(tempStock.getGoodsRelated().getRemainNum()); + // 设置剩余数量 + StockDetailInfo goodsRelated = tempStock.getGoodsRelated(); + goodsRelated.setRemainNum(BigDecimal.ZERO); + tempStock.setGoodsRelated(goodsRelated); + waitForOutStockList.add(tempStock); + } + } + // 出库任务列表 + List outTasks = new ArrayList<>(); + // 载具列表 + List vehicleIds = new ArrayList<>(); + for (Stock tempStock : waitForOutStockList) { + if (vehicleIds.contains(tempStock.getVehicleId())) { + continue; + } + // 创建出库任务 + Task tempOutTask = new Task(); + tempOutTask.setTaskId(generateId("CK_")); + tempOutTask.setTaskType(TaskType.OUT.getCode()); + tempOutTask.setTaskGroup(generateId("")); + tempOutTask.setTaskStatus(WmsTaskStatus.NEW.getCode()); + tempOutTask.setTaskPriority(1); + tempOutTask.setVehicleId(tempStock.getVehicleId()); + tempOutTask.setUserName("WMS_AUTO"); + tempOutTask.setOrigin(tempStock.getLocationId()); + tempOutTask.setDestination(""); + tempOutTask.setCreateTime(LocalDateTime.now()); + tempOutTask.setIsPicking(1); + tempOutTask.setPickStand(standId); + outTasks.add(tempOutTask); + // 添加载具列表 + vehicleIds.add(tempStock.getVehicleId()); + } + // 保存出库任务至任务表 + taskService.saveBatch(outTasks); + // 更新载具信息 + vehicleService.update(new LambdaUpdateWrapper() + .set(Vehicle::getVehicleStatus, VehicleStatus.OUT.getCode()) + .in(Vehicle::getVehicleId, vehicleIds) + .eq(Vehicle::getVehicleStatus, VehicleStatus.ON.getCode())); + // 更新库存信息 + stockService.update(new LambdaUpdateWrapper() + .set(Stock::getStockStatus, StockStatus.OUT.getCode()) + .in(Stock::getVehicleId, vehicleIds) + .eq(Stock::getStockStatus, StockStatus.OK.getCode())); + // 保存拣选任务至拣选任务表 + createPickTasks(vehicleIds, standId, PickTaskStatusEnum.TEMP.getCode()); + } + } else { + List vehicles = vehicleService.list(new LambdaQueryWrapper() + .eq(StringUtils.isNotEmpty(taskOutRequest.getVehicleId()), Vehicle::getVehicleId, taskOutRequest.getVehicleId())); + BigDecimal needNum = taskOutRequest.getGoodsNum(); + // 出库任务列表 + List outTasks = new ArrayList<>(); + // 载具列表 + List vehicleIds = new ArrayList<>(); + for (Vehicle vehicle : vehicles) { + if (vehicleIds.contains(vehicle.getVehicleId())) { + continue; + } + // 创建出库任务 + Task tempOutTask = new Task(); + tempOutTask.setTaskId(generateId("CK_")); + tempOutTask.setTaskType(TaskType.OUT.getCode()); + tempOutTask.setTaskGroup(generateId("")); + tempOutTask.setTaskStatus(WmsTaskStatus.NEW.getCode()); + tempOutTask.setTaskPriority(1); + tempOutTask.setVehicleId(vehicle.getVehicleId()); + tempOutTask.setUserName("WMS_AUTO"); + tempOutTask.setOrigin(vehicle.getCurrentLocation()); + tempOutTask.setDestination(""); + tempOutTask.setCreateTime(LocalDateTime.now()); + tempOutTask.setIsPicking(1); + tempOutTask.setPickStand(standId); + outTasks.add(tempOutTask); + // 添加载具列表 + vehicleIds.add(vehicle.getVehicleId()); + } + // 保存出库任务至任务表 + taskService.saveBatch(outTasks); + // 更新载具信息 + vehicleService.update(new LambdaUpdateWrapper() + .set(Vehicle::getVehicleStatus, VehicleStatus.OUT.getCode()) + .in(Vehicle::getVehicleId, vehicleIds) + .eq(Vehicle::getVehicleStatus, VehicleStatus.ON.getCode())); + // 更新库存信息 + stockService.update(new LambdaUpdateWrapper() + .set(Stock::getStockStatus, StockStatus.OUT.getCode()) + .in(Stock::getVehicleId, vehicleIds) + .eq(Stock::getStockStatus, StockStatus.OK.getCode())); + // 保存拣选任务至拣选任务表 + createPickTasks(vehicleIds, standId, PickTaskStatusEnum.TEMP.getCode()); + } + + logger.info("请求拣选成功!"); + response.setCode(ResponseCode.OK.getCode()); + response.setMessage("请求拣选成功!"); + return convertJsonString(response); + } catch (Exception e) { + // 回滚事务 + TransactionAspectSupport.currentTransactionStatus().setRollbackOnly(); + logger.error("发生异常:{}", convertJsonString(e)); + // 返回其他异常 + response.setCode(ResponseCode.ERROR.getCode()); + response.setMessage("发生异常"); + return convertJsonString(response); + } + } + + public void createPickTasks(List vehicleIds, String workStation, Integer pickStatus) { + if (!Objects.equals(pickStatus, PickTaskStatusEnum.TEMP.getCode()) && !Objects.equals(pickStatus, PickTaskStatusEnum.NEW.getCode())) { + return; + } + // 拣选任务暂存列表 + List pickTasks = new ArrayList<>(); + vehicleIds.forEach(vehicleId -> { + // 暂存拣选任务 + PickTask tempPickTask = new PickTask(); + tempPickTask.setPickTaskId(generateId("PICK_")); + tempPickTask.setVehicleId(vehicleId); + tempPickTask.setStandId(workStation); + tempPickTask.setPickStatus(pickStatus); + tempPickTask.setLastUpdateTime(LocalDateTime.now()); + pickTasks.add(tempPickTask); + }); + // 添加数据库 + pickTaskService.saveBatch(pickTasks); + } + + + /** + * 特殊用法---请求回库 + * + * @param taskOutRequest 出库任务 + * @return 结果 + */ + @PostMapping("/requestBackTest") + @ResponseBody + @Transactional(isolation = Isolation.REPEATABLE_READ, propagation = Propagation.REQUIRED) + @MyLog(logTitle = "特殊用法---请求回库", logMethod = "requestBackTest") + public String requestBackTest(@RequestBody TaskOutRequest taskOutRequest) { + logger.info("接收到特殊用法---请求回库:{},ip地址:{}", convertJsonString(taskOutRequest), HttpUtils.getIpAddr(servletRequest)); + // 创建响应信息 + ResponseEntity response = new ResponseEntity(); + try { + // 获取站台号 + String standId = ""; + if (StringUtils.isNotEmpty(taskOutRequest.getPickStand())) { + // 站台号从请求参数中获取 + standId = taskOutRequest.getPickStand(); + } else { + // 站台号从ip获取 + Stand standOfIp = standService.getOne(new LambdaQueryWrapper() + .eq(Stand::getStandIp, HttpUtils.getIpAddr(servletRequest)) + .eq(Stand::getStandType, 2)); + if (standOfIp != null && StringUtils.isNotEmpty(standOfIp.getStandId())) { + standId = standOfIp.getStandId(); + } + } + if (StringUtils.isEmpty(standId)) { + logger.error("请求参数缺少站台号。"); + response.setCode(ResponseCode.ERROR.getCode()); + response.setMessage("请求参数缺少站台号。"); + return convertJsonString(response); + } + // 查询当前站台的拣货任务 + PickTask pickTask = pickTaskService.getOne(new LambdaQueryWrapper() + .eq(PickTask::getStandId, standId) + .eq(PickTask::getPickStatus, PickTaskStatusEnum.FINISH.getCode())); + if (pickTask != null) { + // 存储拣选记录 + PickTaskRecord pickTaskRecord = BeanUtil.copyProperties(pickTask, PickTaskRecord.class); + pickTaskRecord.setLastUpdateTime(LocalDateTime.now()); + pickTaskRecordService.save(pickTaskRecord); + // 删除当前拣选任务 + pickTaskService.removeById(pickTask); + if (StringUtils.isNotEmpty(taskOutRequest.getGoodsId())) { + if (taskOutRequest.getGoodsNum() == null) { + logger.error("输入物料号时,请输入数量"); + response.setCode(ResponseCode.OK.getCode()); + response.setMessage("输入物料号时,请输入数量"); + return convertJsonString(response); + } + // 判断添加库存还是删除库存 + Stock existStock = stockService.getOne(new LambdaQueryWrapper() + .apply("goods_related -> '$.goodsId' = {0}", taskOutRequest.getGoodsId()) + .eq(Stock::getVehicleId, pickTask.getVehicleId())); + if (existStock != null) { + // 更新库存 + StockDetailInfo goodsRelated = existStock.getGoodsRelated(); + goodsRelated.setRemainNum(taskOutRequest.getGoodsNum()); + existStock.setGoodsRelated(goodsRelated); + stockService.updateById(existStock); + } else { + if (StringUtils.isNotEmpty(taskOutRequest.getGoodsId())) { + // 生成库存 + Stock newStock = new Stock(); + newStock.setStockId(generateId("ST_")); + newStock.setVehicleId(pickTask.getVehicleId()); + newStock.setNoUseDays(0); + newStock.setIsInventory(0); + newStock.setCreateTime(LocalDateTime.now()); + newStock.setWeight(BigDecimal.ONE); + newStock.setLastUpdateUser(taskOutRequest.getUserName()); + StockDetailInfo detailInfo = new StockDetailInfo(); + detailInfo.setGoodsId(taskOutRequest.getGoodsId()); + detailInfo.setGoodsName(taskOutRequest.getGoodsId()); + detailInfo.setGoodsStatus(GoodsStatus.OK.getCode()); + detailInfo.setRemainNum(taskOutRequest.getGoodsNum()); + detailInfo.setTotalNum(taskOutRequest.getGoodsNum()); + newStock.setGoodsRelated(detailInfo); + stockService.save(newStock); + } + } + } + } + // 调用Wcs的放行接口 + wcsService.sendWcsDisposeVehicle(new WcsDisposeVehicleRequest(standId, null)); + // 更新站台信息 + standService.update(new LambdaUpdateWrapper() + .set(Stand::getLastUseTime, LocalDateTime.now()) + .set(Stand::getPickVehicle, "") + .set(Stand::getPickGoods, "") + .set(Stand::getPickTip, "") + .eq(Stand::getStandId, standId)); + + logger.info("请求回库成功!"); + response.setCode(ResponseCode.OK.getCode()); + response.setMessage("请求回库成功"); + return convertJsonString(response); + } catch (Exception e) { + // 回滚事务 + TransactionAspectSupport.currentTransactionStatus().setRollbackOnly(); + logger.error("发生异常:{}", convertJsonString(e)); + // 返回其他异常 + response.setCode(ResponseCode.ERROR.getCode()); + response.setMessage("发生异常"); + return convertJsonString(response); + } + } } \ No newline at end of file diff --git a/src/main/java/com/wms/controller/UserController.java b/src/main/java/com/wms/controller/UserController.java index 1174490..b7a2f27 100644 --- a/src/main/java/com/wms/controller/UserController.java +++ b/src/main/java/com/wms/controller/UserController.java @@ -98,7 +98,7 @@ public class UserController { rsp.setMessage("登录成功"); // 返回用户数据 rsp.setReturnData(generateUserInfo(validatedUser, HttpUtils.getIpAddr(servletRequest))); - return JSON.toJSONString(rsp); + return convertJsonString(rsp); } catch (Exception e) { // 回滚事务 TransactionAspectSupport.currentTransactionStatus().setRollbackOnly(); @@ -106,7 +106,7 @@ public class UserController { // 返回其他异常 rsp.setCode(ResponseCode.ERROR.getCode()); rsp.setMessage("登录异常"); - return JSON.toJSONString(rsp); + return convertJsonString(rsp); } } @@ -147,7 +147,7 @@ public class UserController { rsp.setMessage("登录成功"); // 返回用户数据 rsp.setReturnData(generateUserInfo(validatedUser, HttpUtils.getIpAddr(servletRequest))); - return JSON.toJSONString(rsp); + return convertJsonString(rsp); } catch (Exception e) { // 回滚事务 TransactionAspectSupport.currentTransactionStatus().setRollbackOnly(); @@ -155,7 +155,7 @@ public class UserController { // 返回其他异常 rsp.setCode(ResponseCode.ERROR.getCode()); rsp.setMessage("登录异常"); - return JSON.toJSONString(rsp); + return convertJsonString(rsp); } } diff --git a/src/main/java/com/wms/entity/table/KateDBS.java b/src/main/java/com/wms/entity/table/KateDBS.java index 6d3bb05..b3c32d8 100644 --- a/src/main/java/com/wms/entity/table/KateDBS.java +++ b/src/main/java/com/wms/entity/table/KateDBS.java @@ -23,6 +23,11 @@ public class KateDBS { */ @TableField("work_sequence") private Integer workSequence; + /** + * 机器序列号 + */ + @TableField("machine_no") + private String machineNo; /** * 工单 */ diff --git a/src/main/java/com/wms/entity/table/KateDBSHistory.java b/src/main/java/com/wms/entity/table/KateDBSHistory.java index c70b077..a7e53b4 100644 --- a/src/main/java/com/wms/entity/table/KateDBSHistory.java +++ b/src/main/java/com/wms/entity/table/KateDBSHistory.java @@ -23,6 +23,11 @@ public class KateDBSHistory { */ @TableField("work_sequence") private Integer workSequence; + /** + * 机器序列号 + */ + @TableField("machine_no") + private String machineNo; /** * 工单 */ diff --git a/src/main/java/com/wms/entity/table/KateDBSLast.java b/src/main/java/com/wms/entity/table/KateDBSLast.java index cc73034..18c732a 100644 --- a/src/main/java/com/wms/entity/table/KateDBSLast.java +++ b/src/main/java/com/wms/entity/table/KateDBSLast.java @@ -23,6 +23,11 @@ public class KateDBSLast { */ @TableField("work_sequence") private Integer workSequence; + /** + * 机器序列号 + */ + @TableField("machine_no") + private String machineNo; /** * 工单 */ diff --git a/src/main/java/com/wms/service/business/serviceImplements/WmsTaskServiceImplements.java b/src/main/java/com/wms/service/business/serviceImplements/WmsTaskServiceImplements.java index 7f71519..c6150e0 100644 --- a/src/main/java/com/wms/service/business/serviceImplements/WmsTaskServiceImplements.java +++ b/src/main/java/com/wms/service/business/serviceImplements/WmsTaskServiceImplements.java @@ -398,6 +398,7 @@ public class WmsTaskServiceImplements implements IWmsTaskService { tempOutTask.setDestination(""); tempOutTask.setCreateTime(LocalDateTime.now()); tempOutTask.setIsPicking(1); + tempOutTask.setPickStand(workStation); outTasks.add(tempOutTask); // 添加载具列表 vehicleIds.add(tempStock.getVehicleId()); diff --git a/src/main/java/com/wms/service/serviceImplements/StandServiceImplements.java b/src/main/java/com/wms/service/serviceImplements/StandServiceImplements.java index e15d2b4..ded24f5 100644 --- a/src/main/java/com/wms/service/serviceImplements/StandServiceImplements.java +++ b/src/main/java/com/wms/service/serviceImplements/StandServiceImplements.java @@ -11,8 +11,6 @@ import lombok.RequiredArgsConstructor; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Service; -import java.util.List; - @Service @RequiredArgsConstructor(onConstructor = @__(@Autowired)) public class StandServiceImplements extends ServiceImpl implements StandService { diff --git a/src/main/java/com/wms/utils/excel/listener/UploadDbsListener.java b/src/main/java/com/wms/utils/excel/listener/UploadDbsListener.java index 211ba7f..b1e1053 100644 --- a/src/main/java/com/wms/utils/excel/listener/UploadDbsListener.java +++ b/src/main/java/com/wms/utils/excel/listener/UploadDbsListener.java @@ -28,6 +28,10 @@ public class UploadDbsListener implements ReadListener { * 每隔5条存储数据库,实际使用中可以100条,然后清理list ,方便内存回收 */ private static final int BATCH_COUNT = 100; + /** + * 保存数据总数 + */ + private int SAVE_COUNT = 0; private List cachedDataList = ListUtils.newArrayListWithExpectedSize(BATCH_COUNT); private final KateDBSService kateDBSService;// Dbs服务 private final KateDBSLastService kateDBSLastService;// DbsLast服务 @@ -70,6 +74,7 @@ public class UploadDbsListener implements ReadListener { @Override public void doAfterAllAnalysed(AnalysisContext analysisContext) { saveData(); + logger.info("此次共保存{}条数据。", SAVE_COUNT); } /** @@ -111,5 +116,6 @@ public class UploadDbsListener implements ReadListener { } } kateDBSService.saveOrUpdateBatch(kateDbsList); + SAVE_COUNT += kateDbsList.size(); } } diff --git a/src/main/java/com/wms/utils/excel/listener/UploadKateOrdersListener.java b/src/main/java/com/wms/utils/excel/listener/UploadKateOrdersListener.java index 7ff5445..2d16911 100644 --- a/src/main/java/com/wms/utils/excel/listener/UploadKateOrdersListener.java +++ b/src/main/java/com/wms/utils/excel/listener/UploadKateOrdersListener.java @@ -4,9 +4,11 @@ import com.alibaba.excel.context.AnalysisContext; import com.alibaba.excel.read.listener.ReadListener; import com.alibaba.excel.util.ListUtils; import com.baomidou.mybatisplus.core.conditions.query.LambdaQueryWrapper; +import com.wms.constants.enums.ConfigMapKeyEnum; import com.wms.entity.app.dto.extend.StockDetailInfo; import com.wms.entity.table.*; import com.wms.service.*; +import com.wms.utils.StringUtils; import com.wms.utils.excel.vo.KateDbsExcelVo; import com.wms.utils.excel.vo.KateOrdersExcelVo; import com.wms.utils.excel.vo.StockExcelVo; @@ -16,7 +18,9 @@ import org.slf4j.LoggerFactory; import java.math.BigDecimal; import java.util.ArrayList; import java.util.List; +import java.util.Objects; +import static com.wms.config.InitLocalConfig.configMap; import static com.wms.utils.StringUtils.convertJsonString; import static com.wms.utils.WmsUtils.generateId; @@ -26,9 +30,13 @@ import static com.wms.utils.WmsUtils.generateId; public class UploadKateOrdersListener implements ReadListener { private final Logger logger = LoggerFactory.getLogger(this.getClass()); /** - * 每隔5条存储数据库,实际使用中可以100条,然后清理list ,方便内存回收 + * 每隔5条存储数据库,实际使用中可以1000条,然后清理list ,方便内存回收 */ - private static final int BATCH_COUNT = 100; + private static final int BATCH_COUNT = 1000; + /** + * 保存数据总数 + */ + private int SAVE_COUNT = 0; private List cachedDataList = ListUtils.newArrayListWithExpectedSize(BATCH_COUNT); private final KateOrdersService kateOrdersService;// Dbs服务 private final KateOrdersLastService kateOrdersLastService;// DbsLast服务 @@ -53,7 +61,11 @@ public class UploadKateOrdersListener implements ReadListener */ @Override public void invoke(KateOrdersExcelVo kateOrdersExcelVo, AnalysisContext analysisContext) { - cachedDataList.add(kateOrdersExcelVo); + String slocFilterString = configMap.get(ConfigMapKeyEnum.SLOC_FILTER_STRING.getConfigKey()); + if (StringUtils.isNotEmpty(slocFilterString) && Objects.equals(kateOrdersExcelVo.getSLoc(), slocFilterString)) { + // 符合筛选条件的才能添加 + cachedDataList.add(kateOrdersExcelVo); + } // 达到BATCH_COUNT了,需要去存储一次数据库,防止数据几万条数据在内存,容易OOM if (cachedDataList.size() >= BATCH_COUNT) { logger.info("已经导入{}条数据,开始存储数据库!", cachedDataList.size()); @@ -71,6 +83,7 @@ public class UploadKateOrdersListener implements ReadListener @Override public void doAfterAllAnalysed(AnalysisContext analysisContext) { saveData(); + logger.info("此次共保存{}条数据。", SAVE_COUNT); } /** @@ -134,5 +147,6 @@ public class UploadKateOrdersListener implements ReadListener } } kateOrdersService.saveOrUpdateBatch(kateOrdersList); + SAVE_COUNT += kateOrdersList.size(); } } diff --git a/src/main/java/com/wms/utils/excel/listener/UploadStocksListener.java b/src/main/java/com/wms/utils/excel/listener/UploadStocksListener.java index 162e529..eff3edd 100644 --- a/src/main/java/com/wms/utils/excel/listener/UploadStocksListener.java +++ b/src/main/java/com/wms/utils/excel/listener/UploadStocksListener.java @@ -23,9 +23,13 @@ import static com.wms.utils.WmsUtils.generateId; public class UploadStocksListener implements ReadListener { private final Logger logger = LoggerFactory.getLogger(this.getClass()); /** - * 每隔5条存储数据库,实际使用中可以100条,然后清理list ,方便内存回收 + * 每隔5条存储数据库,实际使用中可以1000条,然后清理list ,方便内存回收 */ - private static final int BATCH_COUNT = 100; + private static final int BATCH_COUNT = 1000; + /** + * 保存数据总数 + */ + private int SAVE_COUNT = 0; private List cachedDataList = ListUtils.newArrayListWithExpectedSize(BATCH_COUNT); private final StockService stockService; public UploadStocksListener(StockService stockService) { @@ -64,6 +68,7 @@ public class UploadStocksListener implements ReadListener { @Override public void doAfterAllAnalysed(AnalysisContext analysisContext) { saveData(); + logger.info("此次共保存{}条数据。", SAVE_COUNT); } /** @@ -103,5 +108,6 @@ public class UploadStocksListener implements ReadListener { stockList.add(stock); } stockService.saveBatch(stockList); + SAVE_COUNT += stockList.size(); } } diff --git a/src/main/java/com/wms/utils/excel/vo/KateDbsExcelVo.java b/src/main/java/com/wms/utils/excel/vo/KateDbsExcelVo.java index 6b7b46f..c9ef6a6 100644 --- a/src/main/java/com/wms/utils/excel/vo/KateDbsExcelVo.java +++ b/src/main/java/com/wms/utils/excel/vo/KateDbsExcelVo.java @@ -20,6 +20,11 @@ public class KateDbsExcelVo { */ @ExcelProperty("序号") private Integer workSequence; + /** + * 机器序列号 + */ + @ExcelProperty("机器序列号") + private String machineNo; /** * 工单 */ diff --git a/src/main/resources/application.yml b/src/main/resources/application.yml index d8c8423..1822891 100644 --- a/src/main/resources/application.yml +++ b/src/main/resources/application.yml @@ -7,27 +7,27 @@ spring: datasource: # 主库 master: - # 宝开服务器--外网 -# url: jdbc:mysql://112.4.208.194:3001/wms_kate_suzhou?characterEncoding=utf8&serverTimezone=Asia/Shanghai&allowMultiQueries=true&rewriteBatchedStatements=true -# username: coder -# password: coder + # 卡特数据库服务器 +# url: jdbc:mysql://10.90.36.71:3306/wms_kate_suzhou?characterEncoding=utf8&serverTimezone=Asia/Shanghai&allowMultiQueries=true&rewriteBatchedStatements=true +# username: developer +# password: developer # driver-class-name: com.mysql.cj.jdbc.Driver # 宝开服务器--内网 # url: jdbc:mysql://192.168.3.254:3306/wms_kate_suzhou?characterEncoding=utf8&serverTimezone=Asia/Shanghai&allowMultiQueries=true&rewriteBatchedStatements=true # username: coder # password: coder # driver-class-name: com.mysql.cj.jdbc.Driver - # 上线环境 + # 本地环境 url: jdbc:mysql://localhost:3306/wms_kate_suzhou?characterEncoding=utf8&serverTimezone=Asia/Shanghai&allowMultiQueries=true&rewriteBatchedStatements=true username: developer password: developer driver-class-name: com.mysql.cj.jdbc.Driver # 从库 - slave_1: - url: jdbc:mysql://localhost:3306/wms_xizhou?characterEncoding=utf8&serverTimezone=Asia/Shanghai&allowMultiQueries=true&rewriteBatchedStatements=true - username: developer - password: developer - driver-class-name: com.mysql.cj.jdbc.Driver +# slave_1: +# url: jdbc:mysql://localhost:3306/wms_aaa?characterEncoding=utf8&serverTimezone=Asia/Shanghai&allowMultiQueries=true&rewriteBatchedStatements=true +# username: developer +# password: developer +# driver-class-name: com.mysql.cj.jdbc.Driver profiles: active: online servlet: @@ -67,7 +67,9 @@ mybatis-plus: update-strategy: not_null logging: - config: classpath:logback-spring.xml + config: classpath:logback.xml +# file: +# encoding: UTF-8 #mybatis 分页插件 #pagehelper: diff --git a/src/main/resources/logback-spring.xml b/src/main/resources/logback-test.xml similarity index 94% rename from src/main/resources/logback-spring.xml rename to src/main/resources/logback-test.xml index 1fb421f..da34b55 100644 --- a/src/main/resources/logback-spring.xml +++ b/src/main/resources/logback-test.xml @@ -14,7 +14,7 @@ ${LOG_HOME}/info/%d{yyyy-MM-dd}/%d{yyyy-MM-dd}.%i.log - + 10MB @@ -23,6 +23,7 @@ %d{yyyy-MM-dd HH:mm:ss.SSS} [%thread] %-5level %logger{50} - %msg%n + UTF-8 INFO @@ -34,7 +35,7 @@ ${LOG_HOME}/warning/%d{yyyy-MM-dd}/%d{yyyy-MM-dd}.%i.log - + 10MB @@ -43,6 +44,7 @@ %d{yyyy-MM-dd HH:mm:ss.SSS} [%thread] %-5level %logger{50} - %msg%n + UTF-8 WARNING @@ -54,7 +56,7 @@ ${LOG_HOME}/error/%d{yyyy-MM-dd}/%d{yyyy-MM-dd}.%i.log - + 10MB @@ -63,6 +65,7 @@ %d{yyyy-MM-dd HH:mm:ss.SSS} [%thread] %-5level %logger{50} - %msg%n + UTF-8 ERROR @@ -74,7 +77,7 @@ ${LOG_HOME}/debug/%d{yyyy-MM-dd}/%d{yyyy-MM-dd}.%i.log - + 10MB @@ -83,6 +86,7 @@ %d{yyyy-MM-dd HH:mm:ss.SSS} [%thread] %-5level %logger{50} - %msg%n + UTF-8 DEBUG diff --git a/src/main/resources/logback.xml b/src/main/resources/logback.xml new file mode 100644 index 0000000..efa9b9d --- /dev/null +++ b/src/main/resources/logback.xml @@ -0,0 +1,114 @@ + + + + + + + + + + + + + + + + ${LOG_HOME}/info/%d{yyyy-MM-dd}/%d{yyyy-MM-dd}.%i.log + 10MB + + 30 + + + + %d{yyyy-MM-dd HH:mm:ss.SSS} [%thread] %-5level %logger{50} - %msg%n + + + INFO + ACCEPT + DENY + + + + + + ${LOG_HOME}/warning/%d{yyyy-MM-dd}/%d{yyyy-MM-dd}.%i.log + 10MB + + 30 + + + + %d{yyyy-MM-dd HH:mm:ss.SSS} [%thread] %-5level %logger{50} - %msg%n + + + WARNING + ACCEPT + DENY + + + + + + ${LOG_HOME}/error/%d{yyyy-MM-dd}/%d{yyyy-MM-dd}.%i.log + 10MB + + 30 + + + + %d{yyyy-MM-dd HH:mm:ss.SSS} [%thread] %-5level %logger{50} - %msg%n + + + ERROR + ACCEPT + DENY + + + + + + ${LOG_HOME}/debug/%d{yyyy-MM-dd}/%d{yyyy-MM-dd}.%i.log + 10MB + + 30 + + + + %d{yyyy-MM-dd HH:mm:ss.SSS} [%thread] %-5level %logger{50} - %msg%n + + + DEBUG + ACCEPT + DENY + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/sql/wms_kate_suzhou.sql b/src/main/resources/sql/wms_kate_suzhou.sql index 888fd72..a28951b 100644 --- a/src/main/resources/sql/wms_kate_suzhou.sql +++ b/src/main/resources/sql/wms_kate_suzhou.sql @@ -1,17 +1,17 @@ /* Navicat Premium Dump SQL - Source Server : 宝开服务器---软件部门用 + Source Server : 本地数据库 Source Server Type : MySQL - Source Server Version : 80037 (8.0.37) - Source Host : 112.4.208.194:3001 + Source Server Version : 80032 (8.0.32) + Source Host : localhost:3306 Source Schema : wms_kate_suzhou Target Server Type : MySQL - Target Server Version : 80037 (8.0.37) + Target Server Version : 80032 (8.0.32) File Encoding : 65001 - Date: 30/07/2024 10:34:58 + Date: 07/08/2024 11:34:53 */ SET NAMES utf8mb4; @@ -27,9 +27,11 @@ CREATE TABLE `tbl_app_e_location` ( `sequence_id` int NULL DEFAULT NULL COMMENT '顺序号', `e_location_status` int NULL DEFAULT NULL COMMENT '电子标签状态', `work_station` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL COMMENT '工作站台', - `order_box_no` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL COMMENT '工单工位盒子号', - `goods_id` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL COMMENT '物料编号', - `quantity` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL COMMENT '数量', + `task_id` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL COMMENT '任务号', + `vehicle_no` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL COMMENT '箱号', + `need_num` int NULL DEFAULT NULL COMMENT '需求数量', + `confirm_num` int NULL DEFAULT NULL COMMENT '确认数量', + `task_type` int NULL DEFAULT NULL COMMENT '任务类型', `pick_status` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL COMMENT '拣货状态', PRIMARY KEY (`e_location_id`) USING BTREE ) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_0900_ai_ci ROW_FORMAT = DYNAMIC; @@ -37,6 +39,438 @@ CREATE TABLE `tbl_app_e_location` ( -- ---------------------------- -- Records of tbl_app_e_location -- ---------------------------- +INSERT INTO `tbl_app_e_location` VALUES ('1-01', '1', 1, 0, 'ASRS-#1', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('1-02', '1', 2, 0, 'ASRS-#1', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('1-03', '1', 3, 0, 'ASRS-#1', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('1-04', '1', 4, 0, 'ASRS-#1', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('1-05', '1', 5, 0, 'ASRS-#1', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('1-06', '1', 6, 0, 'ASRS-#1', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('1-07', '1', 7, 0, 'ASRS-#1', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('1-08', '1', 8, 0, 'ASRS-#1', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('1-09', '1', 9, 0, 'ASRS-#1', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('1-10', '1', 10, 0, 'ASRS-#1', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('1-11', '1', 11, 0, 'ASRS-#1', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('1-12', '1', 12, 0, 'ASRS-#1', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('1-13', '1', 13, 0, 'ASRS-#1', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('1-14', '1', 14, 0, 'ASRS-#1', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('1-15', '1', 15, 0, 'ASRS-#1', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('1-16', '1', 16, 0, 'ASRS-#1', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('1-17', '1', 17, 0, 'ASRS-#1', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('1-18', '1', 18, 0, 'ASRS-#1', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('1-19', '1', 19, 0, 'ASRS-#1', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('1-20', '1', 20, 0, 'ASRS-#1', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('1-21', '1', 21, 0, 'ASRS-#1', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('1-22', '1', 22, 0, 'ASRS-#1', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('1-23', '1', 23, 0, 'ASRS-#1', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('1-24', '1', 24, 0, 'ASRS-#1', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('1-25', '1', 25, 0, 'ASRS-#1', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('1-26', '1', 26, 0, 'ASRS-#1', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('1-27', '1', 27, 0, 'ASRS-#1', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('1-28', '1', 28, 0, 'ASRS-#1', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('1-29', '1', 29, 0, 'ASRS-#1', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('1-30', '1', 30, 0, 'ASRS-#1', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('1-31', '1', 31, 0, 'ASRS-#1', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('1-32', '1', 32, 0, 'ASRS-#1', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('1-33', '1', 33, 0, 'ASRS-#1', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('1-34', '1', 34, 0, 'ASRS-#1', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('1-35', '1', 35, 0, 'ASRS-#1', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('1-36', '1', 36, 0, 'ASRS-#1', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('1-37', '1', 37, 0, 'ASRS-#1', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('1-38', '1', 38, 0, 'ASRS-#1', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('1-39', '1', 39, 0, 'ASRS-#1', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('1-40', '1', 40, 0, 'ASRS-#1', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('1-41', '1', 41, 0, 'ASRS-#1', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('1-42', '1', 42, 0, 'ASRS-#1', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('1-43', '1', 43, 0, 'ASRS-#1', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('1-44', '1', 44, 0, 'ASRS-#1', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('1-45', '1', 45, 0, 'ASRS-#1', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('1-46', '1', 46, 0, 'ASRS-#1', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('1-47', '1', 47, 0, 'ASRS-#1', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('1-48', '1', 48, 0, 'ASRS-#1', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('2-01', '2', 1, 0, 'ASRS-#2', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('2-02', '2', 2, 0, 'ASRS-#2', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('2-03', '2', 3, 0, 'ASRS-#2', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('2-04', '2', 4, 0, 'ASRS-#2', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('2-05', '2', 5, 0, 'ASRS-#2', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('2-06', '2', 6, 0, 'ASRS-#2', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('2-07', '2', 7, 0, 'ASRS-#2', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('2-08', '2', 8, 0, 'ASRS-#2', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('2-09', '2', 9, 0, 'ASRS-#2', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('2-10', '2', 10, 0, 'ASRS-#2', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('2-11', '2', 11, 0, 'ASRS-#2', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('2-12', '2', 12, 0, 'ASRS-#2', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('2-13', '2', 13, 0, 'ASRS-#2', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('2-14', '2', 14, 0, 'ASRS-#2', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('2-15', '2', 15, 0, 'ASRS-#2', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('2-16', '2', 16, 0, 'ASRS-#2', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('2-17', '2', 17, 0, 'ASRS-#2', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('2-18', '2', 18, 0, 'ASRS-#2', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('2-19', '2', 19, 0, 'ASRS-#2', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('2-20', '2', 20, 0, 'ASRS-#2', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('2-21', '2', 21, 0, 'ASRS-#2', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('2-22', '2', 22, 0, 'ASRS-#2', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('2-23', '2', 23, 0, 'ASRS-#2', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('2-24', '2', 24, 0, 'ASRS-#2', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('2-25', '2', 25, 0, 'ASRS-#2', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('2-26', '2', 26, 0, 'ASRS-#2', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('2-27', '2', 27, 0, 'ASRS-#2', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('2-28', '2', 28, 0, 'ASRS-#2', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('2-29', '2', 29, 0, 'ASRS-#2', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('2-30', '2', 30, 0, 'ASRS-#2', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('2-31', '2', 31, 0, 'ASRS-#2', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('2-32', '2', 32, 0, 'ASRS-#2', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('2-33', '2', 33, 0, 'ASRS-#2', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('2-34', '2', 34, 0, 'ASRS-#2', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('2-35', '2', 35, 0, 'ASRS-#2', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('2-36', '2', 36, 0, 'ASRS-#2', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('2-37', '2', 37, 0, 'ASRS-#2', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('2-38', '2', 38, 0, 'ASRS-#2', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('2-39', '2', 39, 0, 'ASRS-#2', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('2-40', '2', 40, 0, 'ASRS-#2', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('2-41', '2', 41, 0, 'ASRS-#2', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('2-42', '2', 42, 0, 'ASRS-#2', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('2-43', '2', 43, 0, 'ASRS-#2', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('2-44', '2', 44, 0, 'ASRS-#2', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('2-45', '2', 45, 0, 'ASRS-#2', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('2-46', '2', 46, 0, 'ASRS-#2', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('2-47', '2', 47, 0, 'ASRS-#2', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('2-48', '2', 48, 0, 'ASRS-#2', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('3-01', '3', 1, 0, 'ASRS-#3', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('3-02', '3', 2, 0, 'ASRS-#3', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('3-03', '3', 3, 0, 'ASRS-#3', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('3-04', '3', 4, 0, 'ASRS-#3', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('3-05', '3', 5, 0, 'ASRS-#3', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('3-06', '3', 6, 0, 'ASRS-#3', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('3-07', '3', 7, 0, 'ASRS-#3', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('3-08', '3', 8, 0, 'ASRS-#3', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('3-09', '3', 9, 0, 'ASRS-#3', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('3-10', '3', 10, 0, 'ASRS-#3', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('3-11', '3', 11, 0, 'ASRS-#3', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('3-12', '3', 12, 0, 'ASRS-#3', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('3-13', '3', 13, 0, 'ASRS-#3', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('3-14', '3', 14, 0, 'ASRS-#3', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('3-15', '3', 15, 0, 'ASRS-#3', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('3-16', '3', 16, 0, 'ASRS-#3', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('3-17', '3', 17, 0, 'ASRS-#3', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('3-18', '3', 18, 0, 'ASRS-#3', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('3-19', '3', 19, 0, 'ASRS-#3', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('3-20', '3', 20, 0, 'ASRS-#3', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('3-21', '3', 21, 0, 'ASRS-#3', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('3-22', '3', 22, 0, 'ASRS-#3', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('3-23', '3', 23, 0, 'ASRS-#3', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('3-24', '3', 24, 0, 'ASRS-#3', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('3-25', '3', 25, 0, 'ASRS-#3', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('3-26', '3', 26, 0, 'ASRS-#3', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('3-27', '3', 27, 0, 'ASRS-#3', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('3-28', '3', 28, 0, 'ASRS-#3', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('3-29', '3', 29, 0, 'ASRS-#3', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('3-30', '3', 30, 0, 'ASRS-#3', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('3-31', '3', 31, 0, 'ASRS-#3', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('3-32', '3', 32, 0, 'ASRS-#3', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('3-33', '3', 33, 0, 'ASRS-#3', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('3-34', '3', 34, 0, 'ASRS-#3', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('3-35', '3', 35, 0, 'ASRS-#3', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('3-36', '3', 36, 0, 'ASRS-#3', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('3-37', '3', 37, 0, 'ASRS-#3', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('3-38', '3', 38, 0, 'ASRS-#3', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('3-39', '3', 39, 0, 'ASRS-#3', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('3-40', '3', 40, 0, 'ASRS-#3', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('3-41', '3', 41, 0, 'ASRS-#3', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('3-42', '3', 42, 0, 'ASRS-#3', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('3-43', '3', 43, 0, 'ASRS-#3', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('3-44', '3', 44, 0, 'ASRS-#3', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('3-45', '3', 45, 0, 'ASRS-#3', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('3-46', '3', 46, 0, 'ASRS-#3', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('3-47', '3', 47, 0, 'ASRS-#3', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('3-48', '3', 48, 0, 'ASRS-#3', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('4-01', '4', 1, 0, 'ASRS-#4', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('4-02', '4', 2, 0, 'ASRS-#4', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('4-03', '4', 3, 0, 'ASRS-#4', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('4-04', '4', 4, 0, 'ASRS-#4', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('4-05', '4', 5, 0, 'ASRS-#4', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('4-06', '4', 6, 0, 'ASRS-#4', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('4-07', '4', 7, 0, 'ASRS-#4', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('4-08', '4', 8, 0, 'ASRS-#4', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('4-09', '4', 9, 0, 'ASRS-#4', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('4-10', '4', 10, 0, 'ASRS-#4', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('4-11', '4', 11, 0, 'ASRS-#4', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('4-12', '4', 12, 0, 'ASRS-#4', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('4-13', '4', 13, 0, 'ASRS-#4', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('4-14', '4', 14, 0, 'ASRS-#4', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('4-15', '4', 15, 0, 'ASRS-#4', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('4-16', '4', 16, 0, 'ASRS-#4', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('4-17', '4', 17, 0, 'ASRS-#4', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('4-18', '4', 18, 0, 'ASRS-#4', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('4-19', '4', 19, 0, 'ASRS-#4', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('4-20', '4', 20, 0, 'ASRS-#4', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('4-21', '4', 21, 0, 'ASRS-#4', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('4-22', '4', 22, 0, 'ASRS-#4', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('4-23', '4', 23, 0, 'ASRS-#4', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('4-24', '4', 24, 0, 'ASRS-#4', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('4-25', '4', 25, 0, 'ASRS-#4', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('4-26', '4', 26, 0, 'ASRS-#4', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('4-27', '4', 27, 0, 'ASRS-#4', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('4-28', '4', 28, 0, 'ASRS-#4', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('4-29', '4', 29, 0, 'ASRS-#4', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('4-30', '4', 30, 0, 'ASRS-#4', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('4-31', '4', 31, 0, 'ASRS-#4', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('4-32', '4', 32, 0, 'ASRS-#4', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('4-33', '4', 33, 0, 'ASRS-#4', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('4-34', '4', 34, 0, 'ASRS-#4', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('4-35', '4', 35, 0, 'ASRS-#4', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('4-36', '4', 36, 0, 'ASRS-#4', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('4-37', '4', 37, 0, 'ASRS-#4', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('4-38', '4', 38, 0, 'ASRS-#4', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('4-39', '4', 39, 0, 'ASRS-#4', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('4-40', '4', 40, 0, 'ASRS-#4', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('4-41', '4', 41, 0, 'ASRS-#4', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('4-42', '4', 42, 0, 'ASRS-#4', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('4-43', '4', 43, 0, 'ASRS-#4', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('4-44', '4', 44, 0, 'ASRS-#4', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('4-45', '4', 45, 0, 'ASRS-#4', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('4-46', '4', 46, 0, 'ASRS-#4', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('4-47', '4', 47, 0, 'ASRS-#4', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('4-48', '4', 48, 0, 'ASRS-#4', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('5-01', '5', 1, 0, 'ASRS-#5', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('5-02', '5', 2, 0, 'ASRS-#5', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('5-03', '5', 3, 0, 'ASRS-#5', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('5-04', '5', 4, 0, 'ASRS-#5', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('5-05', '5', 5, 0, 'ASRS-#5', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('5-06', '5', 6, 0, 'ASRS-#5', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('5-07', '5', 7, 0, 'ASRS-#5', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('5-08', '5', 8, 0, 'ASRS-#5', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('5-09', '5', 9, 0, 'ASRS-#5', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('5-10', '5', 10, 0, 'ASRS-#5', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('5-11', '5', 11, 0, 'ASRS-#5', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('5-12', '5', 12, 0, 'ASRS-#5', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('5-13', '5', 13, 0, 'ASRS-#5', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('5-14', '5', 14, 0, 'ASRS-#5', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('5-15', '5', 15, 0, 'ASRS-#5', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('5-16', '5', 16, 0, 'ASRS-#5', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('5-17', '5', 17, 0, 'ASRS-#5', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('5-18', '5', 18, 0, 'ASRS-#5', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('5-19', '5', 19, 0, 'ASRS-#5', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('5-20', '5', 20, 0, 'ASRS-#5', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('5-21', '5', 21, 0, 'ASRS-#5', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('5-22', '5', 22, 0, 'ASRS-#5', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('5-23', '5', 23, 0, 'ASRS-#5', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('5-24', '5', 24, 0, 'ASRS-#5', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('5-25', '5', 25, 0, 'ASRS-#5', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('5-26', '5', 26, 0, 'ASRS-#5', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('5-27', '5', 27, 0, 'ASRS-#5', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('5-28', '5', 28, 0, 'ASRS-#5', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('5-29', '5', 29, 0, 'ASRS-#5', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('5-30', '5', 30, 0, 'ASRS-#5', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('5-31', '5', 31, 0, 'ASRS-#5', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('5-32', '5', 32, 0, 'ASRS-#5', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('5-33', '5', 33, 0, 'ASRS-#5', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('5-34', '5', 34, 0, 'ASRS-#5', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('5-35', '5', 35, 0, 'ASRS-#5', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('5-36', '5', 36, 0, 'ASRS-#5', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('5-37', '5', 37, 0, 'ASRS-#5', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('5-38', '5', 38, 0, 'ASRS-#5', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('5-39', '5', 39, 0, 'ASRS-#5', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('5-40', '5', 40, 0, 'ASRS-#5', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('5-41', '5', 41, 0, 'ASRS-#5', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('5-42', '5', 42, 0, 'ASRS-#5', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('5-43', '5', 43, 0, 'ASRS-#5', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('5-44', '5', 44, 0, 'ASRS-#5', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('5-45', '5', 45, 0, 'ASRS-#5', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('5-46', '5', 46, 0, 'ASRS-#5', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('5-47', '5', 47, 0, 'ASRS-#5', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('5-48', '5', 48, 0, 'ASRS-#5', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('6-01', '6', 1, 0, 'ASRS-#6', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('6-02', '6', 2, 0, 'ASRS-#6', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('6-03', '6', 3, 0, 'ASRS-#6', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('6-04', '6', 4, 0, 'ASRS-#6', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('6-05', '6', 5, 0, 'ASRS-#6', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('6-06', '6', 6, 0, 'ASRS-#6', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('6-07', '6', 7, 0, 'ASRS-#6', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('6-08', '6', 8, 0, 'ASRS-#6', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('6-09', '6', 9, 0, 'ASRS-#6', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('6-10', '6', 10, 0, 'ASRS-#6', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('6-11', '6', 11, 0, 'ASRS-#6', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('6-12', '6', 12, 0, 'ASRS-#6', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('6-13', '6', 13, 0, 'ASRS-#6', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('6-14', '6', 14, 0, 'ASRS-#6', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('6-15', '6', 15, 0, 'ASRS-#6', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('6-16', '6', 16, 0, 'ASRS-#6', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('6-17', '6', 17, 0, 'ASRS-#6', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('6-18', '6', 18, 0, 'ASRS-#6', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('6-19', '6', 19, 0, 'ASRS-#6', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('6-20', '6', 20, 0, 'ASRS-#6', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('6-21', '6', 21, 0, 'ASRS-#6', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('6-22', '6', 22, 0, 'ASRS-#6', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('6-23', '6', 23, 0, 'ASRS-#6', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('6-24', '6', 24, 0, 'ASRS-#6', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('6-25', '6', 25, 0, 'ASRS-#6', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('6-26', '6', 26, 0, 'ASRS-#6', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('6-27', '6', 27, 0, 'ASRS-#6', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('6-28', '6', 28, 0, 'ASRS-#6', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('6-29', '6', 29, 0, 'ASRS-#6', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('6-30', '6', 30, 0, 'ASRS-#6', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('6-31', '6', 31, 0, 'ASRS-#6', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('6-32', '6', 32, 0, 'ASRS-#6', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('6-33', '6', 33, 0, 'ASRS-#6', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('6-34', '6', 34, 0, 'ASRS-#6', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('6-35', '6', 35, 0, 'ASRS-#6', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('6-36', '6', 36, 0, 'ASRS-#6', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('6-37', '6', 37, 0, 'ASRS-#6', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('6-38', '6', 38, 0, 'ASRS-#6', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('6-39', '6', 39, 0, 'ASRS-#6', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('6-40', '6', 40, 0, 'ASRS-#6', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('6-41', '6', 41, 0, 'ASRS-#6', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('6-42', '6', 42, 0, 'ASRS-#6', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('6-43', '6', 43, 0, 'ASRS-#6', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('6-44', '6', 44, 0, 'ASRS-#6', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('6-45', '6', 45, 0, 'ASRS-#6', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('6-46', '6', 46, 0, 'ASRS-#6', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('6-47', '6', 47, 0, 'ASRS-#6', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('6-48', '6', 48, 0, 'ASRS-#6', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('7-01', '7', 1, 0, 'ASRS-#7', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('7-02', '7', 2, 0, 'ASRS-#7', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('7-03', '7', 3, 0, 'ASRS-#7', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('7-04', '7', 4, 0, 'ASRS-#7', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('7-05', '7', 5, 0, 'ASRS-#7', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('7-06', '7', 6, 0, 'ASRS-#7', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('7-07', '7', 7, 0, 'ASRS-#7', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('7-08', '7', 8, 0, 'ASRS-#7', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('7-09', '7', 9, 0, 'ASRS-#7', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('7-10', '7', 10, 0, 'ASRS-#7', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('7-11', '7', 11, 0, 'ASRS-#7', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('7-12', '7', 12, 0, 'ASRS-#7', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('7-13', '7', 13, 0, 'ASRS-#7', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('7-14', '7', 14, 0, 'ASRS-#7', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('7-15', '7', 15, 0, 'ASRS-#7', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('7-16', '7', 16, 0, 'ASRS-#7', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('7-17', '7', 17, 0, 'ASRS-#7', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('7-18', '7', 18, 0, 'ASRS-#7', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('7-19', '7', 19, 0, 'ASRS-#7', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('7-20', '7', 20, 0, 'ASRS-#7', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('7-21', '7', 21, 0, 'ASRS-#7', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('7-22', '7', 22, 0, 'ASRS-#7', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('7-23', '7', 23, 0, 'ASRS-#7', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('7-24', '7', 24, 0, 'ASRS-#7', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('7-25', '7', 25, 0, 'ASRS-#7', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('7-26', '7', 26, 0, 'ASRS-#7', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('7-27', '7', 27, 0, 'ASRS-#7', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('7-28', '7', 28, 0, 'ASRS-#7', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('7-29', '7', 29, 0, 'ASRS-#7', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('7-30', '7', 30, 0, 'ASRS-#7', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('7-31', '7', 31, 0, 'ASRS-#7', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('7-32', '7', 32, 0, 'ASRS-#7', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('7-33', '7', 33, 0, 'ASRS-#7', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('7-34', '7', 34, 0, 'ASRS-#7', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('7-35', '7', 35, 0, 'ASRS-#7', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('7-36', '7', 36, 0, 'ASRS-#7', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('7-37', '7', 37, 0, 'ASRS-#7', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('7-38', '7', 38, 0, 'ASRS-#7', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('7-39', '7', 39, 0, 'ASRS-#7', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('7-40', '7', 40, 0, 'ASRS-#7', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('7-41', '7', 41, 0, 'ASRS-#7', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('7-42', '7', 42, 0, 'ASRS-#7', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('7-43', '7', 43, 0, 'ASRS-#7', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('7-44', '7', 44, 0, 'ASRS-#7', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('7-45', '7', 45, 0, 'ASRS-#7', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('7-46', '7', 46, 0, 'ASRS-#7', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('7-47', '7', 47, 0, 'ASRS-#7', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('7-48', '7', 48, 0, 'ASRS-#7', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('8-01', '8', 1, 0, 'ASRS-#8', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('8-02', '8', 2, 0, 'ASRS-#8', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('8-03', '8', 3, 0, 'ASRS-#8', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('8-04', '8', 4, 0, 'ASRS-#8', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('8-05', '8', 5, 0, 'ASRS-#8', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('8-06', '8', 6, 0, 'ASRS-#8', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('8-07', '8', 7, 0, 'ASRS-#8', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('8-08', '8', 8, 0, 'ASRS-#8', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('8-09', '8', 9, 0, 'ASRS-#8', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('8-10', '8', 10, 0, 'ASRS-#8', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('8-11', '8', 11, 0, 'ASRS-#8', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('8-12', '8', 12, 0, 'ASRS-#8', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('8-13', '8', 13, 0, 'ASRS-#8', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('8-14', '8', 14, 0, 'ASRS-#8', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('8-15', '8', 15, 0, 'ASRS-#8', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('8-16', '8', 16, 0, 'ASRS-#8', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('8-17', '8', 17, 0, 'ASRS-#8', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('8-18', '8', 18, 0, 'ASRS-#8', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('8-19', '8', 19, 0, 'ASRS-#8', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('8-20', '8', 20, 0, 'ASRS-#8', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('8-21', '8', 21, 0, 'ASRS-#8', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('8-22', '8', 22, 0, 'ASRS-#8', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('8-23', '8', 23, 0, 'ASRS-#8', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('8-24', '8', 24, 0, 'ASRS-#8', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('8-25', '8', 25, 0, 'ASRS-#8', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('8-26', '8', 26, 0, 'ASRS-#8', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('8-27', '8', 27, 0, 'ASRS-#8', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('8-28', '8', 28, 0, 'ASRS-#8', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('8-29', '8', 29, 0, 'ASRS-#8', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('8-30', '8', 30, 0, 'ASRS-#8', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('8-31', '8', 31, 0, 'ASRS-#8', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('8-32', '8', 32, 0, 'ASRS-#8', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('8-33', '8', 33, 0, 'ASRS-#8', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('8-34', '8', 34, 0, 'ASRS-#8', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('8-35', '8', 35, 0, 'ASRS-#8', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('8-36', '8', 36, 0, 'ASRS-#8', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('8-37', '8', 37, 0, 'ASRS-#8', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('8-38', '8', 38, 0, 'ASRS-#8', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('8-39', '8', 39, 0, 'ASRS-#8', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('8-40', '8', 40, 0, 'ASRS-#8', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('8-41', '8', 41, 0, 'ASRS-#8', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('8-42', '8', 42, 0, 'ASRS-#8', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('8-43', '8', 43, 0, 'ASRS-#8', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('8-44', '8', 44, 0, 'ASRS-#8', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('8-45', '8', 45, 0, 'ASRS-#8', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('8-46', '8', 46, 0, 'ASRS-#8', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('8-47', '8', 47, 0, 'ASRS-#8', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('8-48', '8', 48, 0, 'ASRS-#8', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('9-01', '9', 1, 0, 'ASRS-#9', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('9-02', '9', 2, 0, 'ASRS-#9', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('9-03', '9', 3, 0, 'ASRS-#9', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('9-04', '9', 4, 0, 'ASRS-#9', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('9-05', '9', 5, 0, 'ASRS-#9', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('9-06', '9', 6, 0, 'ASRS-#9', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('9-07', '9', 7, 0, 'ASRS-#9', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('9-08', '9', 8, 0, 'ASRS-#9', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('9-09', '9', 9, 0, 'ASRS-#9', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('9-10', '9', 10, 0, 'ASRS-#9', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('9-11', '9', 11, 0, 'ASRS-#9', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('9-12', '9', 12, 0, 'ASRS-#9', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('9-13', '9', 13, 0, 'ASRS-#9', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('9-14', '9', 14, 0, 'ASRS-#9', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('9-15', '9', 15, 0, 'ASRS-#9', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('9-16', '9', 16, 0, 'ASRS-#9', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('9-17', '9', 17, 0, 'ASRS-#9', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('9-18', '9', 18, 0, 'ASRS-#9', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('9-19', '9', 19, 0, 'ASRS-#9', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('9-20', '9', 20, 0, 'ASRS-#9', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('9-21', '9', 21, 0, 'ASRS-#9', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('9-22', '9', 22, 0, 'ASRS-#9', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('9-23', '9', 23, 0, 'ASRS-#9', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('9-24', '9', 24, 0, 'ASRS-#9', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('9-25', '9', 25, 0, 'ASRS-#9', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('9-26', '9', 26, 0, 'ASRS-#9', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('9-27', '9', 27, 0, 'ASRS-#9', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('9-28', '9', 28, 0, 'ASRS-#9', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('9-29', '9', 29, 0, 'ASRS-#9', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('9-30', '9', 30, 0, 'ASRS-#9', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('9-31', '9', 31, 0, 'ASRS-#9', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('9-32', '9', 32, 0, 'ASRS-#9', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('9-33', '9', 33, 0, 'ASRS-#9', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('9-34', '9', 34, 0, 'ASRS-#9', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('9-35', '9', 35, 0, 'ASRS-#9', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('9-36', '9', 36, 0, 'ASRS-#9', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('9-37', '9', 37, 0, 'ASRS-#9', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('9-38', '9', 38, 0, 'ASRS-#9', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('9-39', '9', 39, 0, 'ASRS-#9', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('9-40', '9', 40, 0, 'ASRS-#9', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('9-41', '9', 41, 0, 'ASRS-#9', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('9-42', '9', 42, 0, 'ASRS-#9', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('9-43', '9', 43, 0, 'ASRS-#9', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('9-44', '9', 44, 0, 'ASRS-#9', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('9-45', '9', 45, 0, 'ASRS-#9', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('9-46', '9', 46, 0, 'ASRS-#9', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('9-47', '9', 47, 0, 'ASRS-#9', NULL, NULL, NULL, NULL, NULL, '0'); +INSERT INTO `tbl_app_e_location` VALUES ('9-48', '9', 48, 0, 'ASRS-#9', NULL, NULL, NULL, NULL, NULL, '0'); -- ---------------------------- -- Table structure for tbl_app_e_location_config @@ -51,7 +485,7 @@ CREATE TABLE `tbl_app_e_location_config` ( `print_status` int NULL DEFAULT NULL COMMENT '是否打印->0:未打印,1:已打印', `print_counts` int NULL DEFAULT NULL COMMENT '打印次数', PRIMARY KEY (`e_location_id`) USING BTREE -) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_0900_ai_ci ROW_FORMAT = Dynamic; +) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_0900_ai_ci ROW_FORMAT = DYNAMIC; -- ---------------------------- -- Records of tbl_app_e_location_config @@ -69,7 +503,7 @@ CREATE TABLE `tbl_app_e_location_config_last` ( `order_box_no` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL COMMENT '盒子号', `box_status` int NULL DEFAULT NULL COMMENT '是否取走->0:未取走,1:已取走', PRIMARY KEY (`e_location_id`) USING BTREE -) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_0900_ai_ci ROW_FORMAT = Dynamic; +) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_0900_ai_ci ROW_FORMAT = DYNAMIC; -- ---------------------------- -- Records of tbl_app_e_location_config_last @@ -109,6 +543,261 @@ CREATE TABLE `tbl_app_goods` ( -- ---------------------------- -- Records of tbl_app_goods -- ---------------------------- +INSERT INTO `tbl_app_goods` VALUES ('123456789/CS', '测试物料1', 'PC', '直接物料', 'CLC', 0.1, 'kg', '20', '套袋子', 'FC01', '822整体1个', 'CLC一箱一料', 'PULL', '20', 4.0000, '{\"kanbanId\": \"0001\"}', 40.0000, NULL, NULL, NULL, NULL, '2024-08-01 12:48:52', 'WMS'); +INSERT INTO `tbl_app_goods` VALUES ('222222222/CS', '测试物料2', 'PC', '直接物料', 'CLC', 0.1, 'kg', '20', '装箱子', 'FC01', '822整体1个', 'CLC一箱一料', 'PULL', '20', 4.0000, '{\"kanbanId\": \"0001\"}', 40.0000, NULL, NULL, NULL, NULL, '2024-08-01 12:48:52', 'WMS'); +INSERT INTO `tbl_app_goods` VALUES ('333333333/CS', '测试物料3', 'PC', '直接物料', 'CLC', 0.1, 'kg', '20', '装箱子', 'FC01', '822整体1个', 'CLC一箱一料', 'PULL', '20', 4.0000, '{\"kanbanId\": \"0001\"}', 40.0000, NULL, NULL, NULL, NULL, '2024-08-01 12:48:52', 'WMS'); +INSERT INTO `tbl_app_goods` VALUES ('444444444/CS', '测试物料4', 'PC', '直接物料', 'CLC', 0.1, 'kg', '20', '装箱子', 'FC01', '822整体1个', 'CLC一箱一料', 'PULL', '20', 4.0000, '{\"kanbanId\": \"0001\"}', 40.0000, NULL, NULL, NULL, NULL, '2024-08-01 12:48:52', 'WMS'); +INSERT INTO `tbl_app_goods` VALUES ('555555555/CS', '测试物料5', 'PC', '直接物料', 'CLC', 0.1, 'kg', '20', '装箱子', 'FC01', '822整体1个', 'CLC一箱一料', 'PULL', '20', 4.0000, '{\"kanbanId\": \"0001\"}', 40.0000, NULL, NULL, NULL, NULL, '2024-08-01 12:48:52', 'WMS'); +INSERT INTO `tbl_app_goods` VALUES ('ASRS000001', '测试物料000001', 'PC', '直接物料', 'CLC', 1, 'KG', '20', '套袋子', 'FC01', '822整体1个', 'CLC一箱一料', 'PULL', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-02 12:42:28', 'WMS'); +INSERT INTO `tbl_app_goods` VALUES ('ASRS000002', '测试物料000002', 'PC', '直接物料', 'CLC', 1, 'KG', '20', '套袋子', 'FC01', '822整体1个', 'CLC一箱一料', 'PULL', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-02 12:42:28', 'WMS'); +INSERT INTO `tbl_app_goods` VALUES ('ASRS000003', '测试物料000003', 'PC', '直接物料', 'CLC', 1, 'KG', '20', '套袋子', 'FC01', '822整体1个', 'CLC一箱一料', 'PULL', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-02 12:42:28', 'WMS'); +INSERT INTO `tbl_app_goods` VALUES ('ASRS000004', '测试物料000004', 'PC', '直接物料', 'CLC', 1, 'KG', '20', '套袋子', 'FC01', '822整体1个', 'CLC一箱一料', 'PULL', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-02 12:42:28', 'WMS'); +INSERT INTO `tbl_app_goods` VALUES ('ASRS000005', '测试物料000005', 'PC', '直接物料', 'CLC', 1, 'KG', '20', '套袋子', 'FC01', '822整体1个', 'CLC一箱一料', 'PULL', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-02 12:42:28', 'WMS'); +INSERT INTO `tbl_app_goods` VALUES ('ASRS000006', '测试物料000006', 'PC', '直接物料', 'CLC', 1, 'KG', '20', '套袋子', 'FC01', '822整体1个', 'CLC一箱一料', 'PULL', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-02 12:42:28', 'WMS'); +INSERT INTO `tbl_app_goods` VALUES ('ASRS000007', '测试物料000007', 'PC', '直接物料', 'CLC', 1, 'KG', '20', '套袋子', 'FC01', '822整体1个', 'CLC一箱一料', 'PULL', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-02 12:42:28', 'WMS'); +INSERT INTO `tbl_app_goods` VALUES ('ASRS000008', '测试物料000008', 'PC', '直接物料', 'CLC', 1, 'KG', '20', '套袋子', 'FC01', '822整体1个', 'CLC一箱一料', 'PULL', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-02 12:42:28', 'WMS'); +INSERT INTO `tbl_app_goods` VALUES ('ASRS000009', '测试物料000009', 'PC', '直接物料', 'CLC', 1, 'KG', '20', '套袋子', 'FC01', '822整体1个', 'CLC一箱一料', 'PULL', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-02 12:42:28', 'WMS'); +INSERT INTO `tbl_app_goods` VALUES ('ASRS000010', '测试物料000010', 'PC', '直接物料', 'CLC', 1, 'KG', '20', '套袋子', 'FC01', '822整体1个', 'CLC一箱一料', 'PULL', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-02 12:42:28', 'WMS'); +INSERT INTO `tbl_app_goods` VALUES ('ASRS000011', '测试物料000011', 'PC', '直接物料', 'CLC', 1, 'KG', '20', '套袋子', 'FC01', '822整体1个', 'CLC一箱一料', 'PULL', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-02 12:42:28', 'WMS'); +INSERT INTO `tbl_app_goods` VALUES ('ASRS000012', '测试物料000012', 'PC', '直接物料', 'CLC', 1, 'KG', '20', '套袋子', 'FC01', '822整体1个', 'CLC一箱一料', 'PULL', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-02 12:42:28', 'WMS'); +INSERT INTO `tbl_app_goods` VALUES ('ASRS000013', '测试物料000013', 'PC', '直接物料', 'CLC', 1, 'KG', '20', '套袋子', 'FC01', '822整体1个', 'CLC一箱一料', 'PULL', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-02 12:42:28', 'WMS'); +INSERT INTO `tbl_app_goods` VALUES ('ASRS000014', '测试物料000014', 'PC', '直接物料', 'CLC', 1, 'KG', '20', '套袋子', 'FC01', '822整体1个', 'CLC一箱一料', 'PULL', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-02 12:42:28', 'WMS'); +INSERT INTO `tbl_app_goods` VALUES ('ASRS000015', '测试物料000015', 'PC', '直接物料', 'CLC', 1, 'KG', '20', '套袋子', 'FC01', '822整体1个', 'CLC一箱一料', 'PULL', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-02 12:42:28', 'WMS'); +INSERT INTO `tbl_app_goods` VALUES ('ASRS000016', '测试物料000016', 'PC', '直接物料', 'CLC', 1, 'KG', '20', '套袋子', 'FC01', '822整体1个', 'CLC一箱一料', 'PULL', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-02 12:42:28', 'WMS'); +INSERT INTO `tbl_app_goods` VALUES ('ASRS000017', '测试物料000017', 'PC', '直接物料', 'CLC', 1, 'KG', '20', '套袋子', 'FC01', '822整体1个', 'CLC一箱一料', 'PULL', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-02 12:42:28', 'WMS'); +INSERT INTO `tbl_app_goods` VALUES ('ASRS000018', '测试物料000018', 'PC', '直接物料', 'CLC', 1, 'KG', '20', '套袋子', 'FC01', '822整体1个', 'CLC一箱一料', 'PULL', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-02 12:42:28', 'WMS'); +INSERT INTO `tbl_app_goods` VALUES ('ASRS000019', '测试物料000019', 'PC', '直接物料', 'CLC', 1, 'KG', '20', '套袋子', 'FC01', '822整体1个', 'CLC一箱一料', 'PULL', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-02 12:42:28', 'WMS'); +INSERT INTO `tbl_app_goods` VALUES ('ASRS000020', '测试物料000020', 'PC', '直接物料', 'CLC', 1, 'KG', '20', '套袋子', 'FC01', '822整体1个', 'CLC一箱一料', 'PULL', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-02 12:42:28', 'WMS'); +INSERT INTO `tbl_app_goods` VALUES ('ASRS000021', '测试物料000021', 'PC', '直接物料', 'CLC', 1, 'KG', '20', '套袋子', 'FC01', '822整体1个', 'CLC一箱一料', 'PULL', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-02 12:42:28', 'WMS'); +INSERT INTO `tbl_app_goods` VALUES ('ASRS000022', '测试物料000022', 'PC', '直接物料', 'CLC', 1, 'KG', '20', '套袋子', 'FC01', '822整体1个', 'CLC一箱一料', 'PULL', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-02 12:42:28', 'WMS'); +INSERT INTO `tbl_app_goods` VALUES ('ASRS000023', '测试物料000023', 'PC', '直接物料', 'CLC', 1, 'KG', '20', '套袋子', 'FC01', '822整体1个', 'CLC一箱一料', 'PULL', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-02 12:42:28', 'WMS'); +INSERT INTO `tbl_app_goods` VALUES ('ASRS000024', '测试物料000024', 'PC', '直接物料', 'CLC', 1, 'KG', '20', '套袋子', 'FC01', '822整体1个', 'CLC一箱一料', 'PULL', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-02 12:42:28', 'WMS'); +INSERT INTO `tbl_app_goods` VALUES ('ASRS000025', '测试物料000025', 'PC', '直接物料', 'CLC', 1, 'KG', '20', '套袋子', 'FC01', '822整体1个', 'CLC一箱一料', 'PULL', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-02 12:42:28', 'WMS'); +INSERT INTO `tbl_app_goods` VALUES ('ASRS000026', '测试物料000026', 'PC', '直接物料', 'CLC', 1, 'KG', '20', '套袋子', 'FC01', '822整体1个', 'CLC一箱一料', 'PULL', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-02 12:42:28', 'WMS'); +INSERT INTO `tbl_app_goods` VALUES ('ASRS000027', '测试物料000027', 'PC', '直接物料', 'CLC', 1, 'KG', '20', '套袋子', 'FC01', '822整体1个', 'CLC一箱一料', 'PULL', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-02 12:42:28', 'WMS'); +INSERT INTO `tbl_app_goods` VALUES ('ASRS000028', '测试物料000028', 'PC', '直接物料', 'CLC', 1, 'KG', '20', '套袋子', 'FC01', '822整体1个', 'CLC一箱一料', 'PULL', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-02 12:42:28', 'WMS'); +INSERT INTO `tbl_app_goods` VALUES ('ASRS000029', '测试物料000029', 'PC', '直接物料', 'CLC', 1, 'KG', '20', '套袋子', 'FC01', '822整体1个', 'CLC一箱一料', 'PULL', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-02 12:42:28', 'WMS'); +INSERT INTO `tbl_app_goods` VALUES ('ASRS000030', '测试物料000030', 'PC', '直接物料', 'CLC', 1, 'KG', '20', '套袋子', 'FC01', '822整体1个', 'CLC一箱一料', 'PULL', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-02 12:42:28', 'WMS'); +INSERT INTO `tbl_app_goods` VALUES ('ASRS000031', '测试物料000031', 'PC', '直接物料', 'CLC', 1, 'KG', '20', '套袋子', 'FC01', '822整体1个', 'CLC一箱一料', 'PULL', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-02 12:42:28', 'WMS'); +INSERT INTO `tbl_app_goods` VALUES ('ASRS000032', '测试物料000032', 'PC', '直接物料', 'CLC', 1, 'KG', '20', '套袋子', 'FC01', '822整体1个', 'CLC一箱一料', 'PULL', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-02 12:42:28', 'WMS'); +INSERT INTO `tbl_app_goods` VALUES ('ASRS000033', '测试物料000033', 'PC', '直接物料', 'CLC', 1, 'KG', '20', '套袋子', 'FC01', '822整体1个', 'CLC一箱一料', 'PULL', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-02 12:42:28', 'WMS'); +INSERT INTO `tbl_app_goods` VALUES ('ASRS000034', '测试物料000034', 'PC', '直接物料', 'CLC', 1, 'KG', '20', '套袋子', 'FC01', '822整体1个', 'CLC一箱一料', 'PULL', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-02 12:42:28', 'WMS'); +INSERT INTO `tbl_app_goods` VALUES ('ASRS000035', '测试物料000035', 'PC', '直接物料', 'CLC', 1, 'KG', '20', '套袋子', 'FC01', '822整体1个', 'CLC一箱一料', 'PULL', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-02 12:42:28', 'WMS'); +INSERT INTO `tbl_app_goods` VALUES ('ASRS000036', '测试物料000036', 'PC', '直接物料', 'CLC', 1, 'KG', '20', '套袋子', 'FC01', '822整体1个', 'CLC一箱一料', 'PULL', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-02 12:42:28', 'WMS'); +INSERT INTO `tbl_app_goods` VALUES ('ASRS000037', '测试物料000037', 'PC', '直接物料', 'CLC', 1, 'KG', '20', '套袋子', 'FC01', '822整体1个', 'CLC一箱一料', 'PULL', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-02 12:42:28', 'WMS'); +INSERT INTO `tbl_app_goods` VALUES ('ASRS000038', '测试物料000038', 'PC', '直接物料', 'CLC', 1, 'KG', '20', '套袋子', 'FC01', '822整体1个', 'CLC一箱一料', 'PULL', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-02 12:42:28', 'WMS'); +INSERT INTO `tbl_app_goods` VALUES ('ASRS000039', '测试物料000039', 'PC', '直接物料', 'CLC', 1, 'KG', '20', '套袋子', 'FC01', '822整体1个', 'CLC一箱一料', 'PULL', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-02 12:42:28', 'WMS'); +INSERT INTO `tbl_app_goods` VALUES ('ASRS000040', '测试物料000040', 'PC', '直接物料', 'CLC', 1, 'KG', '20', '套袋子', 'FC01', '822整体1个', 'CLC一箱一料', 'PULL', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-02 12:42:28', 'WMS'); +INSERT INTO `tbl_app_goods` VALUES ('ASRS000041', '测试物料000041', 'PC', '直接物料', 'CLC', 1, 'KG', '20', '套袋子', 'FC01', '822整体1个', 'CLC一箱一料', 'PULL', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-02 12:42:28', 'WMS'); +INSERT INTO `tbl_app_goods` VALUES ('ASRS000042', '测试物料000042', 'PC', '直接物料', 'CLC', 1, 'KG', '20', '套袋子', 'FC01', '822整体1个', 'CLC一箱一料', 'PULL', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-02 12:42:28', 'WMS'); +INSERT INTO `tbl_app_goods` VALUES ('ASRS000043', '测试物料000043', 'PC', '直接物料', 'CLC', 1, 'KG', '20', '套袋子', 'FC01', '822整体1个', 'CLC一箱一料', 'PULL', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-02 12:42:28', 'WMS'); +INSERT INTO `tbl_app_goods` VALUES ('ASRS000044', '测试物料000044', 'PC', '直接物料', 'CLC', 1, 'KG', '20', '套袋子', 'FC01', '822整体1个', 'CLC一箱一料', 'PULL', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-02 12:42:28', 'WMS'); +INSERT INTO `tbl_app_goods` VALUES ('ASRS000045', '测试物料000045', 'PC', '直接物料', 'CLC', 1, 'KG', '20', '套袋子', 'FC01', '822整体1个', 'CLC一箱一料', 'PULL', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-02 12:42:28', 'WMS'); +INSERT INTO `tbl_app_goods` VALUES ('ASRS000046', '测试物料000046', 'PC', '直接物料', 'CLC', 1, 'KG', '20', '套袋子', 'FC01', '822整体1个', 'CLC一箱一料', 'PULL', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-02 12:42:28', 'WMS'); +INSERT INTO `tbl_app_goods` VALUES ('ASRS000047', '测试物料000047', 'PC', '直接物料', 'CLC', 1, 'KG', '20', '套袋子', 'FC01', '822整体1个', 'CLC一箱一料', 'PULL', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-02 12:42:28', 'WMS'); +INSERT INTO `tbl_app_goods` VALUES ('ASRS000048', '测试物料000048', 'PC', '直接物料', 'CLC', 1, 'KG', '20', '套袋子', 'FC01', '822整体1个', 'CLC一箱一料', 'PULL', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-02 12:42:28', 'WMS'); +INSERT INTO `tbl_app_goods` VALUES ('ASRS000049', '测试物料000049', 'PC', '直接物料', 'CLC', 1, 'KG', '20', '套袋子', 'FC01', '822整体1个', 'CLC一箱一料', 'PULL', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-02 12:42:28', 'WMS'); +INSERT INTO `tbl_app_goods` VALUES ('ASRS000050', '测试物料000050', 'PC', '直接物料', 'CLC', 1, 'KG', '20', '套袋子', 'FC01', '822整体1个', 'CLC一箱一料', 'PULL', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-02 12:42:28', 'WMS'); +INSERT INTO `tbl_app_goods` VALUES ('ASRS000051', '测试物料000051', 'PC', '直接物料', 'CLC', 1, 'KG', '20', '套袋子', 'FC01', '822整体1个', 'CLC一箱一料', 'PULL', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-02 12:42:28', 'WMS'); +INSERT INTO `tbl_app_goods` VALUES ('ASRS000052', '测试物料000052', 'PC', '直接物料', 'CLC', 1, 'KG', '20', '套袋子', 'FC01', '822整体1个', 'CLC一箱一料', 'PULL', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-02 12:42:28', 'WMS'); +INSERT INTO `tbl_app_goods` VALUES ('ASRS000053', '测试物料000053', 'PC', '直接物料', 'CLC', 1, 'KG', '20', '套袋子', 'FC01', '822整体1个', 'CLC一箱一料', 'PULL', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-02 12:42:28', 'WMS'); +INSERT INTO `tbl_app_goods` VALUES ('ASRS000054', '测试物料000054', 'PC', '直接物料', 'CLC', 1, 'KG', '20', '套袋子', 'FC01', '822整体1个', 'CLC一箱一料', 'PULL', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-02 12:42:28', 'WMS'); +INSERT INTO `tbl_app_goods` VALUES ('ASRS000055', '测试物料000055', 'PC', '直接物料', 'CLC', 1, 'KG', '20', '套袋子', 'FC01', '822整体1个', 'CLC一箱一料', 'PULL', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-02 12:42:28', 'WMS'); +INSERT INTO `tbl_app_goods` VALUES ('ASRS000056', '测试物料000056', 'PC', '直接物料', 'CLC', 1, 'KG', '20', '套袋子', 'FC01', '822整体1个', 'CLC一箱一料', 'PULL', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-02 12:42:28', 'WMS'); +INSERT INTO `tbl_app_goods` VALUES ('ASRS000057', '测试物料000057', 'PC', '直接物料', 'CLC', 1, 'KG', '20', '套袋子', 'FC01', '822整体1个', 'CLC一箱一料', 'PULL', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-02 12:42:28', 'WMS'); +INSERT INTO `tbl_app_goods` VALUES ('ASRS000058', '测试物料000058', 'PC', '直接物料', 'CLC', 1, 'KG', '20', '套袋子', 'FC01', '822整体1个', 'CLC一箱一料', 'PULL', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-02 12:42:28', 'WMS'); +INSERT INTO `tbl_app_goods` VALUES ('ASRS000059', '测试物料000059', 'PC', '直接物料', 'CLC', 1, 'KG', '20', '套袋子', 'FC01', '822整体1个', 'CLC一箱一料', 'PULL', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-02 12:42:28', 'WMS'); +INSERT INTO `tbl_app_goods` VALUES ('ASRS000060', '测试物料000060', 'PC', '直接物料', 'CLC', 1, 'KG', '20', '套袋子', 'FC01', '822整体1个', 'CLC一箱一料', 'PULL', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-02 12:42:28', 'WMS'); +INSERT INTO `tbl_app_goods` VALUES ('ASRS000061', '测试物料000061', 'PC', '直接物料', 'CLC', 1, 'KG', '20', '套袋子', 'FC01', '822整体1个', 'CLC一箱一料', 'PULL', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-02 12:42:28', 'WMS'); +INSERT INTO `tbl_app_goods` VALUES ('ASRS000062', '测试物料000062', 'PC', '直接物料', 'CLC', 1, 'KG', '20', '套袋子', 'FC01', '822整体1个', 'CLC一箱一料', 'PULL', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-02 12:42:28', 'WMS'); +INSERT INTO `tbl_app_goods` VALUES ('ASRS000063', '测试物料000063', 'PC', '直接物料', 'CLC', 1, 'KG', '20', '套袋子', 'FC01', '822整体1个', 'CLC一箱一料', 'PULL', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-02 12:42:28', 'WMS'); +INSERT INTO `tbl_app_goods` VALUES ('ASRS000064', '测试物料000064', 'PC', '直接物料', 'CLC', 1, 'KG', '20', '套袋子', 'FC01', '822整体1个', 'CLC一箱一料', 'PULL', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-02 12:42:28', 'WMS'); +INSERT INTO `tbl_app_goods` VALUES ('ASRS000065', '测试物料000065', 'PC', '直接物料', 'CLC', 1, 'KG', '20', '套袋子', 'FC01', '822整体1个', 'CLC一箱一料', 'PULL', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-02 12:42:28', 'WMS'); +INSERT INTO `tbl_app_goods` VALUES ('ASRS000066', '测试物料000066', 'PC', '直接物料', 'CLC', 1, 'KG', '20', '套袋子', 'FC01', '822整体1个', 'CLC一箱一料', 'PULL', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-02 12:42:28', 'WMS'); +INSERT INTO `tbl_app_goods` VALUES ('ASRS000067', '测试物料000067', 'PC', '直接物料', 'CLC', 1, 'KG', '20', '套袋子', 'FC01', '822整体1个', 'CLC一箱一料', 'PULL', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-02 12:42:28', 'WMS'); +INSERT INTO `tbl_app_goods` VALUES ('ASRS000068', '测试物料000068', 'PC', '直接物料', 'CLC', 1, 'KG', '20', '套袋子', 'FC01', '822整体1个', 'CLC一箱一料', 'PULL', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-02 12:42:28', 'WMS'); +INSERT INTO `tbl_app_goods` VALUES ('ASRS000069', '测试物料000069', 'PC', '直接物料', 'CLC', 1, 'KG', '20', '套袋子', 'FC01', '822整体1个', 'CLC一箱一料', 'PULL', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-02 12:42:28', 'WMS'); +INSERT INTO `tbl_app_goods` VALUES ('ASRS000070', '测试物料000070', 'PC', '直接物料', 'CLC', 1, 'KG', '20', '套袋子', 'FC01', '822整体1个', 'CLC一箱一料', 'PULL', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-02 12:42:28', 'WMS'); +INSERT INTO `tbl_app_goods` VALUES ('ASRS000071', '测试物料000071', 'PC', '直接物料', 'CLC', 1, 'KG', '20', '套袋子', 'FC01', '822整体1个', 'CLC一箱一料', 'PULL', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-02 12:42:28', 'WMS'); +INSERT INTO `tbl_app_goods` VALUES ('ASRS000072', '测试物料000072', 'PC', '直接物料', 'CLC', 1, 'KG', '20', '套袋子', 'FC01', '822整体1个', 'CLC一箱一料', 'PULL', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-02 12:42:28', 'WMS'); +INSERT INTO `tbl_app_goods` VALUES ('ASRS000073', '测试物料000073', 'PC', '直接物料', 'CLC', 1, 'KG', '20', '套袋子', 'FC01', '822整体1个', 'CLC一箱一料', 'PULL', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-02 12:42:28', 'WMS'); +INSERT INTO `tbl_app_goods` VALUES ('ASRS000074', '测试物料000074', 'PC', '直接物料', 'CLC', 1, 'KG', '20', '套袋子', 'FC01', '822整体1个', 'CLC一箱一料', 'PULL', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-02 12:42:28', 'WMS'); +INSERT INTO `tbl_app_goods` VALUES ('ASRS000075', '测试物料000075', 'PC', '直接物料', 'CLC', 1, 'KG', '20', '套袋子', 'FC01', '822整体1个', 'CLC一箱一料', 'PULL', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-02 12:42:28', 'WMS'); +INSERT INTO `tbl_app_goods` VALUES ('ASRS000076', '测试物料000076', 'PC', '直接物料', 'CLC', 1, 'KG', '20', '套袋子', 'FC01', '822整体1个', 'CLC一箱一料', 'PULL', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-02 12:42:28', 'WMS'); +INSERT INTO `tbl_app_goods` VALUES ('ASRS000077', '测试物料000077', 'PC', '直接物料', 'CLC', 1, 'KG', '20', '套袋子', 'FC01', '822整体1个', 'CLC一箱一料', 'PULL', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-02 12:42:28', 'WMS'); +INSERT INTO `tbl_app_goods` VALUES ('ASRS000078', '测试物料000078', 'PC', '直接物料', 'CLC', 1, 'KG', '20', '套袋子', 'FC01', '822整体1个', 'CLC一箱一料', 'PULL', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-02 12:42:28', 'WMS'); +INSERT INTO `tbl_app_goods` VALUES ('ASRS000079', '测试物料000079', 'PC', '直接物料', 'CLC', 1, 'KG', '20', '套袋子', 'FC01', '822整体1个', 'CLC一箱一料', 'PULL', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-02 12:42:28', 'WMS'); +INSERT INTO `tbl_app_goods` VALUES ('ASRS000080', '测试物料000080', 'PC', '直接物料', 'CLC', 1, 'KG', '20', '套袋子', 'FC01', '822整体1个', 'CLC一箱一料', 'PULL', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-02 12:42:28', 'WMS'); +INSERT INTO `tbl_app_goods` VALUES ('ASRS000081', '测试物料000081', 'PC', '直接物料', 'CLC', 1, 'KG', '20', '套袋子', 'FC01', '822整体1个', 'CLC一箱一料', 'PULL', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-02 12:42:28', 'WMS'); +INSERT INTO `tbl_app_goods` VALUES ('ASRS000082', '测试物料000082', 'PC', '直接物料', 'CLC', 1, 'KG', '20', '套袋子', 'FC01', '822整体1个', 'CLC一箱一料', 'PULL', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-02 12:42:28', 'WMS'); +INSERT INTO `tbl_app_goods` VALUES ('ASRS000083', '测试物料000083', 'PC', '直接物料', 'CLC', 1, 'KG', '20', '套袋子', 'FC01', '822整体1个', 'CLC一箱一料', 'PULL', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-02 12:42:28', 'WMS'); +INSERT INTO `tbl_app_goods` VALUES ('ASRS000084', '测试物料000084', 'PC', '直接物料', 'CLC', 1, 'KG', '20', '套袋子', 'FC01', '822整体1个', 'CLC一箱一料', 'PULL', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-02 12:42:28', 'WMS'); +INSERT INTO `tbl_app_goods` VALUES ('ASRS000085', '测试物料000085', 'PC', '直接物料', 'CLC', 1, 'KG', '20', '套袋子', 'FC01', '822整体1个', 'CLC一箱一料', 'PULL', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-02 12:42:28', 'WMS'); +INSERT INTO `tbl_app_goods` VALUES ('ASRS000086', '测试物料000086', 'PC', '直接物料', 'CLC', 1, 'KG', '20', '套袋子', 'FC01', '822整体1个', 'CLC一箱一料', 'PULL', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-02 12:42:28', 'WMS'); +INSERT INTO `tbl_app_goods` VALUES ('ASRS000087', '测试物料000087', 'PC', '直接物料', 'CLC', 1, 'KG', '20', '套袋子', 'FC01', '822整体1个', 'CLC一箱一料', 'PULL', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-02 12:42:28', 'WMS'); +INSERT INTO `tbl_app_goods` VALUES ('ASRS000088', '测试物料000088', 'PC', '直接物料', 'CLC', 1, 'KG', '20', '套袋子', 'FC01', '822整体1个', 'CLC一箱一料', 'PULL', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-02 12:42:28', 'WMS'); +INSERT INTO `tbl_app_goods` VALUES ('ASRS000089', '测试物料000089', 'PC', '直接物料', 'CLC', 1, 'KG', '20', '套袋子', 'FC01', '822整体1个', 'CLC一箱一料', 'PULL', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-02 12:42:28', 'WMS'); +INSERT INTO `tbl_app_goods` VALUES ('ASRS000090', '测试物料000090', 'PC', '直接物料', 'CLC', 1, 'KG', '20', '套袋子', 'FC01', '822整体1个', 'CLC一箱一料', 'PULL', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-02 12:42:28', 'WMS'); +INSERT INTO `tbl_app_goods` VALUES ('ASRS000091', '测试物料000091', 'PC', '直接物料', 'CLC', 1, 'KG', '20', '套袋子', 'FC01', '822整体1个', 'CLC一箱一料', 'PULL', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-02 12:42:28', 'WMS'); +INSERT INTO `tbl_app_goods` VALUES ('ASRS000092', '测试物料000092', 'PC', '直接物料', 'CLC', 1, 'KG', '20', '套袋子', 'FC01', '822整体1个', 'CLC一箱一料', 'PULL', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-02 12:42:28', 'WMS'); +INSERT INTO `tbl_app_goods` VALUES ('ASRS000093', '测试物料000093', 'PC', '直接物料', 'CLC', 1, 'KG', '20', '套袋子', 'FC01', '822整体1个', 'CLC一箱一料', 'PULL', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-02 12:42:28', 'WMS'); +INSERT INTO `tbl_app_goods` VALUES ('ASRS000094', '测试物料000094', 'PC', '直接物料', 'CLC', 1, 'KG', '20', '套袋子', 'FC01', '822整体1个', 'CLC一箱一料', 'PULL', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-02 12:42:28', 'WMS'); +INSERT INTO `tbl_app_goods` VALUES ('ASRS000095', '测试物料000095', 'PC', '直接物料', 'CLC', 1, 'KG', '20', '套袋子', 'FC01', '822整体1个', 'CLC一箱一料', 'PULL', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-02 12:42:28', 'WMS'); +INSERT INTO `tbl_app_goods` VALUES ('ASRS000096', '测试物料000096', 'PC', '直接物料', 'CLC', 1, 'KG', '20', '套袋子', 'FC01', '822整体1个', 'CLC一箱一料', 'PULL', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-02 12:42:28', 'WMS'); +INSERT INTO `tbl_app_goods` VALUES ('ASRS000097', '测试物料000097', 'PC', '直接物料', 'CLC', 1, 'KG', '20', '套袋子', 'FC01', '822整体1个', 'CLC一箱一料', 'PULL', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-02 12:42:28', 'WMS'); +INSERT INTO `tbl_app_goods` VALUES ('ASRS000098', '测试物料000098', 'PC', '直接物料', 'CLC', 1, 'KG', '20', '套袋子', 'FC01', '822整体1个', 'CLC一箱一料', 'PULL', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-02 12:42:28', 'WMS'); +INSERT INTO `tbl_app_goods` VALUES ('ASRS000099', '测试物料000099', 'PC', '直接物料', 'CLC', 1, 'KG', '20', '套袋子', 'FC01', '822整体1个', 'CLC一箱一料', 'PULL', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-02 12:42:28', 'WMS'); +INSERT INTO `tbl_app_goods` VALUES ('ASRS000100', '测试物料000100', 'PC', '直接物料', 'CLC', 1, 'KG', '20', '套袋子', 'FC01', '822整体1个', 'CLC一箱一料', 'PULL', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-02 12:42:28', 'WMS'); +INSERT INTO `tbl_app_goods` VALUES ('ASRS000101', '测试物料000101', 'PC', '直接物料', 'CLC', 1, 'KG', '20', '套袋子', 'FC01', '822整体1个', 'CLC一箱一料', 'PULL', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-02 12:42:28', 'WMS'); +INSERT INTO `tbl_app_goods` VALUES ('ASRS000102', '测试物料000102', 'PC', '直接物料', 'CLC', 1, 'KG', '20', '套袋子', 'FC01', '822整体1个', 'CLC一箱一料', 'PULL', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-02 12:42:28', 'WMS'); +INSERT INTO `tbl_app_goods` VALUES ('ASRS000103', '测试物料000103', 'PC', '直接物料', 'CLC', 1, 'KG', '20', '套袋子', 'FC01', '822整体1个', 'CLC一箱一料', 'PULL', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-02 12:42:28', 'WMS'); +INSERT INTO `tbl_app_goods` VALUES ('ASRS000104', '测试物料000104', 'PC', '直接物料', 'CLC', 1, 'KG', '20', '套袋子', 'FC01', '822整体1个', 'CLC一箱一料', 'PULL', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-02 12:42:28', 'WMS'); +INSERT INTO `tbl_app_goods` VALUES ('ASRS000105', '测试物料000105', 'PC', '直接物料', 'CLC', 1, 'KG', '20', '套袋子', 'FC01', '822整体1个', 'CLC一箱一料', 'PULL', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-02 12:42:28', 'WMS'); +INSERT INTO `tbl_app_goods` VALUES ('ASRS000106', '测试物料000106', 'PC', '直接物料', 'CLC', 1, 'KG', '20', '套袋子', 'FC01', '822整体1个', 'CLC一箱一料', 'PULL', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-02 12:42:28', 'WMS'); +INSERT INTO `tbl_app_goods` VALUES ('ASRS000107', '测试物料000107', 'PC', '直接物料', 'CLC', 1, 'KG', '20', '套袋子', 'FC01', '822整体1个', 'CLC一箱一料', 'PULL', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-02 12:42:28', 'WMS'); +INSERT INTO `tbl_app_goods` VALUES ('ASRS000108', '测试物料000108', 'PC', '直接物料', 'CLC', 1, 'KG', '20', '套袋子', 'FC01', '822整体1个', 'CLC一箱一料', 'PULL', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-02 12:42:28', 'WMS'); +INSERT INTO `tbl_app_goods` VALUES ('ASRS000109', '测试物料000109', 'PC', '直接物料', 'CLC', 1, 'KG', '20', '套袋子', 'FC01', '822整体1个', 'CLC一箱一料', 'PULL', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-02 12:42:28', 'WMS'); +INSERT INTO `tbl_app_goods` VALUES ('ASRS000110', '测试物料000110', 'PC', '直接物料', 'CLC', 1, 'KG', '20', '套袋子', 'FC01', '822整体1个', 'CLC一箱一料', 'PULL', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-02 12:42:28', 'WMS'); +INSERT INTO `tbl_app_goods` VALUES ('ASRS000111', '测试物料000111', 'PC', '直接物料', 'CLC', 1, 'KG', '20', '套袋子', 'FC01', '822整体1个', 'CLC一箱一料', 'PULL', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-02 12:42:28', 'WMS'); +INSERT INTO `tbl_app_goods` VALUES ('ASRS000112', '测试物料000112', 'PC', '直接物料', 'CLC', 1, 'KG', '20', '套袋子', 'FC01', '822整体1个', 'CLC一箱一料', 'PULL', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-02 12:42:28', 'WMS'); +INSERT INTO `tbl_app_goods` VALUES ('ASRS000113', '测试物料000113', 'PC', '直接物料', 'CLC', 1, 'KG', '20', '套袋子', 'FC01', '822整体1个', 'CLC一箱一料', 'PULL', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-02 12:42:28', 'WMS'); +INSERT INTO `tbl_app_goods` VALUES ('ASRS000114', '测试物料000114', 'PC', '直接物料', 'CLC', 1, 'KG', '20', '套袋子', 'FC01', '822整体1个', 'CLC一箱一料', 'PULL', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-02 12:42:28', 'WMS'); +INSERT INTO `tbl_app_goods` VALUES ('ASRS000115', '测试物料000115', 'PC', '直接物料', 'CLC', 1, 'KG', '20', '套袋子', 'FC01', '822整体1个', 'CLC一箱一料', 'PULL', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-02 12:42:28', 'WMS'); +INSERT INTO `tbl_app_goods` VALUES ('ASRS000116', '测试物料000116', 'PC', '直接物料', 'CLC', 1, 'KG', '20', '套袋子', 'FC01', '822整体1个', 'CLC一箱一料', 'PULL', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-02 12:42:28', 'WMS'); +INSERT INTO `tbl_app_goods` VALUES ('ASRS000117', '测试物料000117', 'PC', '直接物料', 'CLC', 1, 'KG', '20', '套袋子', 'FC01', '822整体1个', 'CLC一箱一料', 'PULL', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-02 12:42:28', 'WMS'); +INSERT INTO `tbl_app_goods` VALUES ('ASRS000118', '测试物料000118', 'PC', '直接物料', 'CLC', 1, 'KG', '20', '套袋子', 'FC01', '822整体1个', 'CLC一箱一料', 'PULL', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-02 12:42:28', 'WMS'); +INSERT INTO `tbl_app_goods` VALUES ('ASRS000119', '测试物料000119', 'PC', '直接物料', 'CLC', 1, 'KG', '20', '套袋子', 'FC01', '822整体1个', 'CLC一箱一料', 'PULL', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-02 12:42:28', 'WMS'); +INSERT INTO `tbl_app_goods` VALUES ('ASRS000120', '测试物料000120', 'PC', '直接物料', 'CLC', 1, 'KG', '20', '套袋子', 'FC01', '822整体1个', 'CLC一箱一料', 'PULL', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-02 12:42:28', 'WMS'); +INSERT INTO `tbl_app_goods` VALUES ('ASRS000121', '测试物料000121', 'PC', '直接物料', 'CLC', 1, 'KG', '20', '套袋子', 'FC01', '822整体1个', 'CLC一箱一料', 'PULL', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-02 12:42:28', 'WMS'); +INSERT INTO `tbl_app_goods` VALUES ('ASRS000122', '测试物料000122', 'PC', '直接物料', 'CLC', 1, 'KG', '20', '套袋子', 'FC01', '822整体1个', 'CLC一箱一料', 'PULL', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-02 12:42:28', 'WMS'); +INSERT INTO `tbl_app_goods` VALUES ('ASRS000123', '测试物料000123', 'PC', '直接物料', 'CLC', 1, 'KG', '20', '套袋子', 'FC01', '822整体1个', 'CLC一箱一料', 'PULL', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-02 12:42:28', 'WMS'); +INSERT INTO `tbl_app_goods` VALUES ('ASRS000124', '测试物料000124', 'PC', '直接物料', 'CLC', 1, 'KG', '20', '套袋子', 'FC01', '822整体1个', 'CLC一箱一料', 'PULL', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-02 12:42:28', 'WMS'); +INSERT INTO `tbl_app_goods` VALUES ('ASRS000125', '测试物料000125', 'PC', '直接物料', 'CLC', 1, 'KG', '20', '套袋子', 'FC01', '822整体1个', 'CLC一箱一料', 'PULL', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-02 12:42:28', 'WMS'); +INSERT INTO `tbl_app_goods` VALUES ('ASRS000126', '测试物料000126', 'PC', '直接物料', 'CLC', 1, 'KG', '20', '套袋子', 'FC01', '822整体1个', 'CLC一箱一料', 'PULL', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-02 12:42:28', 'WMS'); +INSERT INTO `tbl_app_goods` VALUES ('ASRS000127', '测试物料000127', 'PC', '直接物料', 'CLC', 1, 'KG', '20', '套袋子', 'FC01', '822整体1个', 'CLC一箱一料', 'PULL', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-02 12:42:28', 'WMS'); +INSERT INTO `tbl_app_goods` VALUES ('ASRS000128', '测试物料000128', 'PC', '直接物料', 'CLC', 1, 'KG', '20', '套袋子', 'FC01', '822整体1个', 'CLC一箱一料', 'PULL', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-02 12:42:28', 'WMS'); +INSERT INTO `tbl_app_goods` VALUES ('ASRS000129', '测试物料000129', 'PC', '直接物料', 'CLC', 1, 'KG', '20', '套袋子', 'FC01', '822整体1个', 'CLC一箱一料', 'PULL', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-02 12:42:28', 'WMS'); +INSERT INTO `tbl_app_goods` VALUES ('ASRS000130', '测试物料000130', 'PC', '直接物料', 'CLC', 1, 'KG', '20', '套袋子', 'FC01', '822整体1个', 'CLC一箱一料', 'PULL', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-02 12:42:28', 'WMS'); +INSERT INTO `tbl_app_goods` VALUES ('ASRS000131', '测试物料000131', 'PC', '直接物料', 'CLC', 1, 'KG', '20', '套袋子', 'FC01', '822整体1个', 'CLC一箱一料', 'PULL', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-02 12:42:28', 'WMS'); +INSERT INTO `tbl_app_goods` VALUES ('ASRS000132', '测试物料000132', 'PC', '直接物料', 'CLC', 1, 'KG', '20', '套袋子', 'FC01', '822整体1个', 'CLC一箱一料', 'PULL', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-02 12:42:28', 'WMS'); +INSERT INTO `tbl_app_goods` VALUES ('ASRS000133', '测试物料000133', 'PC', '直接物料', 'CLC', 1, 'KG', '20', '套袋子', 'FC01', '822整体1个', 'CLC一箱一料', 'PULL', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-02 12:42:28', 'WMS'); +INSERT INTO `tbl_app_goods` VALUES ('ASRS000134', '测试物料000134', 'PC', '直接物料', 'CLC', 1, 'KG', '20', '套袋子', 'FC01', '822整体1个', 'CLC一箱一料', 'PULL', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-02 12:42:28', 'WMS'); +INSERT INTO `tbl_app_goods` VALUES ('ASRS000135', '测试物料000135', 'PC', '直接物料', 'CLC', 1, 'KG', '20', '套袋子', 'FC01', '822整体1个', 'CLC一箱一料', 'PULL', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-02 12:42:28', 'WMS'); +INSERT INTO `tbl_app_goods` VALUES ('ASRS000136', '测试物料000136', 'PC', '直接物料', 'CLC', 1, 'KG', '20', '套袋子', 'FC01', '822整体1个', 'CLC一箱一料', 'PULL', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-02 12:42:28', 'WMS'); +INSERT INTO `tbl_app_goods` VALUES ('ASRS000137', '测试物料000137', 'PC', '直接物料', 'CLC', 1, 'KG', '20', '套袋子', 'FC01', '822整体1个', 'CLC一箱一料', 'PULL', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-02 12:42:28', 'WMS'); +INSERT INTO `tbl_app_goods` VALUES ('ASRS000138', '测试物料000138', 'PC', '直接物料', 'CLC', 1, 'KG', '20', '套袋子', 'FC01', '822整体1个', 'CLC一箱一料', 'PULL', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-02 12:42:28', 'WMS'); +INSERT INTO `tbl_app_goods` VALUES ('ASRS000139', '测试物料000139', 'PC', '直接物料', 'CLC', 1, 'KG', '20', '套袋子', 'FC01', '822整体1个', 'CLC一箱一料', 'PULL', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-02 12:42:28', 'WMS'); +INSERT INTO `tbl_app_goods` VALUES ('ASRS000140', '测试物料000140', 'PC', '直接物料', 'CLC', 1, 'KG', '20', '套袋子', 'FC01', '822整体1个', 'CLC一箱一料', 'PULL', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-02 12:42:28', 'WMS'); +INSERT INTO `tbl_app_goods` VALUES ('ASRS000141', '测试物料000141', 'PC', '直接物料', 'CLC', 1, 'KG', '20', '套袋子', 'FC01', '822整体1个', 'CLC一箱一料', 'PULL', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-02 12:42:28', 'WMS'); +INSERT INTO `tbl_app_goods` VALUES ('ASRS000142', '测试物料000142', 'PC', '直接物料', 'CLC', 1, 'KG', '20', '套袋子', 'FC01', '822整体1个', 'CLC一箱一料', 'PULL', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-02 12:42:28', 'WMS'); +INSERT INTO `tbl_app_goods` VALUES ('ASRS000143', '测试物料000143', 'PC', '直接物料', 'CLC', 1, 'KG', '20', '套袋子', 'FC01', '822整体1个', 'CLC一箱一料', 'PULL', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-02 12:42:28', 'WMS'); +INSERT INTO `tbl_app_goods` VALUES ('ASRS000144', '测试物料000144', 'PC', '直接物料', 'CLC', 1, 'KG', '20', '套袋子', 'FC01', '822整体1个', 'CLC一箱一料', 'PULL', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-02 12:42:28', 'WMS'); +INSERT INTO `tbl_app_goods` VALUES ('ASRS000145', '测试物料000145', 'PC', '直接物料', 'CLC', 1, 'KG', '20', '套袋子', 'FC01', '822整体1个', 'CLC一箱一料', 'PULL', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-02 12:42:28', 'WMS'); +INSERT INTO `tbl_app_goods` VALUES ('ASRS000146', '测试物料000146', 'PC', '直接物料', 'CLC', 1, 'KG', '20', '套袋子', 'FC01', '822整体1个', 'CLC一箱一料', 'PULL', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-02 12:42:28', 'WMS'); +INSERT INTO `tbl_app_goods` VALUES ('ASRS000147', '测试物料000147', 'PC', '直接物料', 'CLC', 1, 'KG', '20', '套袋子', 'FC01', '822整体1个', 'CLC一箱一料', 'PULL', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-02 12:42:28', 'WMS'); +INSERT INTO `tbl_app_goods` VALUES ('ASRS000148', '测试物料000148', 'PC', '直接物料', 'CLC', 1, 'KG', '20', '套袋子', 'FC01', '822整体1个', 'CLC一箱一料', 'PULL', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-02 12:42:28', 'WMS'); +INSERT INTO `tbl_app_goods` VALUES ('ASRS000149', '测试物料000149', 'PC', '直接物料', 'CLC', 1, 'KG', '20', '套袋子', 'FC01', '822整体1个', 'CLC一箱一料', 'PULL', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-02 12:42:28', 'WMS'); +INSERT INTO `tbl_app_goods` VALUES ('ASRS000150', '测试物料000150', 'PC', '直接物料', 'CLC', 1, 'KG', '20', '套袋子', 'FC01', '822整体1个', 'CLC一箱一料', 'PULL', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-02 12:42:28', 'WMS'); +INSERT INTO `tbl_app_goods` VALUES ('ASRS000151', '测试物料000151', 'PC', '直接物料', 'CLC', 1, 'KG', '20', '套袋子', 'FC01', '822整体1个', 'CLC一箱一料', 'PULL', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-02 12:42:28', 'WMS'); +INSERT INTO `tbl_app_goods` VALUES ('ASRS000152', '测试物料000152', 'PC', '直接物料', 'CLC', 1, 'KG', '20', '套袋子', 'FC01', '822整体1个', 'CLC一箱一料', 'PULL', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-02 12:42:28', 'WMS'); +INSERT INTO `tbl_app_goods` VALUES ('ASRS000153', '测试物料000153', 'PC', '直接物料', 'CLC', 1, 'KG', '20', '套袋子', 'FC01', '822整体1个', 'CLC一箱一料', 'PULL', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-02 12:42:28', 'WMS'); +INSERT INTO `tbl_app_goods` VALUES ('ASRS000154', '测试物料000154', 'PC', '直接物料', 'CLC', 1, 'KG', '20', '套袋子', 'FC01', '822整体1个', 'CLC一箱一料', 'PULL', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-02 12:42:28', 'WMS'); +INSERT INTO `tbl_app_goods` VALUES ('ASRS000155', '测试物料000155', 'PC', '直接物料', 'CLC', 1, 'KG', '20', '套袋子', 'FC01', '822整体1个', 'CLC一箱一料', 'PULL', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-02 12:42:28', 'WMS'); +INSERT INTO `tbl_app_goods` VALUES ('ASRS000156', '测试物料000156', 'PC', '直接物料', 'CLC', 1, 'KG', '20', '套袋子', 'FC01', '822整体1个', 'CLC一箱一料', 'PULL', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-02 12:42:28', 'WMS'); +INSERT INTO `tbl_app_goods` VALUES ('ASRS000157', '测试物料000157', 'PC', '直接物料', 'CLC', 1, 'KG', '20', '套袋子', 'FC01', '822整体1个', 'CLC一箱一料', 'PULL', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-02 12:42:28', 'WMS'); +INSERT INTO `tbl_app_goods` VALUES ('ASRS000158', '测试物料000158', 'PC', '直接物料', 'CLC', 1, 'KG', '20', '套袋子', 'FC01', '822整体1个', 'CLC一箱一料', 'PULL', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-02 12:42:28', 'WMS'); +INSERT INTO `tbl_app_goods` VALUES ('ASRS000159', '测试物料000159', 'PC', '直接物料', 'CLC', 1, 'KG', '20', '套袋子', 'FC01', '822整体1个', 'CLC一箱一料', 'PULL', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-02 12:42:28', 'WMS'); +INSERT INTO `tbl_app_goods` VALUES ('ASRS000160', '测试物料000160', 'PC', '直接物料', 'CLC', 1, 'KG', '20', '套袋子', 'FC01', '822整体1个', 'CLC一箱一料', 'PULL', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-02 12:42:28', 'WMS'); +INSERT INTO `tbl_app_goods` VALUES ('ASRS000161', '测试物料000161', 'PC', '直接物料', 'CLC', 1, 'KG', '20', '套袋子', 'FC01', '822整体1个', 'CLC一箱一料', 'PULL', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-02 12:42:28', 'WMS'); +INSERT INTO `tbl_app_goods` VALUES ('ASRS000162', '测试物料000162', 'PC', '直接物料', 'CLC', 1, 'KG', '20', '套袋子', 'FC01', '822整体1个', 'CLC一箱一料', 'PULL', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-02 12:42:28', 'WMS'); +INSERT INTO `tbl_app_goods` VALUES ('ASRS000163', '测试物料000163', 'PC', '直接物料', 'CLC', 1, 'KG', '20', '套袋子', 'FC01', '822整体1个', 'CLC一箱一料', 'PULL', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-02 12:42:28', 'WMS'); +INSERT INTO `tbl_app_goods` VALUES ('ASRS000164', '测试物料000164', 'PC', '直接物料', 'CLC', 1, 'KG', '20', '套袋子', 'FC01', '822整体1个', 'CLC一箱一料', 'PULL', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-02 12:42:28', 'WMS'); +INSERT INTO `tbl_app_goods` VALUES ('ASRS000165', '测试物料000165', 'PC', '直接物料', 'CLC', 1, 'KG', '20', '套袋子', 'FC01', '822整体1个', 'CLC一箱一料', 'PULL', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-02 12:42:28', 'WMS'); +INSERT INTO `tbl_app_goods` VALUES ('ASRS000166', '测试物料000166', 'PC', '直接物料', 'CLC', 1, 'KG', '20', '套袋子', 'FC01', '822整体1个', 'CLC一箱一料', 'PULL', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-02 12:42:28', 'WMS'); +INSERT INTO `tbl_app_goods` VALUES ('ASRS000167', '测试物料000167', 'PC', '直接物料', 'CLC', 1, 'KG', '20', '套袋子', 'FC01', '822整体1个', 'CLC一箱一料', 'PULL', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-02 12:42:28', 'WMS'); +INSERT INTO `tbl_app_goods` VALUES ('ASRS000168', '测试物料000168', 'PC', '直接物料', 'CLC', 1, 'KG', '20', '套袋子', 'FC01', '822整体1个', 'CLC一箱一料', 'PULL', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-02 12:42:28', 'WMS'); +INSERT INTO `tbl_app_goods` VALUES ('ASRS000169', '测试物料000169', 'PC', '直接物料', 'CLC', 1, 'KG', '20', '套袋子', 'FC01', '822整体1个', 'CLC一箱一料', 'PULL', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-02 12:42:28', 'WMS'); +INSERT INTO `tbl_app_goods` VALUES ('ASRS000170', '测试物料000170', 'PC', '直接物料', 'CLC', 1, 'KG', '20', '套袋子', 'FC01', '822整体1个', 'CLC一箱一料', 'PULL', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-02 12:42:28', 'WMS'); +INSERT INTO `tbl_app_goods` VALUES ('ASRS000171', '测试物料000171', 'PC', '直接物料', 'CLC', 1, 'KG', '20', '套袋子', 'FC01', '822整体1个', 'CLC一箱一料', 'PULL', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-02 12:42:28', 'WMS'); +INSERT INTO `tbl_app_goods` VALUES ('ASRS000172', '测试物料000172', 'PC', '直接物料', 'CLC', 1, 'KG', '20', '套袋子', 'FC01', '822整体1个', 'CLC一箱一料', 'PULL', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-02 12:42:28', 'WMS'); +INSERT INTO `tbl_app_goods` VALUES ('ASRS000173', '测试物料000173', 'PC', '直接物料', 'CLC', 1, 'KG', '20', '套袋子', 'FC01', '822整体1个', 'CLC一箱一料', 'PULL', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-02 12:42:28', 'WMS'); +INSERT INTO `tbl_app_goods` VALUES ('ASRS000174', '测试物料000174', 'PC', '直接物料', 'CLC', 1, 'KG', '20', '套袋子', 'FC01', '822整体1个', 'CLC一箱一料', 'PULL', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-02 12:42:28', 'WMS'); +INSERT INTO `tbl_app_goods` VALUES ('ASRS000175', '测试物料000175', 'PC', '直接物料', 'CLC', 1, 'KG', '20', '套袋子', 'FC01', '822整体1个', 'CLC一箱一料', 'PULL', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-02 12:42:28', 'WMS'); +INSERT INTO `tbl_app_goods` VALUES ('ASRS000176', '测试物料000176', 'PC', '直接物料', 'CLC', 1, 'KG', '20', '套袋子', 'FC01', '822整体1个', 'CLC一箱一料', 'PULL', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-02 12:42:28', 'WMS'); +INSERT INTO `tbl_app_goods` VALUES ('ASRS000177', '测试物料000177', 'PC', '直接物料', 'CLC', 1, 'KG', '20', '套袋子', 'FC01', '822整体1个', 'CLC一箱一料', 'PULL', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-02 12:42:28', 'WMS'); +INSERT INTO `tbl_app_goods` VALUES ('ASRS000178', '测试物料000178', 'PC', '直接物料', 'CLC', 1, 'KG', '20', '套袋子', 'FC01', '822整体1个', 'CLC一箱一料', 'PULL', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-02 12:42:28', 'WMS'); +INSERT INTO `tbl_app_goods` VALUES ('ASRS000179', '测试物料000179', 'PC', '直接物料', 'CLC', 1, 'KG', '20', '套袋子', 'FC01', '822整体1个', 'CLC一箱一料', 'PULL', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-02 12:42:28', 'WMS'); +INSERT INTO `tbl_app_goods` VALUES ('ASRS000180', '测试物料000180', 'PC', '直接物料', 'CLC', 1, 'KG', '20', '套袋子', 'FC01', '822整体1个', 'CLC一箱一料', 'PULL', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-02 12:42:28', 'WMS'); +INSERT INTO `tbl_app_goods` VALUES ('ASRS000181', '测试物料000181', 'PC', '直接物料', 'CLC', 1, 'KG', '20', '套袋子', 'FC01', '822整体1个', 'CLC一箱一料', 'PULL', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-02 12:42:28', 'WMS'); +INSERT INTO `tbl_app_goods` VALUES ('ASRS000182', '测试物料000182', 'PC', '直接物料', 'CLC', 1, 'KG', '20', '套袋子', 'FC01', '822整体1个', 'CLC一箱一料', 'PULL', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-02 12:42:28', 'WMS'); +INSERT INTO `tbl_app_goods` VALUES ('ASRS000183', '测试物料000183', 'PC', '直接物料', 'CLC', 1, 'KG', '20', '套袋子', 'FC01', '822整体1个', 'CLC一箱一料', 'PULL', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-02 12:42:28', 'WMS'); +INSERT INTO `tbl_app_goods` VALUES ('ASRS000184', '测试物料000184', 'PC', '直接物料', 'CLC', 1, 'KG', '20', '套袋子', 'FC01', '822整体1个', 'CLC一箱一料', 'PULL', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-02 12:42:28', 'WMS'); +INSERT INTO `tbl_app_goods` VALUES ('ASRS000185', '测试物料000185', 'PC', '直接物料', 'CLC', 1, 'KG', '20', '套袋子', 'FC01', '822整体1个', 'CLC一箱一料', 'PULL', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-02 12:42:28', 'WMS'); +INSERT INTO `tbl_app_goods` VALUES ('ASRS000186', '测试物料000186', 'PC', '直接物料', 'CLC', 1, 'KG', '20', '套袋子', 'FC01', '822整体1个', 'CLC一箱一料', 'PULL', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-02 12:42:28', 'WMS'); +INSERT INTO `tbl_app_goods` VALUES ('ASRS000187', '测试物料000187', 'PC', '直接物料', 'CLC', 1, 'KG', '20', '套袋子', 'FC01', '822整体1个', 'CLC一箱一料', 'PULL', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-02 12:42:28', 'WMS'); +INSERT INTO `tbl_app_goods` VALUES ('ASRS000188', '测试物料000188', 'PC', '直接物料', 'CLC', 1, 'KG', '20', '套袋子', 'FC01', '822整体1个', 'CLC一箱一料', 'PULL', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-02 12:42:28', 'WMS'); +INSERT INTO `tbl_app_goods` VALUES ('ASRS000189', '测试物料000189', 'PC', '直接物料', 'CLC', 1, 'KG', '20', '套袋子', 'FC01', '822整体1个', 'CLC一箱一料', 'PULL', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-02 12:42:28', 'WMS'); +INSERT INTO `tbl_app_goods` VALUES ('ASRS000190', '测试物料000190', 'PC', '直接物料', 'CLC', 1, 'KG', '20', '套袋子', 'FC01', '822整体1个', 'CLC一箱一料', 'PULL', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-02 12:42:28', 'WMS'); +INSERT INTO `tbl_app_goods` VALUES ('ASRS000191', '测试物料000191', 'PC', '直接物料', 'CLC', 1, 'KG', '20', '套袋子', 'FC01', '822整体1个', 'CLC一箱一料', 'PULL', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-02 12:42:28', 'WMS'); +INSERT INTO `tbl_app_goods` VALUES ('ASRS000192', '测试物料000192', 'PC', '直接物料', 'CLC', 1, 'KG', '20', '套袋子', 'FC01', '822整体1个', 'CLC一箱一料', 'PULL', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-02 12:42:28', 'WMS'); +INSERT INTO `tbl_app_goods` VALUES ('ASRS000193', '测试物料000193', 'PC', '直接物料', 'CLC', 1, 'KG', '20', '套袋子', 'FC01', '822整体1个', 'CLC一箱一料', 'PULL', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-02 12:42:28', 'WMS'); +INSERT INTO `tbl_app_goods` VALUES ('ASRS000194', '测试物料000194', 'PC', '直接物料', 'CLC', 1, 'KG', '20', '套袋子', 'FC01', '822整体1个', 'CLC一箱一料', 'PULL', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-02 12:42:28', 'WMS'); +INSERT INTO `tbl_app_goods` VALUES ('ASRS000195', '测试物料000195', 'PC', '直接物料', 'CLC', 1, 'KG', '20', '套袋子', 'FC01', '822整体1个', 'CLC一箱一料', 'PULL', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-02 12:42:28', 'WMS'); +INSERT INTO `tbl_app_goods` VALUES ('ASRS000196', '测试物料000196', 'PC', '直接物料', 'CLC', 1, 'KG', '20', '套袋子', 'FC01', '822整体1个', 'CLC一箱一料', 'PULL', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-02 12:42:28', 'WMS'); +INSERT INTO `tbl_app_goods` VALUES ('ASRS000197', '测试物料000197', 'PC', '直接物料', 'CLC', 1, 'KG', '20', '套袋子', 'FC01', '822整体1个', 'CLC一箱一料', 'PULL', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-02 12:42:28', 'WMS'); +INSERT INTO `tbl_app_goods` VALUES ('ASRS000198', '测试物料000198', 'PC', '直接物料', 'CLC', 1, 'KG', '20', '套袋子', 'FC01', '822整体1个', 'CLC一箱一料', 'PULL', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-02 12:42:28', 'WMS'); +INSERT INTO `tbl_app_goods` VALUES ('ASRS000199', '测试物料000199', 'PC', '直接物料', 'CLC', 1, 'KG', '20', '套袋子', 'FC01', '822整体1个', 'CLC一箱一料', 'PULL', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-02 12:42:28', 'WMS'); +INSERT INTO `tbl_app_goods` VALUES ('ASRS000200', '测试物料000200', 'PC', '直接物料', 'CLC', 1, 'KG', '20', '套袋子', 'FC01', '822整体1个', 'CLC一箱一料', 'PULL', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-02 12:42:28', 'WMS'); +INSERT INTO `tbl_app_goods` VALUES ('ASRS000201', '测试物料000201', 'PC', '直接物料', 'CLC', 1, 'KG', '20', '套袋子', 'FC01', '822整体1个', 'CLC一箱一料', 'PULL', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-02 12:42:28', 'WMS'); +INSERT INTO `tbl_app_goods` VALUES ('ASRS000202', '测试物料000202', 'PC', '直接物料', 'CLC', 1, 'KG', '20', '套袋子', 'FC01', '822整体1个', 'CLC一箱一料', 'PULL', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-02 12:42:28', 'WMS'); +INSERT INTO `tbl_app_goods` VALUES ('ASRS000203', '测试物料000203', 'PC', '直接物料', 'CLC', 1, 'KG', '20', '套袋子', 'FC01', '822整体1个', 'CLC一箱一料', 'PULL', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-02 12:42:28', 'WMS'); +INSERT INTO `tbl_app_goods` VALUES ('ASRS000204', '测试物料000204', 'PC', '直接物料', 'CLC', 1, 'KG', '20', '套袋子', 'FC01', '822整体1个', 'CLC一箱一料', 'PULL', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-02 12:42:28', 'WMS'); +INSERT INTO `tbl_app_goods` VALUES ('ASRS000205', '测试物料000205', 'PC', '直接物料', 'CLC', 1, 'KG', '20', '套袋子', 'FC01', '822整体1个', 'CLC一箱一料', 'PULL', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-02 12:42:28', 'WMS'); +INSERT INTO `tbl_app_goods` VALUES ('ASRS000206', '测试物料000206', 'PC', '直接物料', 'CLC', 1, 'KG', '20', '套袋子', 'FC01', '822整体1个', 'CLC一箱一料', 'PULL', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-02 12:42:28', 'WMS'); +INSERT INTO `tbl_app_goods` VALUES ('ASRS000207', '测试物料000207', 'PC', '直接物料', 'CLC', 1, 'KG', '20', '套袋子', 'FC01', '822整体1个', 'CLC一箱一料', 'PULL', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-02 12:42:28', 'WMS'); +INSERT INTO `tbl_app_goods` VALUES ('ASRS000208', '测试物料000208', 'PC', '直接物料', 'CLC', 1, 'KG', '20', '套袋子', 'FC01', '822整体1个', 'CLC一箱一料', 'PULL', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-02 12:42:28', 'WMS'); +INSERT INTO `tbl_app_goods` VALUES ('ASRS000209', '测试物料000209', 'PC', '直接物料', 'CLC', 1, 'KG', '20', '套袋子', 'FC01', '822整体1个', 'CLC一箱一料', 'PULL', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-02 12:42:28', 'WMS'); +INSERT INTO `tbl_app_goods` VALUES ('ASRS000210', '测试物料000210', 'PC', '直接物料', 'CLC', 1, 'KG', '20', '套袋子', 'FC01', '822整体1个', 'CLC一箱一料', 'PULL', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-02 12:42:28', 'WMS'); +INSERT INTO `tbl_app_goods` VALUES ('ASRS000211', '测试物料000211', 'PC', '直接物料', 'CLC', 1, 'KG', '20', '套袋子', 'FC01', '822整体1个', 'CLC一箱一料', 'PULL', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-02 12:42:28', 'WMS'); +INSERT INTO `tbl_app_goods` VALUES ('ASRS000212', '测试物料000212', 'PC', '直接物料', 'CLC', 1, 'KG', '20', '套袋子', 'FC01', '822整体1个', 'CLC一箱一料', 'PULL', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-02 12:42:28', 'WMS'); +INSERT INTO `tbl_app_goods` VALUES ('ASRS000213', '测试物料000213', 'PC', '直接物料', 'CLC', 1, 'KG', '20', '套袋子', 'FC01', '822整体1个', 'CLC一箱一料', 'PULL', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-02 12:42:28', 'WMS'); +INSERT INTO `tbl_app_goods` VALUES ('ASRS000214', '测试物料000214', 'PC', '直接物料', 'CLC', 1, 'KG', '20', '套袋子', 'FC01', '822整体1个', 'CLC一箱一料', 'PULL', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-02 12:42:28', 'WMS'); +INSERT INTO `tbl_app_goods` VALUES ('ASRS000215', '测试物料000215', 'PC', '直接物料', 'CLC', 1, 'KG', '20', '套袋子', 'FC01', '822整体1个', 'CLC一箱一料', 'PULL', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-02 12:42:28', 'WMS'); +INSERT INTO `tbl_app_goods` VALUES ('ASRS000216', '测试物料000216', 'PC', '直接物料', 'CLC', 1, 'KG', '20', '套袋子', 'FC01', '822整体1个', 'CLC一箱一料', 'PULL', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-02 12:42:28', 'WMS'); +INSERT INTO `tbl_app_goods` VALUES ('ASRS000217', '测试物料000217', 'PC', '直接物料', 'CLC', 1, 'KG', '20', '套袋子', 'FC01', '822整体1个', 'CLC一箱一料', 'PULL', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-02 12:42:28', 'WMS'); +INSERT INTO `tbl_app_goods` VALUES ('ASRS000218', '测试物料000218', 'PC', '直接物料', 'CLC', 1, 'KG', '20', '套袋子', 'FC01', '822整体1个', 'CLC一箱一料', 'PULL', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-02 12:42:28', 'WMS'); +INSERT INTO `tbl_app_goods` VALUES ('ASRS000219', '测试物料000219', 'PC', '直接物料', 'CLC', 1, 'KG', '20', '套袋子', 'FC01', '822整体1个', 'CLC一箱一料', 'PULL', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-02 12:42:28', 'WMS'); +INSERT INTO `tbl_app_goods` VALUES ('ASRS000220', '测试物料000220', 'PC', '直接物料', 'CLC', 1, 'KG', '20', '套袋子', 'FC01', '822整体1个', 'CLC一箱一料', 'PULL', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-02 12:42:28', 'WMS'); +INSERT INTO `tbl_app_goods` VALUES ('ASRS000221', '测试物料000221', 'PC', '直接物料', 'CLC', 1, 'KG', '20', '套袋子', 'FC01', '822整体1个', 'CLC一箱一料', 'PULL', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-02 12:42:28', 'WMS'); +INSERT INTO `tbl_app_goods` VALUES ('ASRS000222', '测试物料000222', 'PC', '直接物料', 'CLC', 1, 'KG', '20', '套袋子', 'FC01', '822整体1个', 'CLC一箱一料', 'PULL', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-02 12:42:28', 'WMS'); +INSERT INTO `tbl_app_goods` VALUES ('ASRS000223', '测试物料000223', 'PC', '直接物料', 'CLC', 1, 'KG', '20', '套袋子', 'FC01', '822整体1个', 'CLC一箱一料', 'PULL', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-02 12:42:28', 'WMS'); +INSERT INTO `tbl_app_goods` VALUES ('ASRS000224', '测试物料000224', 'PC', '直接物料', 'CLC', 1, 'KG', '20', '套袋子', 'FC01', '822整体1个', 'CLC一箱一料', 'PULL', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-02 12:42:28', 'WMS'); +INSERT INTO `tbl_app_goods` VALUES ('ASRS000225', '测试物料000225', 'PC', '直接物料', 'CLC', 1, 'KG', '20', '套袋子', 'FC01', '822整体1个', 'CLC一箱一料', 'PULL', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-02 12:42:28', 'WMS'); +INSERT INTO `tbl_app_goods` VALUES ('ASRS000226', '测试物料000226', 'PC', '直接物料', 'CLC', 1, 'KG', '20', '套袋子', 'FC01', '822整体1个', 'CLC一箱一料', 'PULL', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-02 12:42:28', 'WMS'); +INSERT INTO `tbl_app_goods` VALUES ('ASRS000227', '测试物料000227', 'PC', '直接物料', 'CLC', 1, 'KG', '20', '套袋子', 'FC01', '822整体1个', 'CLC一箱一料', 'PULL', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-02 12:42:28', 'WMS'); +INSERT INTO `tbl_app_goods` VALUES ('ASRS000228', '测试物料000228', 'PC', '直接物料', 'CLC', 1, 'KG', '20', '套袋子', 'FC01', '822整体1个', 'CLC一箱一料', 'PULL', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-02 12:42:28', 'WMS'); +INSERT INTO `tbl_app_goods` VALUES ('ASRS000229', '测试物料000229', 'PC', '直接物料', 'CLC', 1, 'KG', '20', '套袋子', 'FC01', '822整体1个', 'CLC一箱一料', 'PULL', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-02 12:42:28', 'WMS'); +INSERT INTO `tbl_app_goods` VALUES ('ASRS000230', '测试物料000230', 'PC', '直接物料', 'CLC', 1, 'KG', '20', '套袋子', 'FC01', '822整体1个', 'CLC一箱一料', 'PULL', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-02 12:42:28', 'WMS'); +INSERT INTO `tbl_app_goods` VALUES ('ASRS000231', '测试物料000231', 'PC', '直接物料', 'CLC', 1, 'KG', '20', '套袋子', 'FC01', '822整体1个', 'CLC一箱一料', 'PULL', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-02 12:42:28', 'WMS'); +INSERT INTO `tbl_app_goods` VALUES ('ASRS000232', '测试物料000232', 'PC', '直接物料', 'CLC', 1, 'KG', '20', '套袋子', 'FC01', '822整体1个', 'CLC一箱一料', 'PULL', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-02 12:42:28', 'WMS'); +INSERT INTO `tbl_app_goods` VALUES ('ASRS000233', '测试物料000233', 'PC', '直接物料', 'CLC', 1, 'KG', '20', '套袋子', 'FC01', '822整体1个', 'CLC一箱一料', 'PULL', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-02 12:42:28', 'WMS'); +INSERT INTO `tbl_app_goods` VALUES ('ASRS000234', '测试物料000234', 'PC', '直接物料', 'CLC', 1, 'KG', '20', '套袋子', 'FC01', '822整体1个', 'CLC一箱一料', 'PULL', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-02 12:42:28', 'WMS'); +INSERT INTO `tbl_app_goods` VALUES ('ASRS000235', '测试物料000235', 'PC', '直接物料', 'CLC', 1, 'KG', '20', '套袋子', 'FC01', '822整体1个', 'CLC一箱一料', 'PULL', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-02 12:42:28', 'WMS'); +INSERT INTO `tbl_app_goods` VALUES ('ASRS000236', '测试物料000236', 'PC', '直接物料', 'CLC', 1, 'KG', '20', '套袋子', 'FC01', '822整体1个', 'CLC一箱一料', 'PULL', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-02 12:42:28', 'WMS'); +INSERT INTO `tbl_app_goods` VALUES ('ASRS000237', '测试物料000237', 'PC', '直接物料', 'CLC', 1, 'KG', '20', '套袋子', 'FC01', '822整体1个', 'CLC一箱一料', 'PULL', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-02 12:42:28', 'WMS'); +INSERT INTO `tbl_app_goods` VALUES ('ASRS000238', '测试物料000238', 'PC', '直接物料', 'CLC', 1, 'KG', '20', '套袋子', 'FC01', '822整体1个', 'CLC一箱一料', 'PULL', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-02 12:42:28', 'WMS'); +INSERT INTO `tbl_app_goods` VALUES ('ASRS000239', '测试物料000239', 'PC', '直接物料', 'CLC', 1, 'KG', '20', '套袋子', 'FC01', '822整体1个', 'CLC一箱一料', 'PULL', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-02 12:42:28', 'WMS'); +INSERT INTO `tbl_app_goods` VALUES ('ASRS000240', '测试物料000240', 'PC', '直接物料', 'CLC', 1, 'KG', '20', '套袋子', 'FC01', '822整体1个', 'CLC一箱一料', 'PULL', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-02 12:42:28', 'WMS'); +INSERT INTO `tbl_app_goods` VALUES ('ASRS000241', '测试物料000241', 'PC', '直接物料', 'CLC', 1, 'KG', '20', '套袋子', 'FC01', '822整体1个', 'CLC一箱一料', 'PULL', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-02 12:42:28', 'WMS'); +INSERT INTO `tbl_app_goods` VALUES ('ASRS000242', '测试物料000242', 'PC', '直接物料', 'CLC', 1, 'KG', '20', '套袋子', 'FC01', '822整体1个', 'CLC一箱一料', 'PULL', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-02 12:42:28', 'WMS'); +INSERT INTO `tbl_app_goods` VALUES ('ASRS000243', '测试物料000243', 'PC', '直接物料', 'CLC', 1, 'KG', '20', '套袋子', 'FC01', '822整体1个', 'CLC一箱一料', 'PULL', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-02 12:42:28', 'WMS'); +INSERT INTO `tbl_app_goods` VALUES ('ASRS000244', '测试物料000244', 'PC', '直接物料', 'CLC', 1, 'KG', '20', '套袋子', 'FC01', '822整体1个', 'CLC一箱一料', 'PULL', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-02 12:42:28', 'WMS'); +INSERT INTO `tbl_app_goods` VALUES ('ASRS000245', '测试物料000245', 'PC', '直接物料', 'CLC', 1, 'KG', '20', '套袋子', 'FC01', '822整体1个', 'CLC一箱一料', 'PULL', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-02 12:42:28', 'WMS'); +INSERT INTO `tbl_app_goods` VALUES ('ASRS000246', '测试物料000246', 'PC', '直接物料', 'CLC', 1, 'KG', '20', '套袋子', 'FC01', '822整体1个', 'CLC一箱一料', 'PULL', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-02 12:42:28', 'WMS'); +INSERT INTO `tbl_app_goods` VALUES ('ASRS000247', '测试物料000247', 'PC', '直接物料', 'CLC', 1, 'KG', '20', '套袋子', 'FC01', '822整体1个', 'CLC一箱一料', 'PULL', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-02 12:42:28', 'WMS'); +INSERT INTO `tbl_app_goods` VALUES ('ASRS000248', '测试物料000248', 'PC', '直接物料', 'CLC', 1, 'KG', '20', '套袋子', 'FC01', '822整体1个', 'CLC一箱一料', 'PULL', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-02 12:42:28', 'WMS'); +INSERT INTO `tbl_app_goods` VALUES ('ASRS000249', '测试物料000249', 'PC', '直接物料', 'CLC', 1, 'KG', '20', '套袋子', 'FC01', '822整体1个', 'CLC一箱一料', 'PULL', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-02 12:42:28', 'WMS'); +INSERT INTO `tbl_app_goods` VALUES ('ASRS000250', '测试物料000250', 'PC', '直接物料', 'CLC', 1, 'KG', '20', '套袋子', 'FC01', '822整体1个', 'CLC一箱一料', 'PULL', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2024-08-02 12:42:28', 'WMS'); -- ---------------------------- -- Table structure for tbl_app_goods_to_station @@ -122,12 +811,52 @@ CREATE TABLE `tbl_app_goods_to_station` ( `total_num` decimal(12, 4) NULL DEFAULT NULL COMMENT '需求总数量', `distribute_status` int NULL DEFAULT NULL COMMENT '分配状态', PRIMARY KEY (`config_id`) USING BTREE -) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_0900_ai_ci ROW_FORMAT = Dynamic; +) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_0900_ai_ci ROW_FORMAT = DYNAMIC; -- ---------------------------- -- Records of tbl_app_goods_to_station -- ---------------------------- +-- ---------------------------- +-- Table structure for tbl_app_inventory_history +-- ---------------------------- +DROP TABLE IF EXISTS `tbl_app_inventory_history`; +CREATE TABLE `tbl_app_inventory_history` ( + `inventory_id` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL COMMENT '盘点id', + `goods_id` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL COMMENT '料号', + `stock_num` decimal(12, 4) NULL DEFAULT NULL COMMENT '库存数量', + `real_num` decimal(12, 4) NULL DEFAULT NULL COMMENT '实际数量', + `inventory_status` int NULL DEFAULT NULL COMMENT '盘点状态', + `inventory_user` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL COMMENT '盘点人', + `inventory_date` datetime NULL DEFAULT NULL COMMENT '盘点日期', + `list_id` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL COMMENT '清单id', + PRIMARY KEY (`inventory_id`) USING BTREE +) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_0900_ai_ci ROW_FORMAT = Dynamic; + +-- ---------------------------- +-- Records of tbl_app_inventory_history +-- ---------------------------- + +-- ---------------------------- +-- Table structure for tbl_app_inventory_list +-- ---------------------------- +DROP TABLE IF EXISTS `tbl_app_inventory_list`; +CREATE TABLE `tbl_app_inventory_list` ( + `inventory_id` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL COMMENT '盘点id', + `goods_id` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL COMMENT '料号', + `stock_num` decimal(12, 4) NULL DEFAULT NULL COMMENT '库存数量', + `real_num` decimal(12, 4) NULL DEFAULT NULL COMMENT '实际数量', + `inventory_status` int NULL DEFAULT NULL COMMENT '盘点状态', + `inventory_user` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL COMMENT '盘点人', + `inventory_date` datetime NULL DEFAULT NULL COMMENT '盘点日期', + `list_id` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL COMMENT '清单id', + PRIMARY KEY (`inventory_id`) USING BTREE +) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_0900_ai_ci ROW_FORMAT = Dynamic; + +-- ---------------------------- +-- Records of tbl_app_inventory_list +-- ---------------------------- + -- ---------------------------- -- Table structure for tbl_app_kate_dbs -- ---------------------------- @@ -141,11 +870,14 @@ CREATE TABLE `tbl_app_kate_dbs` ( `last_update_time` datetime NULL DEFAULT NULL COMMENT '最近更新时间', `last_update_user` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL COMMENT '最近更新用户', PRIMARY KEY (`dbs_id`) USING BTREE -) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_0900_ai_ci ROW_FORMAT = Dynamic; +) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_0900_ai_ci ROW_FORMAT = DYNAMIC; -- ---------------------------- -- Records of tbl_app_kate_dbs -- ---------------------------- +INSERT INTO `tbl_app_kate_dbs` VALUES ('test01', 1, '1', '2024-08-01 12:49:13', 2, '2024-08-01 12:49:18', 'WMS'); +INSERT INTO `tbl_app_kate_dbs` VALUES ('test02', 2, '2', '2024-08-02 12:49:13', 0, '2024-08-01 12:49:18', 'WMS'); +INSERT INTO `tbl_app_kate_dbs` VALUES ('test03', 3, '3', '2024-08-03 12:49:13', 0, '2024-08-01 12:49:18', 'WMS'); -- ---------------------------- -- Table structure for tbl_app_kate_dbs_history @@ -160,7 +892,7 @@ CREATE TABLE `tbl_app_kate_dbs_history` ( `last_update_time` datetime NULL DEFAULT NULL COMMENT '最近更新时间', `last_update_user` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL COMMENT '最近更新用户', PRIMARY KEY (`dbs_id`) USING BTREE -) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_0900_ai_ci ROW_FORMAT = Dynamic; +) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_0900_ai_ci ROW_FORMAT = DYNAMIC; -- ---------------------------- -- Records of tbl_app_kate_dbs_history @@ -179,7 +911,7 @@ CREATE TABLE `tbl_app_kate_dbs_last` ( `last_update_time` datetime NULL DEFAULT NULL COMMENT '最近更新时间', `last_update_user` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL COMMENT '最近更新用户', PRIMARY KEY (`dbs_id`) USING BTREE -) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_0900_ai_ci ROW_FORMAT = Dynamic; +) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_0900_ai_ci ROW_FORMAT = DYNAMIC; -- ---------------------------- -- Records of tbl_app_kate_dbs_last @@ -208,11 +940,435 @@ CREATE TABLE `tbl_app_kate_orders` ( `user_name` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL COMMENT '操作人员', `finish_time` datetime NULL DEFAULT NULL COMMENT '完成时间', PRIMARY KEY (`order_id`) USING BTREE -) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_0900_ai_ci ROW_FORMAT = Dynamic; +) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_0900_ai_ci ROW_FORMAT = DYNAMIC; -- ---------------------------- -- Records of tbl_app_kate_orders -- ---------------------------- +INSERT INTO `tbl_app_kate_orders` VALUES ('1', '1', '123456789/CS', '1', '1', 'DM05', '1', '1', 'box01', 'ASRS-0001', 2.0000, 'PC', 0, 2.0000, 0.0000, 'WMS', '2024-08-01 14:21:48'); +INSERT INTO `tbl_app_kate_orders` VALUES ('2', '2', '123456789/CS', '1', '1', 'DM05', '1', '1', 'box02', 'ASRS-0001', 2.0000, 'PC', 0, 2.0000, 0.0000, 'WMS', '2024-08-01 14:21:48'); +INSERT INTO `tbl_app_kate_orders` VALUES ('3', '2', '222222222/CS', '1', '1', 'DM05', '1', '1', 'box03', 'ASRS-0001', 2.0000, 'PC', 0, 2.0000, 0.0000, 'WMS', '2024-08-01 14:21:48'); +INSERT INTO `tbl_app_kate_orders` VALUES ('4', '2', '333333333/CS', '1', '1', 'DM05', '1', '1', 'box04', 'ASRS-0001', 2.0000, 'PC', 0, 2.0000, 0.0000, 'WMS', '2024-08-02 10:07:11'); +INSERT INTO `tbl_app_kate_orders` VALUES ('5', '2', '222222222/CS', '1', '1', 'DM05', '1', '1', 'box04', 'ASRS-0001', 2.0000, 'PC', 0, 2.0000, 0.0000, 'WMS', '2024-08-02 10:07:11'); +INSERT INTO `tbl_app_kate_orders` VALUES ('6', '2', '444444444/CS', '1', '1', 'DM05', '1', '1', 'box05', 'ASRS-0001', 2.0000, 'PC', 0, 2.0000, 0.0000, 'WMS', '2024-08-01 14:21:48'); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106566911723000016691', '115000232038', '2460616', '0120', 'SPIDER AS-FAN', 'DM01', NULL, 'REL', 'SASW09MIB', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106566921723000016692', '115000232039', '2460616', '0120', 'SPIDER AS-FAN', 'DM01', NULL, 'REL', 'SASW09MIB', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106566941723000016694', '115000232360', '2460616', '0120', 'SPIDER AS-FAN', 'DM01', NULL, 'REL', 'SASW09MIB', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106566951723000016695', '115000232361', '2460616', '0120', 'SPIDER AS-FAN', 'DM01', NULL, 'REL', 'SASW09MIB', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106566961723000016696', '115000232034', '2626813', '0150', 'SPIDER AS-FAN', 'DM01', NULL, 'REL', 'SASW09MIB', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106566971723000016697', '115000232035', '2626813', '0150', 'SPIDER AS-FAN', 'DM01', NULL, 'REL', 'SASW09MIB', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106566981723000016698', '115000232036', '2626813', '0150', 'SPIDER AS-FAN', 'DM01', NULL, 'REL', 'SASW09MIB', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106566991723000016699', '115000232037', '2626813', '0150', 'SPIDER AS-FAN', 'DM01', NULL, 'REL', 'SASW09MIB', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106567001723000016700', '115000232361', '2965662', '1570', 'VALVE GP-NEUT -B', 'DM01', NULL, 'REL', 'SWLSOHL01', 'SETTING F', 2.0000, 'PC', 0, 2.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106567011723000016701', '115000232033', '3077313', '0170', 'FAN AS', 'DM01', NULL, 'REL', 'SASW09MIB', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106567021723000016702', '115000232037', '3466403', '0100', 'HOSE AS.', 'DM01', NULL, 'REL', 'SASW03VAA', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106567031723000016703', '115000232034', '3507075', '0010', 'MOTOR GP-PS-F-47', 'DM01', NULL, 'REL', 'SWLSOHL01', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106567041723000016704', '115000232035', '3507075', '0010', 'MOTOR GP-PS-F-47', 'DM01', NULL, 'REL', 'SWLSOHL01', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106567051723000016705', '115000232036', '3507075', '0010', 'MOTOR GP-PS-F-47', 'DM01', NULL, 'REL', 'SWLSOHL01', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106567061723000016706', '115000232037', '3507075', '0010', 'MOTOR GP-PS-F-47', 'DM01', NULL, 'REL', 'SWLSOHL01', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106567071723000016707', '115000232033', '3559981', '0620', 'ACCUMULATOR GP-F', 'DM01', NULL, 'REL', 'SASW03VAA', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106567081723000016708', '115000232033', '3559981', '0760', 'ACCUMULATOR GP-F', 'DM01', NULL, 'REL', 'SASW15MIA', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106567091723000016709', '115000232034', '3559981', '0300', 'ACCUMULATOR GP-F', 'DM01', NULL, 'REL', 'SASW03VAA', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106567101723000016710', '115000232034', '3559981', '0810', 'ACCUMULATOR GP-F', 'DM01', NULL, 'REL', 'SASW15MIA', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106567111723000016711', '115000232035', '3559981', '0300', 'ACCUMULATOR GP-F', 'DM01', NULL, 'REL', 'SASW03VAA', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106567151723000016715', '115000232035', '3559981', '0810', 'ACCUMULATOR GP-F', 'DM01', NULL, 'REL', 'SASW15MIA', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106567171723000016717', '115000232036', '3559981', '0300', 'ACCUMULATOR GP-F', 'DM01', NULL, 'REL', 'SASW03VAA', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106567191723000016719', '115000232036', '3559981', '0810', 'ACCUMULATOR GP-F', 'DM01', NULL, 'REL', 'SASW15MIA', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106567201723000016720', '115000232037', '3559981', '0300', 'ACCUMULATOR GP-F', 'DM01', NULL, 'REL', 'SASW03VAA', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106567211723000016721', '115000232037', '3559981', '0810', 'ACCUMULATOR GP-F', 'DM01', NULL, 'REL', 'SASW15MIA', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106567221723000016722', '115000232038', '3559981', '0620', 'ACCUMULATOR GP-F', 'DM01', NULL, 'REL', 'SASW03VAA', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106567241723000016724', '115000232038', '3559981', '0760', 'ACCUMULATOR GP-F', 'DM01', NULL, 'REL', 'SASW15MIA', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106567271723000016727', '115000232039', '3559981', '0620', 'ACCUMULATOR GP-F', 'DM01', NULL, 'REL', 'SASW03VAA', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106567301723000016730', '115000232039', '3559981', '0760', 'ACCUMULATOR GP-F', 'DM01', NULL, 'REL', 'SASW15MIA', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106567321723000016732', '115000232360', '3559981', '0620', 'ACCUMULATOR GP-F', 'DM01', NULL, 'REL', 'SASW03VAA', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106567331723000016733', '115000232360', '3559981', '0760', 'ACCUMULATOR GP-F', 'DM01', NULL, 'REL', 'SASW15MIA', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106567341723000016734', '115000232361', '3559981', '0620', 'ACCUMULATOR GP-F', 'DM01', NULL, 'REL', 'SASW03VAA', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106567351723000016735', '115000232039', '3615941', '0130', 'VALVE GP-MTG&', 'DM01', NULL, 'REL', 'SWLSOHL01', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106567361723000016736', '115000232034', '3649893', '0110', 'ELBOW', 'DM01', NULL, 'REL', 'SASW09MID', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106567371723000016737', '115000232035', '3649893', '0110', 'ELBOW', 'DM01', NULL, 'REL', 'SASW09MID', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106567381723000016738', '115000232036', '3649893', '0110', 'ELBOW', 'DM01', NULL, 'REL', 'SASW09MID', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106567391723000016739', '115000232037', '3649893', '0110', 'ELBOW', 'DM01', NULL, 'REL', 'SASW09MID', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106567401723000016740', '115000232033', '3650077', '0100', 'SUPPORT', 'DM01', NULL, 'REL', 'SAMW03ETA', 'SETTING F', 2.0000, 'PC', 0, 2.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106567411723000016741', '115000232038', '3650077', '0100', 'SUPPORT', 'DM01', NULL, 'REL', 'SAMW03ETA', 'SETTING F', 2.0000, 'PC', 0, 2.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106567421723000016742', '115000232039', '3650077', '0100', 'SUPPORT', 'DM01', NULL, 'REL', 'SAMW03ETA', 'SETTING F', 2.0000, 'PC', 0, 2.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106567431723000016743', '115000232360', '3650077', '0100', 'SUPPORT', 'DM01', NULL, 'REL', 'SAMW03ETA', 'SETTING F', 2.0000, 'PC', 0, 2.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106567441723000016744', '115000232361', '3650077', '0100', 'SUPPORT', 'DM01', NULL, 'REL', 'SAMW03ETA', 'SETTING F', 2.0000, 'PC', 0, 2.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106567471723000016747', '115000232034', '3650267', '0150', 'FILLER AS-OIL', 'DM01', NULL, 'REL', 'SASW09MID', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106567481723000016748', '115000232035', '3650267', '0150', 'FILLER AS-OIL', 'DM01', NULL, 'REL', 'SASW09MID', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106567491723000016749', '115000232036', '3650267', '0150', 'FILLER AS-OIL', 'DM01', NULL, 'REL', 'SASW09MID', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106567501723000016750', '115000232037', '3650267', '0150', 'FILLER AS-OIL', 'DM01', NULL, 'REL', 'SASW09MID', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106567511723000016751', '115000232034', '3650290', '0090', 'MOUNT AS', 'DM01', NULL, 'REL', 'SAMW03ETA', 'SETTING F', 2.0000, 'PC', 0, 2.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106567521723000016752', '115000232035', '3650290', '0090', 'MOUNT AS', 'DM01', NULL, 'REL', 'SAMW03ETA', 'SETTING F', 2.0000, 'PC', 0, 2.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106567541723000016754', '115000232036', '3650290', '0090', 'MOUNT AS', 'DM01', NULL, 'REL', 'SAMW03ETA', 'SETTING F', 2.0000, 'PC', 0, 2.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106567581723000016758', '115000232037', '3650290', '0090', 'MOUNT AS', 'DM01', NULL, 'REL', 'SAMW03ETA', 'SETTING F', 2.0000, 'PC', 0, 2.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106567591723000016759', '115000232038', '3714745', '0150', 'VALVE GP-SOL -A', 'DM01', NULL, 'REL', 'SWLSOHL01', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106567601723000016760', '115000232039', '3714745', '0150', 'VALVE GP-SOL -A', 'DM01', NULL, 'REL', 'SWLSOHL01', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106567621723000016762', '115000232033', '3744555', '0010', 'JOINT GP-SLIP', 'DM01', NULL, 'REL', 'SAMW03ETA', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106567641723000016764', '115000232038', '3744555', '0010', 'JOINT GP-SLIP', 'DM01', NULL, 'REL', 'SAMW03ETA', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106567651723000016765', '115000232039', '3744555', '0010', 'JOINT GP-SLIP', 'DM01', NULL, 'REL', 'SAMW03ETA', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106567661723000016766', '115000232360', '3744555', '0010', 'JOINT GP-SLIP', 'DM01', NULL, 'REL', 'SAMW03ETA', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106567671723000016767', '115000232361', '3744555', '0010', 'JOINT GP-SLIP', 'DM01', NULL, 'REL', 'SAMW03ETA', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106567681723000016768', '115000232033', '3805223', '0040', 'HANDLE-GRAB', 'DM01', NULL, 'REL', 'SASW09MID', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106567701723000016770', '115000232034', '3805223', '0040', 'HANDLE-GRAB', 'DM01', NULL, 'REL', 'SASW09MID', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106567711723000016771', '115000232035', '3805223', '0040', 'HANDLE-GRAB', 'DM01', NULL, 'REL', 'SASW09MID', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106567721723000016772', '115000232036', '3805223', '0040', 'HANDLE-GRAB', 'DM01', NULL, 'REL', 'SASW09MID', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106567731723000016773', '115000232037', '3805223', '0040', 'HANDLE-GRAB', 'DM01', NULL, 'REL', 'SASW09MID', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106567741723000016774', '115000232038', '3805223', '0040', 'HANDLE-GRAB', 'DM01', NULL, 'REL', 'SASW09MID', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106567751723000016775', '115000232039', '3805223', '0040', 'HANDLE-GRAB', 'DM01', NULL, 'REL', 'SASW09MID', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106567761723000016776', '115000232360', '3805223', '0040', 'HANDLE-GRAB', 'DM01', NULL, 'REL', 'SASW09MID', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106567791723000016779', '115000232361', '3805223', '0040', 'HANDLE-GRAB', 'DM01', NULL, 'REL', 'SASW09MID', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106567801723000016780', '115000232033', '3896081', '0220', 'PMP&MTG GP-AIR', 'DM01', NULL, 'REL', 'SWLSOHL01', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106567811723000016781', '115000232034', '3904797', '0070', 'JOINT GP-SLIP', 'DM01', NULL, 'REL', 'SAMW03ETA', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106567821723000016782', '115000232035', '3904797', '0070', 'JOINT GP-SLIP', 'DM01', NULL, 'REL', 'SAMW03ETA', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106567841723000016784', '115000232036', '3904797', '0070', 'JOINT GP-SLIP', 'DM01', NULL, 'REL', 'SAMW03ETA', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106567861723000016786', '115000232037', '3904797', '0070', 'JOINT GP-SLIP', 'DM01', NULL, 'REL', 'SAMW03ETA', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106567871723000016787', '115000232033', '3930755', '0520', 'FILTER GP-OIL -D', 'DM01', NULL, 'REL', 'SASW15MIA', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106567881723000016788', '115000232038', '3930755', '0520', 'FILTER GP-OIL -D', 'DM01', NULL, 'REL', 'SASW15MIA', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106567911723000016791', '115000232039', '3930755', '0520', 'FILTER GP-OIL -D', 'DM01', NULL, 'REL', 'SASW15MIA', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106567931723000016793', '115000232360', '3930755', '0520', 'FILTER GP-OIL -D', 'DM01', NULL, 'REL', 'SASW15MIA', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106567951723000016795', '115000232361', '3930755', '0520', 'FILTER GP-OIL -D', 'DM01', NULL, 'REL', 'SASW15MIA', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106567961723000016796', '115000232033', '3969028', '0840', 'VALVE GP-CHECK', 'DM01', NULL, 'REL', 'SWLSOHL01', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106567971723000016797', '115000232034', '3969028', '0870', 'VALVE GP-CHECK', 'DM01', NULL, 'REL', 'SWLSOHL01', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106568001723000016800', '115000232035', '3969028', '0870', 'VALVE GP-CHECK', 'DM01', NULL, 'REL', 'SWLSOHL01', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106568011723000016801', '115000232036', '3969028', '0870', 'VALVE GP-CHECK', 'DM01', NULL, 'REL', 'SWLSOHL01', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106568021723000016802', '115000232037', '3969028', '0870', 'VALVE GP-CHECK', 'DM01', NULL, 'REL', 'SWLSOHL01', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106568051723000016805', '115000232038', '3969028', '0840', 'VALVE GP-CHECK', 'DM01', NULL, 'REL', 'SWLSOHL01', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106568061723000016806', '115000232039', '3969028', '0840', 'VALVE GP-CHECK', 'DM01', NULL, 'REL', 'SWLSOHL01', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106568071723000016807', '115000232360', '3969028', '0840', 'VALVE GP-CHECK', 'DM01', NULL, 'REL', 'SWLSOHL01', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106568081723000016808', '115000232361', '3969028', '1590', 'VALVE GP-CHECK', 'DM01', NULL, 'REL', 'SWLSOHL01', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106568091723000016809', '115000232033', '4320095', '0130', 'COVER AS', 'DM01', NULL, 'REL', 'SASW09MIA', 'SETTING F', 2.0000, 'PC', 0, 2.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106568101723000016810', '115000232033', '4363444', '0520', 'FILTER GP-OIL-D', 'DM01', NULL, 'REL', 'SASW15MIA', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106568111723000016811', '115000232034', '4363444', '0550', 'FILTER GP-OIL-D', 'DM01', NULL, 'REL', 'SASW15MIA', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106568131723000016813', '115000232035', '4363444', '0550', 'FILTER GP-OIL-D', 'DM01', NULL, 'REL', 'SASW15MIA', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106568141723000016814', '115000232036', '4363444', '0550', 'FILTER GP-OIL-D', 'DM01', NULL, 'REL', 'SASW15MIA', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106568161723000016816', '115000232037', '4363444', '0550', 'FILTER GP-OIL-D', 'DM01', NULL, 'REL', 'SASW15MIA', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106568181723000016818', '115000232038', '4363444', '0520', 'FILTER GP-OIL-D', 'DM01', NULL, 'REL', 'SASW15MIA', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106568191723000016819', '115000232039', '4363444', '0520', 'FILTER GP-OIL-D', 'DM01', NULL, 'REL', 'SASW15MIA', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106568201723000016820', '115000232360', '4363444', '0520', 'FILTER GP-OIL-D', 'DM01', NULL, 'REL', 'SASW15MIA', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106568221723000016822', '115000232361', '4363444', '0520', 'FILTER GP-OIL-D', 'DM01', NULL, 'REL', 'SASW15MIA', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106568231723000016823', '115000232034', '4368033', '0030', 'PUMP GP-FUEL PRM', 'DM01', NULL, 'REL', 'SWLSOHL01', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106568241723000016824', '115000232035', '4368033', '0030', 'PUMP GP-FUEL PRM', 'DM01', NULL, 'REL', 'SWLSOHL01', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106568251723000016825', '115000232036', '4368033', '0030', 'PUMP GP-FUEL PRM', 'DM01', NULL, 'REL', 'SWLSOHL01', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106568261723000016826', '115000232037', '4368033', '0030', 'PUMP GP-FUEL PRM', 'DM01', NULL, 'REL', 'SWLSOHL01', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106568271723000016827', '115000232361', '4413485', '1580', 'VALVEGP-STRG', 'DM01', NULL, 'REL', 'SWLSOHL01', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106568281723000016828', '115000232034', '4448048', '0010', 'VE GP-CONT -A', 'DM01', NULL, 'REL', 'SASW03VAA', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106568301723000016830', '115000232035', '4448048', '0030', 'VE GP-CONT -A', 'DM01', NULL, 'REL', 'SASW03VAA', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106568311723000016831', '115000232036', '4448048', '0010', 'VE GP-CONT -A', 'DM01', NULL, 'REL', 'SASW03VAA', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106568331723000016833', '115000232037', '4448048', '0030', 'VE GP-CONT -A', 'DM01', NULL, 'REL', 'SASW03VAA', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106568341723000016834', '115000232034', '4528063', '0250', 'TUBE AS', 'DM01', NULL, 'REL', 'SASW09MID', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106568371723000016837', '115000232035', '4528063', '0250', 'TUBE AS', 'DM01', NULL, 'REL', 'SASW09MID', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106568381723000016838', '115000232036', '4528063', '0250', 'TUBE AS', 'DM01', NULL, 'REL', 'SASW09MID', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106568391723000016839', '115000232037', '4528063', '0250', 'TUBE AS', 'DM01', NULL, 'REL', 'SASW09MID', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106568401723000016840', '115000232034', '4894255', '0210', 'GUARD AS -FAN', 'DM01', NULL, 'REL', 'SASW09MIB', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106568421723000016842', '115000232035', '4894255', '0210', 'GUARD AS -FAN', 'DM01', NULL, 'REL', 'SASW09MIB', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106568431723000016843', '115000232036', '4894255', '0210', 'GUARD AS -FAN', 'DM01', NULL, 'REL', 'SASW09MIB', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106568461723000016846', '115000232037', '4894255', '0210', 'GUARD AS -FAN', 'DM01', NULL, 'REL', 'SASW09MIB', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106568471723000016847', '115000232033', '5013711', '0910', 'VALVE GP-STRG', 'DM01', NULL, 'REL', 'SWLSOHL01', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106568481723000016848', '115000232038', '5013711', '0910', 'VALVE GP-STRG', 'DM01', NULL, 'REL', 'SWLSOHL01', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106568511723000016851', '115000232039', '5013711', '0910', 'VALVE GP-STRG', 'DM01', NULL, 'REL', 'SWLSOHL01', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106568521723000016852', '115000232360', '5013711', '0910', 'VALVE GP-STRG', 'DM01', NULL, 'REL', 'SWLSOHL01', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106568541723000016854', '115000232034', '5013712', '0990', 'VALVE GP-STRG', 'DM01', NULL, 'REL', 'SWLSOHL01', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106568551723000016855', '115000232035', '5013712', '0990', 'VALVE GP-STRG', 'DM01', NULL, 'REL', 'SWLSOHL01', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106568561723000016856', '115000232036', '5013712', '0990', 'VALVE GP-STRG', 'DM01', NULL, 'REL', 'SWLSOHL01', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106568571723000016857', '115000232037', '5013712', '0990', 'VALVE GP-STRG', 'DM01', NULL, 'REL', 'SWLSOHL01', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106568601723000016860', '115000232034', '5076046', '0220', 'CABLE AS-POWER', 'DM01', NULL, 'REL', 'SASW01EFA', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106568611723000016861', '115000232035', '5076046', '0220', 'CABLE AS-POWER', 'DM01', NULL, 'REL', 'SASW01EFA', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106568621723000016862', '115000232036', '5076046', '0220', 'CABLE AS-POWER', 'DM01', NULL, 'REL', 'SASW01EFA', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106568631723000016863', '115000232037', '5076046', '0220', 'CABLE AS-POWER', 'DM01', NULL, 'REL', 'SASW01EFA', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106568651723000016865', '115000232033', '5133696', '0510', 'HOSE', 'DM01', NULL, 'REL', 'SASW09MID', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106568681723000016868', '115000232038', '5133696', '0510', 'HOSE', 'DM01', NULL, 'REL', 'SASW09MID', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106568691723000016869', '115000232039', '5133696', '0510', 'HOSE', 'DM01', NULL, 'REL', 'SASW09MID', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106568701723000016870', '115000232360', '5133696', '0510', 'HOSE', 'DM01', NULL, 'REL', 'SASW09MID', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106568711723000016871', '115000232361', '5133696', '0510', 'HOSE', 'DM01', NULL, 'REL', 'SASW09MID', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106568731723000016873', '115000232034', '5167089', '0160', 'HOSE-ELBOW', 'DM01', NULL, 'REL', 'SASW09MID', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106568761723000016876', '115000232035', '5167089', '0160', 'HOSE-ELBOW', 'DM01', NULL, 'REL', 'SASW09MID', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106568771723000016877', '115000232036', '5167089', '0160', 'HOSE-ELBOW', 'DM01', NULL, 'REL', 'SASW09MID', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106568781723000016878', '115000232037', '5167089', '0160', 'HOSE-ELBOW', 'DM01', NULL, 'REL', 'SASW09MID', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106568791723000016879', '115000232034', '5208909', '0700', 'TUBE AS', 'DM01', NULL, 'REL', 'SASW09MID', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106568801723000016880', '115000232035', '5208909', '0700', 'TUBE AS', 'DM01', NULL, 'REL', 'SASW09MID', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106568831723000016883', '115000232036', '5208909', '0700', 'TUBE AS', 'DM01', NULL, 'REL', 'SASW09MID', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106568841723000016884', '115000232037', '5208909', '0700', 'TUBE AS', 'DM01', NULL, 'REL', 'SASW09MID', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106568851723000016885', '115000232033', '5209263', '0130', 'PLATE AS', 'DM01', NULL, 'REL', 'SASW09MID', 'SETTING F', 2.0000, 'PC', 0, 2.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106568871723000016887', '115000232038', '5209263', '0130', 'PLATE AS', 'DM01', NULL, 'REL', 'SASW09MID', 'SETTING F', 2.0000, 'PC', 0, 2.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106568881723000016888', '115000232039', '5209263', '0130', 'PLATE AS', 'DM01', NULL, 'REL', 'SASW09MID', 'SETTING F', 2.0000, 'PC', 0, 2.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106568891723000016889', '115000232360', '5209263', '0130', 'PLATE AS', 'DM01', NULL, 'REL', 'SASW09MID', 'SETTING F', 2.0000, 'PC', 0, 2.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106568901723000016890', '115000232361', '5209263', '0130', 'PLATE AS', 'DM01', NULL, 'REL', 'SASW09MID', 'SETTING F', 2.0000, 'PC', 0, 2.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106568911723000016891', '115000232034', '5244146', '0110', 'BRACKET AS-RH', 'DM01', NULL, 'REL', 'SASW09MIA', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106568921723000016892', '115000232035', '5244146', '0110', 'BRACKET AS-RH', 'DM01', NULL, 'REL', 'SASW09MIA', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106568931723000016893', '115000232036', '5244146', '0110', 'BRACKET AS-RH', 'DM01', NULL, 'REL', 'SASW09MIA', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106568941723000016894', '115000232037', '5244146', '0110', 'BRACKET AS-RH', 'DM01', NULL, 'REL', 'SASW09MIA', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106568951723000016895', '115000232034', '5244147', '0120', 'BRACKET AS-LH', 'DM01', NULL, 'REL', 'SASW09MIA', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106568981723000016898', '115000232035', '5244147', '0120', 'BRACKET AS-LH', 'DM01', NULL, 'REL', 'SASW09MIA', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106569011723000016901', '115000232036', '5244147', '0120', 'BRACKET AS-LH', 'DM01', NULL, 'REL', 'SASW09MIA', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106569041723000016904', '115000232037', '5244147', '0120', 'BRACKET AS-LH', 'DM01', NULL, 'REL', 'SASW09MIA', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106569051723000016905', '115000232034', '5244148', '0040', 'SHIELD AS', 'DM01', NULL, 'REL', 'SASW09MIB', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106569071723000016907', '115000232035', '5244148', '0040', 'SHIELD AS', 'DM01', NULL, 'REL', 'SASW09MIB', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106569101723000016910', '115000232036', '5244148', '0040', 'SHIELD AS', 'DM01', NULL, 'REL', 'SASW09MIB', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106569111723000016911', '115000232037', '5244148', '0040', 'SHIELD AS', 'DM01', NULL, 'REL', 'SASW09MIB', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106569121723000016912', '115000232034', '5249118', '0140', 'SUPPORT AS', 'DM01', NULL, 'REL', 'SASW09MIA', 'SETTING F', 2.0000, 'PC', 0, 2.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106569141723000016914', '115000232035', '5249118', '0140', 'SUPPORT AS', 'DM01', NULL, 'REL', 'SASW09MIA', 'SETTING F', 2.0000, 'PC', 0, 2.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106569151723000016915', '115000232036', '5249118', '0140', 'SUPPORT AS', 'DM01', NULL, 'REL', 'SASW09MIA', 'SETTING F', 2.0000, 'PC', 0, 2.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106569161723000016916', '115000232037', '5249118', '0140', 'SUPPORT AS', 'DM01', NULL, 'REL', 'SASW09MIA', 'SETTING F', 2.0000, 'PC', 0, 2.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106569171723000016917', '115000232034', '5287509', '0300', 'HOSE', 'DM01', NULL, 'REL', 'SASW09MID', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106569191723000016919', '115000232035', '5287509', '0300', 'HOSE', 'DM01', NULL, 'REL', 'SASW09MID', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106569201723000016920', '115000232036', '5287509', '0300', 'HOSE', 'DM01', NULL, 'REL', 'SASW09MID', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106569221723000016922', '115000232037', '5287509', '0300', 'HOSE', 'DM01', NULL, 'REL', 'SASW09MID', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106569231723000016923', '115000232034', '5287516', '0170', 'BRACKET AS', 'DM01', NULL, 'REL', 'SASW09MIA', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106569251723000016925', '115000232035', '5287516', '0170', 'BRACKET AS', 'DM01', NULL, 'REL', 'SASW09MIA', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106569271723000016927', '115000232036', '5287516', '0170', 'BRACKET AS', 'DM01', NULL, 'REL', 'SASW09MIA', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106569281723000016928', '115000232037', '5287516', '0170', 'BRACKET AS', 'DM01', NULL, 'REL', 'SASW09MIA', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106569291723000016929', '115000232033', '5366378', '0080', 'HARNESS AS-RIGHT', 'DM01', NULL, 'REL', 'SASW15MIA', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106569301723000016930', '115000232034', '5366378', '0080', 'HARNESS AS-RIGHT', 'DM01', NULL, 'REL', 'SASW15MIA', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106569311723000016931', '115000232035', '5366378', '0080', 'HARNESS AS-RIGHT', 'DM01', NULL, 'REL', 'SASW15MIA', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106569321723000016932', '115000232036', '5366378', '0080', 'HARNESS AS-RIGHT', 'DM01', NULL, 'REL', 'SASW15MIA', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106569341723000016934', '115000232037', '5366378', '0080', 'HARNESS AS-RIGHT', 'DM01', NULL, 'REL', 'SASW15MIA', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106569351723000016935', '115000232038', '5366378', '0080', 'HARNESS AS-RIGHT', 'DM01', NULL, 'REL', 'SASW15MIA', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106569371723000016937', '115000232039', '5366378', '0080', 'HARNESS AS-RIGHT', 'DM01', NULL, 'REL', 'SASW15MIA', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106569391723000016939', '115000232360', '5366378', '0080', 'HARNESS AS-RIGHT', 'DM01', NULL, 'REL', 'SASW15MIA', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106569401723000016940', '115000232361', '5366378', '0080', 'HARNESS AS-RIGHT', 'DM01', NULL, 'REL', 'SASW15MIA', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106569421723000016942', '115000232033', '5386371', '0010', 'VALVE GP-CONTROL', 'DM01', NULL, 'REL', 'SASW03VAA', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106569431723000016943', '115000232038', '5386371', '0020', 'VALVE GP-CONTROL', 'DM01', NULL, 'REL', 'SASW03VAA', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106569441723000016944', '115000232039', '5386371', '0020', 'VALVE GP-CONTROL', 'DM01', NULL, 'REL', 'SASW03VAA', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106569451723000016945', '115000232360', '5386371', '0030', 'VALVE GP-CONTROL', 'DM01', NULL, 'REL', 'SASW03VAA', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106569461723000016946', '115000232361', '5386371', '0030', 'VALVE GP-CONTROL', 'DM01', NULL, 'REL', 'SASW03VAA', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106569471723000016947', '115000232033', '5390117', '0190', 'SENSOR AS-NOX', 'DM01', NULL, 'REL', 'SASW09MIB', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106569491723000016949', '115000232034', '5390117', '0110', 'SENSOR AS-NOX', 'DM01', NULL, 'REL', 'SASW09MIB', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106569511723000016951', '115000232035', '5390117', '0110', 'SENSOR AS-NOX', 'DM01', NULL, 'REL', 'SASW09MIB', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106569521723000016952', '115000232036', '5390117', '0110', 'SENSOR AS-NOX', 'DM01', NULL, 'REL', 'SASW09MIB', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106569531723000016953', '115000232037', '5390117', '0110', 'SENSOR AS-NOX', 'DM01', NULL, 'REL', 'SASW09MIB', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106569541723000016954', '115000232038', '5390117', '0190', 'SENSOR AS-NOX', 'DM01', NULL, 'REL', 'SASW09MIB', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106569551723000016955', '115000232039', '5390117', '0190', 'SENSOR AS-NOX', 'DM01', NULL, 'REL', 'SASW09MIB', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106569561723000016956', '115000232360', '5390117', '0190', 'SENSOR AS-NOX', 'DM01', NULL, 'REL', 'SASW09MIB', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106569571723000016957', '115000232361', '5390117', '0190', 'SENSOR AS-NOX', 'DM01', NULL, 'REL', 'SASW09MIB', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106569581723000016958', '115000232037', '5464962', '0140', 'PLATE AS', 'DM01', NULL, 'REL', 'SASW03VAA', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106569601723000016960', '115000232033', '5479371', '0840', 'PLATE AS', 'DM01', NULL, 'REL', 'SASW03VAA', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106569611723000016961', '115000232038', '5479371', '0840', 'PLATE AS', 'DM01', NULL, 'REL', 'SASW03VAA', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106569621723000016962', '115000232039', '5479371', '0840', 'PLATE AS', 'DM01', NULL, 'REL', 'SASW03VAA', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106569631723000016963', '115000232360', '5479371', '0840', 'PLATE AS', 'DM01', NULL, 'REL', 'SASW03VAA', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106569641723000016964', '115000232361', '5479371', '0840', 'PLATE AS', 'DM01', NULL, 'REL', 'SASW03VAA', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106569651723000016965', '115000232038', '5511596', '0020', 'HARNESS AS-VALVE', 'DM01', NULL, 'REL', 'SASW03VAA', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106569661723000016966', '115000232039', '5511596', '0020', 'HARNESS AS-VALVE', 'DM01', NULL, 'REL', 'SASW03VAA', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106569671723000016967', '115000232033', '5525377', '0280', 'BRACKET AS', 'DM01', NULL, 'REL', 'SASW15MIA', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106569681723000016968', '115000232038', '5525377', '0280', 'BRACKET AS', 'DM01', NULL, 'REL', 'SASW15MIA', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106569691723000016969', '115000232039', '5525377', '0280', 'BRACKET AS', 'DM01', NULL, 'REL', 'SASW15MIA', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106569701723000016970', '115000232360', '5525377', '0280', 'BRACKET AS', 'DM01', NULL, 'REL', 'SASW15MIA', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106569721723000016972', '115000232361', '5525377', '0280', 'BRACKET AS', 'DM01', NULL, 'REL', 'SASW15MIA', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106569731723000016973', '115000232034', '5525408', '0830', 'PLATE', 'DM01', NULL, 'REL', 'SASW15MIA', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106569741723000016974', '115000232035', '5525408', '0830', 'PLATE', 'DM01', NULL, 'REL', 'SASW15MIA', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106569751723000016975', '115000232036', '5525408', '0830', 'PLATE', 'DM01', NULL, 'REL', 'SASW15MIA', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106569761723000016976', '115000232037', '5525408', '0830', 'PLATE', 'DM01', NULL, 'REL', 'SASW15MIA', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106569781723000016978', '115000232034', '5525419', '0220', 'BRACKET', 'DM01', NULL, 'REL', 'SASW09MIA', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106569801723000016980', '115000232035', '5525419', '0220', 'BRACKET', 'DM01', NULL, 'REL', 'SASW09MIA', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106569831723000016983', '115000232036', '5525419', '0220', 'BRACKET', 'DM01', NULL, 'REL', 'SASW09MIA', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106569841723000016984', '115000232037', '5525419', '0220', 'BRACKET', 'DM01', NULL, 'REL', 'SASW09MIA', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106569851723000016985', '115000232034', '5582147', '0040', 'PUMP GP-ELEC DR', 'DM01', NULL, 'REL', 'SWLSOHL01', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106569861723000016986', '115000232035', '5582147', '0040', 'PUMP GP-ELEC DR', 'DM01', NULL, 'REL', 'SWLSOHL01', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106569871723000016987', '115000232036', '5582147', '0040', 'PUMP GP-ELEC DR', 'DM01', NULL, 'REL', 'SWLSOHL01', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106569891723000016989', '115000232037', '5582147', '0040', 'PUMP GP-ELEC DR', 'DM01', NULL, 'REL', 'SWLSOHL01', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106569901723000016990', '115000232033', '5586421', '0060', 'SHIELD AS', 'DM01', NULL, 'REL', 'SASW09MIB', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106569911723000016991', '115000232038', '5586421', '0060', 'SHIELD AS', 'DM01', NULL, 'REL', 'SASW09MIB', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106569921723000016992', '115000232039', '5586421', '0060', 'SHIELD AS', 'DM01', NULL, 'REL', 'SASW09MIB', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106569931723000016993', '115000232360', '5586421', '0060', 'SHIELD AS', 'DM01', NULL, 'REL', 'SASW09MIB', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106569961723000016996', '115000232361', '5586421', '0060', 'SHIELD AS', 'DM01', NULL, 'REL', 'SASW09MIB', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106569971723000016997', '115000232033', '5595616', '0180', 'HARNESS AS-FRONT', 'DM01', NULL, 'REL', 'SASW03VAA', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106569981723000016998', '115000232038', '5595616', '0180', 'HARNESS AS-FRONT', 'DM01', NULL, 'REL', 'SASW03VAA', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106569991723000016999', '115000232039', '5595616', '0180', 'HARNESS AS-FRONT', 'DM01', NULL, 'REL', 'SASW03VAA', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106570001723000017000', '115000232360', '5595616', '0180', 'HARNESS AS-FRONT', 'DM01', NULL, 'REL', 'SASW03VAA', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106570011723000017001', '115000232361', '5595616', '0180', 'HARNESS AS-FRONT', 'DM01', NULL, 'REL', 'SASW03VAA', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106570021723000017002', '115000232033', '5596443', '0160', 'BRACKET AS', 'DM01', NULL, 'REL', 'SASW09MID', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106570041723000017004', '115000232038', '5596443', '0160', 'BRACKET AS', 'DM01', NULL, 'REL', 'SASW09MID', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106570051723000017005', '115000232039', '5596443', '0160', 'BRACKET AS', 'DM01', NULL, 'REL', 'SASW09MID', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106570061723000017006', '115000232360', '5596443', '0160', 'BRACKET AS', 'DM01', NULL, 'REL', 'SASW09MID', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106570071723000017007', '115000232361', '5596443', '0160', 'BRACKET AS', 'DM01', NULL, 'REL', 'SASW09MID', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106570081723000017008', '115000232033', '5602301', '0170', 'BRACKET AS', 'DM01', NULL, 'REL', 'SASW09MID', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106570091723000017009', '115000232038', '5602301', '0170', 'BRACKET AS', 'DM01', NULL, 'REL', 'SASW09MID', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106570101723000017010', '115000232039', '5602301', '0170', 'BRACKET AS', 'DM01', NULL, 'REL', 'SASW09MID', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106570131723000017013', '115000232360', '5602301', '0170', 'BRACKET AS', 'DM01', NULL, 'REL', 'SASW09MID', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106570141723000017014', '115000232361', '5602301', '0170', 'BRACKET AS', 'DM01', NULL, 'REL', 'SASW09MID', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106570151723000017015', '115000232033', '5610969', '0070', 'BAFFLE', 'DM01', NULL, 'REL', 'SASW09MID', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106570161723000017016', '115000232038', '5610969', '0070', 'BAFFLE', 'DM01', NULL, 'REL', 'SASW09MID', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106570171723000017017', '115000232039', '5610969', '0070', 'BAFFLE', 'DM01', NULL, 'REL', 'SASW09MID', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106570181723000017018', '115000232360', '5610969', '0070', 'BAFFLE', 'DM01', NULL, 'REL', 'SASW09MID', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106570211723000017021', '115000232361', '5610969', '0070', 'BAFFLE', 'DM01', NULL, 'REL', 'SASW09MID', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106570221723000017022', '115000232033', '5610983', '0080', 'BAFFLE', 'DM01', NULL, 'REL', 'SASW09MID', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106570231723000017023', '115000232038', '5610983', '0080', 'BAFFLE', 'DM01', NULL, 'REL', 'SASW09MID', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106570251723000017025', '115000232039', '5610983', '0080', 'BAFFLE', 'DM01', NULL, 'REL', 'SASW09MID', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106570281723000017028', '115000232360', '5610983', '0080', 'BAFFLE', 'DM01', NULL, 'REL', 'SASW09MID', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106570291723000017029', '115000232361', '5610983', '0080', 'BAFFLE', 'DM01', NULL, 'REL', 'SASW09MID', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106570301723000017030', '115000232037', '5643213', '0150', 'HOSE AS', 'DM01', NULL, 'REL', 'SASW03VAA', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106570311723000017031', '115000232033', '5646926', '0140', 'GUARD AS-FAN', 'DM01', NULL, 'REL', 'SASW09MIB', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106570331723000017033', '115000232038', '5646926', '0180', 'GUARD AS-FAN', 'DM01', NULL, 'REL', 'SASW09MIB', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106570351723000017035', '115000232039', '5646926', '0180', 'GUARD AS-FAN', 'DM01', NULL, 'REL', 'SASW09MIB', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106570361723000017036', '115000232360', '5646926', '0180', 'GUARD AS-FAN', 'DM01', NULL, 'REL', 'SASW09MIB', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106570371723000017037', '115000232361', '5646926', '0180', 'GUARD AS-FAN', 'DM01', NULL, 'REL', 'SASW09MIB', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106570381723000017038', '115000232038', '5646932', '0190', 'ADAPTER', 'DM01', NULL, 'REL', 'SASW09MID', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106570401723000017040', '115000232039', '5646932', '0190', 'ADAPTER', 'DM01', NULL, 'REL', 'SASW09MID', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106570421723000017042', '115000232360', '5646932', '0190', 'ADAPTER', 'DM01', NULL, 'REL', 'SASW09MID', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106570431723000017043', '115000232361', '5646932', '0190', 'ADAPTER', 'DM01', NULL, 'REL', 'SASW09MID', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106570441723000017044', '115000232033', '5661354', '0040', 'PUMP GP-ELEC DR', 'DM01', NULL, 'REL', 'SWLSOHL01', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106570451723000017045', '115000232038', '5661354', '0040', 'PUMP GP-ELEC DR', 'DM01', NULL, 'REL', 'SWLSOHL01', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106570461723000017046', '115000232039', '5661354', '0040', 'PUMP GP-ELEC DR', 'DM01', NULL, 'REL', 'SWLSOHL01', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106570471723000017047', '115000232360', '5661354', '0040', 'PUMP GP-ELEC DR', 'DM01', NULL, 'REL', 'SWLSOHL01', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106570481723000017048', '115000232361', '5661354', '0040', 'PUMP GP-ELEC DR', 'DM01', NULL, 'REL', 'SWLSOHL01', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106570501723000017050', '115000232038', '5682054', '0210', 'PLATE', 'DM01', NULL, 'REL', 'SASW03VAA', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106570511723000017051', '115000232039', '5682054', '0210', 'PLATE', 'DM01', NULL, 'REL', 'SASW03VAA', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106570521723000017052', '115000232033', '5694673', '0160', 'ADAPTER', 'DM01', NULL, 'REL', 'SASW09MID', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106570531723000017053', '115000232033', '5722701', '0070', 'PLATE', 'DM01', NULL, 'REL', 'SASW01EFA', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106570561723000017056', '115000232038', '5722701', '0070', 'PLATE', 'DM01', NULL, 'REL', 'SASW01EFA', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106570571723000017057', '115000232039', '5722701', '0070', 'PLATE', 'DM01', NULL, 'REL', 'SASW01EFA', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106570581723000017058', '115000232360', '5722701', '0070', 'PLATE', 'DM01', NULL, 'REL', 'SASW01EFA', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106570611723000017061', '115000232361', '5722701', '0070', 'PLATE', 'DM01', NULL, 'REL', 'SASW01EFA', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106570621723000017062', '115000232037', '5744471', '0040', 'HARNESS AS-VALVE', 'DM01', NULL, 'REL', 'SASW03VAA', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106570631723000017063', '115000232033', '5756895', '0110', 'MOTOR GP-GR(BSC)', 'DM01', NULL, 'REL', 'SWLSOHL01', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106570641723000017064', '115000232038', '5756895', '0060', 'MOTOR GP-GR(BSC)', 'DM01', NULL, 'REL', 'SWLSOHL01', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106570651723000017065', '115000232039', '5756895', '0060', 'MOTOR GP-GR(BSC)', 'DM01', NULL, 'REL', 'SWLSOHL01', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106570661723000017066', '115000232360', '5756895', '0060', 'MOTOR GP-GR(BSC)', 'DM01', NULL, 'REL', 'SWLSOHL01', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106570681723000017068', '115000232361', '5756895', '0060', 'MOTOR GP-GR(BSC)', 'DM01', NULL, 'REL', 'SWLSOHL01', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106570691723000017069', '115000232034', '5777650', '0050', 'HARNESS AS-RIGHT', 'DM01', NULL, 'REL', 'SASW01EFA', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106570701723000017070', '115000232035', '5777650', '0050', 'HARNESS AS-RIGHT', 'DM01', NULL, 'REL', 'SASW01EFA', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106570721723000017072', '115000232036', '5777650', '0050', 'HARNESS AS-RIGHT', 'DM01', NULL, 'REL', 'SASW01EFA', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106570731723000017073', '115000232037', '5777650', '0050', 'HARNESS AS-RIGHT', 'DM01', NULL, 'REL', 'SASW01EFA', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106570741723000017074', '115000232034', '5778803', '0550', 'VALVE GP-PRESS', 'DM01', NULL, 'REL', 'SWLSOHL01', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106570771723000017077', '115000232035', '5778803', '0550', 'VALVE GP-PRESS', 'DM01', NULL, 'REL', 'SWLSOHL01', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106570781723000017078', '115000232036', '5778803', '0550', 'VALVE GP-PRESS', 'DM01', NULL, 'REL', 'SWLSOHL01', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106570791723000017079', '115000232037', '5778803', '0550', 'VALVE GP-PRESS', 'DM01', NULL, 'REL', 'SWLSOHL01', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106570801723000017080', '115000232034', '5781458', '0270', 'HOSE AS-DEF', 'DM01', NULL, 'REL', 'SASW09MID', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106570811723000017081', '115000232035', '5781458', '0270', 'HOSE AS-DEF', 'DM01', NULL, 'REL', 'SASW09MID', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106570821723000017082', '115000232036', '5781458', '0270', 'HOSE AS-DEF', 'DM01', NULL, 'REL', 'SASW09MID', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106570831723000017083', '115000232037', '5781458', '0270', 'HOSE AS-DEF', 'DM01', NULL, 'REL', 'SASW09MID', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106570841723000017084', '115000232033', '5781471', '0500', 'HOSE AS-DEF', 'DM01', NULL, 'REL', 'SASW09MIB', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106570851723000017085', '115000232038', '5781471', '0500', 'HOSE AS-DEF', 'DM01', NULL, 'REL', 'SASW09MIB', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106570871723000017087', '115000232039', '5781471', '0500', 'HOSE AS-DEF', 'DM01', NULL, 'REL', 'SASW09MIB', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106570881723000017088', '115000232360', '5781471', '0500', 'HOSE AS-DEF', 'DM01', NULL, 'REL', 'SASW09MIB', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106570891723000017089', '115000232361', '5781471', '0500', 'HOSE AS-DEF', 'DM01', NULL, 'REL', 'SASW09MIB', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106570901723000017090', '115000232034', '5882590', '0480', 'FILTER GP-OIL -H', 'DM01', NULL, 'REL', 'SASW15MIA', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106570921723000017092', '115000232035', '5882590', '0480', 'FILTER GP-OIL -H', 'DM01', NULL, 'REL', 'SASW15MIA', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106570931723000017093', '115000232036', '5882590', '0480', 'FILTER GP-OIL -H', 'DM01', NULL, 'REL', 'SASW15MIA', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106570941723000017094', '115000232037', '5882590', '0480', 'FILTER GP-OIL -H', 'DM01', NULL, 'REL', 'SASW15MIA', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106570951723000017095', '115000232034', '5928517', '0380', 'BRACKET AS-LIGHT', 'DM01', NULL, 'REL', 'SASW09MIA', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106570961723000017096', '115000232035', '5928517', '0380', 'BRACKET AS-LIGHT', 'DM01', NULL, 'REL', 'SASW09MIA', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106570971723000017097', '115000232036', '5928517', '0380', 'BRACKET AS-LIGHT', 'DM01', NULL, 'REL', 'SASW09MIA', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106570991723000017099', '115000232037', '5928517', '0380', 'BRACKET AS-LIGHT', 'DM01', NULL, 'REL', 'SASW09MIA', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106571001723000017100', '115000232038', '5928517', '0250', 'BRACKET AS-LIGHT', 'DM01', NULL, 'REL', 'SASW09MIA', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106571011723000017101', '115000232039', '5928517', '0250', 'BRACKET AS-LIGHT', 'DM01', NULL, 'REL', 'SASW09MIA', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106571031723000017103', '115000232360', '5928517', '0250', 'BRACKET AS-LIGHT', 'DM01', NULL, 'REL', 'SASW09MIA', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106571041723000017104', '115000232361', '5928517', '0250', 'BRACKET AS-LIGHT', 'DM01', NULL, 'REL', 'SASW09MIA', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106571051723000017105', '115000232034', '5928518', '0390', 'BRACKET AS-LIGHT', 'DM01', NULL, 'REL', 'SASW09MIA', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106571061723000017106', '115000232035', '5928518', '0390', 'BRACKET AS-LIGHT', 'DM01', NULL, 'REL', 'SASW09MIA', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106571071723000017107', '115000232036', '5928518', '0390', 'BRACKET AS-LIGHT', 'DM01', NULL, 'REL', 'SASW09MIA', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106571081723000017108', '115000232037', '5928518', '0390', 'BRACKET AS-LIGHT', 'DM01', NULL, 'REL', 'SASW09MIA', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106571091723000017109', '115000232038', '5928518', '0260', 'BRACKET AS-LIGHT', 'DM01', NULL, 'REL', 'SASW09MIA', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106571101723000017110', '115000232039', '5928518', '0260', 'BRACKET AS-LIGHT', 'DM01', NULL, 'REL', 'SASW09MIA', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106571111723000017111', '115000232360', '5928518', '0260', 'BRACKET AS-LIGHT', 'DM01', NULL, 'REL', 'SASW09MIA', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106571131723000017113', '115000232361', '5928518', '0260', 'BRACKET AS-LIGHT', 'DM01', NULL, 'REL', 'SASW09MIA', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106571141723000017114', '115000232034', '5936639', '0180', 'HARNESS AS-FRONT', 'DM01', NULL, 'REL', 'SASW03VAA', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106571151723000017115', '115000232035', '5936639', '0180', 'HARNESS AS-FRONT', 'DM01', NULL, 'REL', 'SASW03VAA', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106571161723000017116', '115000232036', '5936639', '0180', 'HARNESS AS-FRONT', 'DM01', NULL, 'REL', 'SASW03VAA', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106571171723000017117', '115000232037', '5936639', '0180', 'HARNESS AS-FRONT', 'DM01', NULL, 'REL', 'SASW03VAA', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106571181723000017118', '115000232033', '5943522', '0130', 'BRACKET AS-RELAY', 'DM01', NULL, 'REL', 'SWLSOHL01', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106571191723000017119', '115000232038', '5943522', '0130', 'BRACKET AS-RELAY', 'DM01', NULL, 'REL', 'SWLSOHL01', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106571201723000017120', '115000232039', '5943522', '0130', 'BRACKET AS-RELAY', 'DM01', NULL, 'REL', 'SWLSOHL01', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106571221723000017122', '115000232360', '5943522', '0130', 'BRACKET AS-RELAY', 'DM01', NULL, 'REL', 'SWLSOHL01', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106571231723000017123', '115000232361', '5943522', '0130', 'BRACKET AS-RELAY', 'DM01', NULL, 'REL', 'SWLSOHL01', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106571241723000017124', '115000232033', '5960354/DX', '0390', 'FILTER GP-FUEL', 'DM01', NULL, 'REL', 'SWLSOHL01', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106571251723000017125', '115000232038', '5960354/DX', '0390', 'FILTER GP-FUEL', 'DM01', NULL, 'REL', 'SWLSOHL01', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106571261723000017126', '115000232039', '5960354/DX', '0390', 'FILTER GP-FUEL', 'DM01', NULL, 'REL', 'SWLSOHL01', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106571271723000017127', '115000232360', '5960354/DX', '0390', 'FILTER GP-FUEL', 'DM01', NULL, 'REL', 'SWLSOHL01', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106571281723000017128', '115000232361', '5960354/DX', '0390', 'FILTER GP-FUEL', 'DM01', NULL, 'REL', 'SWLSOHL01', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106571301723000017130', '115000232034', '6025915', '0780', 'PLATE AS', 'DM01', NULL, 'REL', 'SWLSOHL01', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106571311723000017131', '115000232035', '6025915', '0780', 'PLATE AS', 'DM01', NULL, 'REL', 'SWLSOHL01', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106571321723000017132', '115000232036', '6025915', '0780', 'PLATE AS', 'DM01', NULL, 'REL', 'SWLSOHL01', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106571331723000017133', '115000232037', '6025915', '0780', 'PLATE AS', 'DM01', NULL, 'REL', 'SWLSOHL01', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106571341723000017134', '115000232037', '6043309', '0200', 'HOSE AS', 'DM01', NULL, 'REL', 'SASW03VAA', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106571351723000017135', '115000232034', '6052079', '0070', 'PLATE AS', 'DM01', NULL, 'REL', 'SASW01EFA', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106571381723000017138', '115000232035', '6052079', '0070', 'PLATE AS', 'DM01', NULL, 'REL', 'SASW01EFA', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106571391723000017139', '115000232036', '6052079', '0070', 'PLATE AS', 'DM01', NULL, 'REL', 'SASW01EFA', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106571401723000017140', '115000232037', '6052079', '0070', 'PLATE AS', 'DM01', NULL, 'REL', 'SASW01EFA', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106571421723000017142', '115000232037', '6055863', '0130', 'VALVE GP-CONTROL', 'DM01', NULL, 'REL', 'SASW03VAA', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106571451723000017145', '115000232038', '6055863', '0170', 'VALVE GP-CONTROL', 'DM01', NULL, 'REL', 'SASW03VAA', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106571471723000017147', '115000232039', '6055863', '0170', 'VALVE GP-CONTROL', 'DM01', NULL, 'REL', 'SASW03VAA', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106571501723000017150', '115000232034', '6064193', '0650', 'PLATE AS', 'DM01', NULL, 'REL', 'SASW03VAA', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106571511723000017151', '115000232035', '6064193', '0650', 'PLATE AS', 'DM01', NULL, 'REL', 'SASW03VAA', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106571521723000017152', '115000232036', '6064193', '0650', 'PLATE AS', 'DM01', NULL, 'REL', 'SASW03VAA', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106571541723000017154', '115000232037', '6064193', '0650', 'PLATE AS', 'DM01', NULL, 'REL', 'SASW03VAA', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106571561723000017156', '115000232037', '6064986', '0170', 'VALVE GP-MT', 'DM01', NULL, 'REL', 'SWLSOHL01', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106571571723000017157', '115000232038', '6064986', '0130', 'VALVE GP-MT', 'DM01', NULL, 'REL', 'SWLSOHL01', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106571581723000017158', '115000232039', '6064986', '0130', 'VALVE GP-MT', 'DM01', NULL, 'REL', 'SWLSOHL01', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106571601723000017160', '115000232033', '6066289', '0480', 'TANK GP-COOLANT', 'DM01', NULL, 'REL', 'SASW09MID', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106571631723000017163', '115000232034', '6066289', '0290', 'TANK GP-COOLANT', 'DM01', NULL, 'REL', 'SASW09MID', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106571641723000017164', '115000232035', '6066289', '0290', 'TANK GP-COOLANT', 'DM01', NULL, 'REL', 'SASW09MID', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106571651723000017165', '115000232036', '6066289', '0290', 'TANK GP-COOLANT', 'DM01', NULL, 'REL', 'SASW09MID', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106571661723000017166', '115000232037', '6066289', '0290', 'TANK GP-COOLANT', 'DM01', NULL, 'REL', 'SASW09MID', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106571691723000017169', '115000232038', '6066289', '0480', 'TANK GP-COOLANT', 'DM01', NULL, 'REL', 'SASW09MID', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106571701723000017170', '115000232039', '6066289', '0480', 'TANK GP-COOLANT', 'DM01', NULL, 'REL', 'SASW09MID', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106571711723000017171', '115000232360', '6066289', '0480', 'TANK GP-COOLANT', 'DM01', NULL, 'REL', 'SASW09MID', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106571721723000017172', '115000232361', '6066289', '0480', 'TANK GP-COOLANT', 'DM01', NULL, 'REL', 'SASW09MID', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106571731723000017173', '115000232033', '6071443', '0160', 'VALVE GP-CHRG -A', 'DM01', NULL, 'REL', 'SASW15MIA', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106571741723000017174', '115000232034', '6071443', '0170', 'VALVE GP-CHRG -A', 'DM01', NULL, 'REL', 'SASW15MIA', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106571751723000017175', '115000232035', '6071443', '0170', 'VALVE GP-CHRG -A', 'DM01', NULL, 'REL', 'SASW15MIA', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106571761723000017176', '115000232036', '6071443', '0170', 'VALVE GP-CHRG -A', 'DM01', NULL, 'REL', 'SASW15MIA', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106571771723000017177', '115000232037', '6071443', '0170', 'VALVE GP-CHRG -A', 'DM01', NULL, 'REL', 'SASW15MIA', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106571791723000017179', '115000232038', '6071443', '0160', 'VALVE GP-CHRG -A', 'DM01', NULL, 'REL', 'SASW15MIA', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106571811723000017181', '115000232039', '6071443', '0160', 'VALVE GP-CHRG -A', 'DM01', NULL, 'REL', 'SASW15MIA', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106571821723000017182', '115000232360', '6071443', '0160', 'VALVE GP-CHRG -A', 'DM01', NULL, 'REL', 'SASW15MIA', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106571831723000017183', '115000232361', '6071444', '0160', 'VALVE GP-CHRG -A', 'DM01', NULL, 'REL', 'SASW15MIA', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106571841723000017184', '115000232033', '6105920', '0190', 'HOSE-ELBOW', 'DM01', NULL, 'REL', 'SASW09MID', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106571851723000017185', '115000232038', '6105920', '0190', 'HOSE-ELBOW', 'DM01', NULL, 'REL', 'SASW09MID', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106571861723000017186', '115000232039', '6105920', '0190', 'HOSE-ELBOW', 'DM01', NULL, 'REL', 'SASW09MID', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106571881723000017188', '115000232360', '6105920', '0190', 'HOSE-ELBOW', 'DM01', NULL, 'REL', 'SASW09MID', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106571891723000017189', '115000232361', '6105920', '0190', 'HOSE-ELBOW', 'DM01', NULL, 'REL', 'SASW09MID', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106571901723000017190', '115000232033', '6105921', '0200', 'HOSE-HUMP', 'DM01', NULL, 'REL', 'SASW09MID', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106571911723000017191', '115000232038', '6105921', '0200', 'HOSE-HUMP', 'DM01', NULL, 'REL', 'SASW09MID', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106571921723000017192', '115000232039', '6105921', '0200', 'HOSE-HUMP', 'DM01', NULL, 'REL', 'SASW09MID', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106571951723000017195', '115000232360', '6105921', '0200', 'HOSE-HUMP', 'DM01', NULL, 'REL', 'SASW09MID', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106571961723000017196', '115000232361', '6105921', '0200', 'HOSE-HUMP', 'DM01', NULL, 'REL', 'SASW09MID', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106571971723000017197', '115000232033', '6105938', '0130', 'HARNESS AS-IMU', 'DM01', NULL, 'REL', 'SASW01EFA', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106571991723000017199', '115000232035', '6105938', '0090', 'HARNESS AS-IMU', 'DM01', NULL, 'REL', 'SASW01EFA', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106572001723000017200', '115000232037', '6105938', '0090', 'HARNESS AS-IMU', 'DM01', NULL, 'REL', 'SASW01EFA', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106572011723000017201', '115000232038', '6105938', '0130', 'HARNESS AS-IMU', 'DM01', NULL, 'REL', 'SASW01EFA', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106572031723000017203', '115000232039', '6105938', '0130', 'HARNESS AS-IMU', 'DM01', NULL, 'REL', 'SASW01EFA', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106572051723000017205', '115000232360', '6105938', '0130', 'HARNESS AS-IMU', 'DM01', NULL, 'REL', 'SASW01EFA', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106572061723000017206', '115000232033', '6120048', '0330', 'VALVE GP-BRAKE', 'DM01', NULL, 'REL', 'SWLSOHL01', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106572071723000017207', '115000232038', '6120048', '0330', 'VALVE GP-BRAKE', 'DM01', NULL, 'REL', 'SWLSOHL01', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106572081723000017208', '115000232039', '6120048', '0330', 'VALVE GP-BRAKE', 'DM01', NULL, 'REL', 'SWLSOHL01', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106572121723000017212', '115000232360', '6120048', '0330', 'VALVE GP-BRAKE', 'DM01', NULL, 'REL', 'SWLSOHL01', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106572141723000017214', '115000232361', '6120048', '0330', 'VALVE GP-BRAKE', 'DM01', NULL, 'REL', 'SWLSOHL01', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106572161723000017216', '115000232034', '6120049', '0030', 'VALVE GP-BRAKE', 'DM01', NULL, 'REL', 'SWLSOHL01', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106572171723000017217', '115000232035', '6120049', '0030', 'VALVE GP-BRAKE', 'DM01', NULL, 'REL', 'SWLSOHL01', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106572191723000017219', '115000232036', '6120049', '0030', 'VALVE GP-BRAKE', 'DM01', NULL, 'REL', 'SWLSOHL01', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106572221723000017222', '115000232037', '6120049', '0030', 'VALVE GP-BRAKE', 'DM01', NULL, 'REL', 'SWLSOHL01', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106572241723000017224', '115000232033', '6146212', '0280', 'PLATE', 'DM01', NULL, 'REL', 'SASW15MIA', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106572251723000017225', '115000232038', '6146212', '0280', 'PLATE', 'DM01', NULL, 'REL', 'SASW15MIA', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106572261723000017226', '115000232039', '6146212', '0280', 'PLATE', 'DM01', NULL, 'REL', 'SASW15MIA', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106572271723000017227', '115000232360', '6146212', '0280', 'PLATE', 'DM01', NULL, 'REL', 'SASW15MIA', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106572291723000017229', '115000232361', '6146212', '0280', 'PLATE', 'DM01', NULL, 'REL', 'SASW15MIA', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106572311723000017231', '115000232033', '6152862', '0220', 'BRACKET AS-HITCH', 'DM01', NULL, 'REL', 'SASW01EFA', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106572331723000017233', '115000232038', '6152862', '0220', 'BRACKET AS-HITCH', 'DM01', NULL, 'REL', 'SASW01EFA', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106572341723000017234', '115000232039', '6152862', '0220', 'BRACKET AS-HITCH', 'DM01', NULL, 'REL', 'SASW01EFA', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106572361723000017236', '115000232360', '6152862', '0220', 'BRACKET AS-HITCH', 'DM01', NULL, 'REL', 'SASW01EFA', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106572391723000017239', '115000232361', '6152862', '0220', 'BRACKET AS-HITCH', 'DM01', NULL, 'REL', 'SASW01EFA', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106572401723000017240', '115000232033', '6209758', '0130', 'VALVE GP', 'DM01', NULL, 'REL', 'SWLSOHL01', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106572411723000017241', '115000232034', '6209758', '0080', 'VALVE GP', 'DM01', NULL, 'REL', 'SWLSOHL01', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106572421723000017242', '115000232035', '6209758', '0080', 'VALVE GP', 'DM01', NULL, 'REL', 'SWLSOHL01', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106572431723000017243', '115000232036', '6209758', '0080', 'VALVE GP', 'DM01', NULL, 'REL', 'SWLSOHL01', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106572441723000017244', '115000232037', '6209758', '0080', 'VALVE GP', 'DM01', NULL, 'REL', 'SWLSOHL01', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106572451723000017245', '115000232038', '6209758', '0130', 'VALVE GP', 'DM01', NULL, 'REL', 'SWLSOHL01', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106572461723000017246', '115000232039', '6209758', '0130', 'VALVE GP', 'DM01', NULL, 'REL', 'SWLSOHL01', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106572501723000017250', '115000232360', '6209758', '0130', 'VALVE GP', 'DM01', NULL, 'REL', 'SWLSOHL01', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106572511723000017251', '115000232361', '6209758', '0130', 'VALVE GP', 'DM01', NULL, 'REL', 'SWLSOHL01', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106572521723000017252', '115000232033', '6264178', '0050', 'HARNESS AS-STEER', 'DM01', NULL, 'REL', 'SASW01EFA', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106572531723000017253', '115000232038', '6264178', '0050', 'HARNESS AS-STEER', 'DM01', NULL, 'REL', 'SASW01EFA', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106572551723000017255', '115000232039', '6264178', '0050', 'HARNESS AS-STEER', 'DM01', NULL, 'REL', 'SASW01EFA', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106572561723000017256', '115000232360', '6264178', '0050', 'HARNESS AS-STEER', 'DM01', NULL, 'REL', 'SASW01EFA', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106572571723000017257', '115000232033', '6286352', '0240', 'HARNESS AS-REAR', 'DM01', NULL, 'REL', 'SASW01EFA', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106572591723000017259', '115000232038', '6286352', '0240', 'HARNESS AS-REAR', 'DM01', NULL, 'REL', 'SASW01EFA', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106572601723000017260', '115000232039', '6286352', '0240', 'HARNESS AS-REAR', 'DM01', NULL, 'REL', 'SASW01EFA', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106572611723000017261', '115000232360', '6286352', '0240', 'HARNESS AS-REAR', 'DM01', NULL, 'REL', 'SASW01EFA', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106572621723000017262', '115000232361', '6286352', '0240', 'HARNESS AS-REAR', 'DM01', NULL, 'REL', 'SASW01EFA', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106572631723000017263', '115000232034', '6286358', '0290', 'HARNESS AS-REAR', 'DM01', NULL, 'REL', 'SASW01EFA', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106572641723000017264', '115000232035', '6286358', '0290', 'HARNESS AS-REAR', 'DM01', NULL, 'REL', 'SASW01EFA', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106572671723000017267', '115000232036', '6286358', '0290', 'HARNESS AS-REAR', 'DM01', NULL, 'REL', 'SASW01EFA', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); +INSERT INTO `tbl_app_kate_orders` VALUES ('ORDER_202408071106572681723000017268', '115000232037', '6286358', '0290', 'HARNESS AS-REAR', 'DM01', NULL, 'REL', 'SASW01EFA', 'SETTING F', 1.0000, 'PC', 0, 1.0000, 0.0000, '管理员', NULL); -- ---------------------------- -- Table structure for tbl_app_kate_orders_history @@ -237,7 +1393,7 @@ CREATE TABLE `tbl_app_kate_orders_history` ( `user_name` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL COMMENT '操作人员', `finish_time` datetime NULL DEFAULT NULL COMMENT '完成时间', PRIMARY KEY (`order_id`) USING BTREE -) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_0900_ai_ci ROW_FORMAT = Dynamic; +) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_0900_ai_ci ROW_FORMAT = DYNAMIC; -- ---------------------------- -- Records of tbl_app_kate_orders_history @@ -266,7 +1422,7 @@ CREATE TABLE `tbl_app_kate_orders_last` ( `user_name` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL COMMENT '操作人员', `finish_time` datetime NULL DEFAULT NULL COMMENT '完成时间', PRIMARY KEY (`order_id`) USING BTREE -) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_0900_ai_ci ROW_FORMAT = Dynamic; +) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_0900_ai_ci ROW_FORMAT = DYNAMIC; -- ---------------------------- -- Records of tbl_app_kate_orders_last @@ -287,2388 +1443,12685 @@ CREATE TABLE `tbl_app_location` ( `w_depth` int NULL DEFAULT NULL COMMENT '深度', `is_lock` int NULL DEFAULT NULL COMMENT '库位是否锁定(0:未锁定,1:锁定)', `location_status` int NULL DEFAULT NULL COMMENT '库位状态(0:空闲,1:占用)', + `vehicle_id` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL COMMENT '载具号', PRIMARY KEY (`location_id`) USING BTREE ) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_0900_ai_ci ROW_FORMAT = DYNAMIC; -- ---------------------------- -- Records of tbl_app_location -- ---------------------------- -INSERT INTO `tbl_app_location` VALUES ('010101-01', 1, 1, 0, 1, 1, 1, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('010101-02', 1, 1, 0, 1, 1, 1, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('010101-03', 1, 1, 0, 1, 1, 1, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('010102-01', 1, 1, 0, 1, 1, 2, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('010102-02', 1, 1, 0, 1, 1, 2, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('010102-03', 1, 1, 0, 1, 1, 2, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('010103-01', 1, 1, 0, 1, 1, 3, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('010103-02', 1, 1, 0, 1, 1, 3, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('010103-03', 1, 1, 0, 1, 1, 3, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('010104-01', 1, 1, 0, 1, 1, 4, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('010104-02', 1, 1, 0, 1, 1, 4, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('010104-03', 1, 1, 0, 1, 1, 4, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('010105-01', 1, 1, 0, 1, 1, 5, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('010105-02', 1, 1, 0, 1, 1, 5, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('010105-03', 1, 1, 0, 1, 1, 5, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('010106-01', 1, 1, 0, 1, 1, 6, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('010106-02', 1, 1, 0, 1, 1, 6, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('010106-03', 1, 1, 0, 1, 1, 6, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('010107-01', 1, 1, 0, 1, 1, 7, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('010107-02', 1, 1, 0, 1, 1, 7, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('010107-03', 1, 1, 0, 1, 1, 7, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('010108-01', 1, 1, 0, 1, 1, 8, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('010108-02', 1, 1, 0, 1, 1, 8, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('010108-03', 1, 1, 0, 1, 1, 8, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('010109-01', 1, 1, 0, 1, 1, 9, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('010109-02', 1, 1, 0, 1, 1, 9, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('010109-03', 1, 1, 0, 1, 1, 9, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('010110-01', 1, 1, 0, 1, 1, 10, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('010110-02', 1, 1, 0, 1, 1, 10, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('010110-03', 1, 1, 0, 1, 1, 10, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('010111-01', 1, 1, 0, 1, 1, 11, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('010111-02', 1, 1, 0, 1, 1, 11, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('010111-03', 1, 1, 0, 1, 1, 11, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('010201-01', 1, 1, 0, 1, 2, 1, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('010201-02', 1, 1, 0, 1, 2, 1, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('010201-03', 1, 1, 0, 1, 2, 1, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('010202-01', 1, 1, 0, 1, 2, 2, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('010202-02', 1, 1, 0, 1, 2, 2, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('010202-03', 1, 1, 0, 1, 2, 2, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('010203-01', 1, 1, 0, 1, 2, 3, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('010203-02', 1, 1, 0, 1, 2, 3, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('010203-03', 1, 1, 0, 1, 2, 3, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('010204-01', 1, 1, 0, 1, 2, 4, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('010204-02', 1, 1, 0, 1, 2, 4, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('010204-03', 1, 1, 0, 1, 2, 4, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('010205-01', 1, 1, 0, 1, 2, 5, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('010205-02', 1, 1, 0, 1, 2, 5, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('010205-03', 1, 1, 0, 1, 2, 5, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('010206-01', 1, 1, 0, 1, 2, 6, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('010206-02', 1, 1, 0, 1, 2, 6, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('010206-03', 1, 1, 0, 1, 2, 6, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('010207-01', 1, 1, 0, 1, 2, 7, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('010207-02', 1, 1, 0, 1, 2, 7, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('010207-03', 1, 1, 0, 1, 2, 7, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('010208-01', 1, 1, 0, 1, 2, 8, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('010208-02', 1, 1, 0, 1, 2, 8, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('010208-03', 1, 1, 0, 1, 2, 8, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('010209-01', 1, 1, 0, 1, 2, 9, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('010209-02', 1, 1, 0, 1, 2, 9, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('010209-03', 1, 1, 0, 1, 2, 9, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('010210-01', 1, 1, 0, 1, 2, 10, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('010210-02', 1, 1, 0, 1, 2, 10, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('010210-03', 1, 1, 0, 1, 2, 10, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('010211-01', 1, 1, 0, 1, 2, 11, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('010211-02', 1, 1, 0, 1, 2, 11, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('010211-03', 1, 1, 0, 1, 2, 11, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('010301-01', 1, 1, 0, 1, 3, 1, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('010301-02', 1, 1, 0, 1, 3, 1, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('010301-03', 1, 1, 0, 1, 3, 1, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('010302-01', 1, 1, 0, 1, 3, 2, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('010302-02', 1, 1, 0, 1, 3, 2, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('010302-03', 1, 1, 0, 1, 3, 2, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('010303-01', 1, 1, 0, 1, 3, 3, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('010303-02', 1, 1, 0, 1, 3, 3, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('010303-03', 1, 1, 0, 1, 3, 3, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('010304-01', 1, 1, 0, 1, 3, 4, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('010304-02', 1, 1, 0, 1, 3, 4, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('010304-03', 1, 1, 0, 1, 3, 4, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('010305-01', 1, 1, 0, 1, 3, 5, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('010305-02', 1, 1, 0, 1, 3, 5, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('010305-03', 1, 1, 0, 1, 3, 5, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('010306-01', 1, 1, 0, 1, 3, 6, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('010306-02', 1, 1, 0, 1, 3, 6, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('010306-03', 1, 1, 0, 1, 3, 6, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('010307-01', 1, 1, 0, 1, 3, 7, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('010307-02', 1, 1, 0, 1, 3, 7, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('010307-03', 1, 1, 0, 1, 3, 7, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('010308-01', 1, 1, 0, 1, 3, 8, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('010308-02', 1, 1, 0, 1, 3, 8, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('010308-03', 1, 1, 0, 1, 3, 8, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('010309-01', 1, 1, 0, 1, 3, 9, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('010309-02', 1, 1, 0, 1, 3, 9, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('010309-03', 1, 1, 0, 1, 3, 9, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('010310-01', 1, 1, 0, 1, 3, 10, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('010310-02', 1, 1, 0, 1, 3, 10, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('010310-03', 1, 1, 0, 1, 3, 10, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('010311-01', 1, 1, 0, 1, 3, 11, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('010311-02', 1, 1, 0, 1, 3, 11, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('010311-03', 1, 1, 0, 1, 3, 11, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('010401-01', 1, 1, 0, 1, 4, 1, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('010401-02', 1, 1, 0, 1, 4, 1, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('010401-03', 1, 1, 0, 1, 4, 1, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('010402-01', 1, 1, 0, 1, 4, 2, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('010402-02', 1, 1, 0, 1, 4, 2, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('010402-03', 1, 1, 0, 1, 4, 2, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('010403-01', 1, 1, 0, 1, 4, 3, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('010403-02', 1, 1, 0, 1, 4, 3, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('010403-03', 1, 1, 0, 1, 4, 3, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('010404-01', 1, 1, 0, 1, 4, 4, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('010404-02', 1, 1, 0, 1, 4, 4, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('010404-03', 1, 1, 0, 1, 4, 4, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('010405-01', 1, 1, 0, 1, 4, 5, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('010405-02', 1, 1, 0, 1, 4, 5, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('010405-03', 1, 1, 0, 1, 4, 5, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('010406-01', 1, 1, 0, 1, 4, 6, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('010406-02', 1, 1, 0, 1, 4, 6, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('010406-03', 1, 1, 0, 1, 4, 6, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('010407-01', 1, 1, 0, 1, 4, 7, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('010407-02', 1, 1, 0, 1, 4, 7, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('010407-03', 1, 1, 0, 1, 4, 7, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('010408-01', 1, 1, 0, 1, 4, 8, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('010408-02', 1, 1, 0, 1, 4, 8, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('010408-03', 1, 1, 0, 1, 4, 8, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('010409-01', 1, 1, 0, 1, 4, 9, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('010409-02', 1, 1, 0, 1, 4, 9, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('010409-03', 1, 1, 0, 1, 4, 9, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('010410-01', 1, 1, 0, 1, 4, 10, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('010410-02', 1, 1, 0, 1, 4, 10, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('010410-03', 1, 1, 0, 1, 4, 10, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('010411-01', 1, 1, 0, 1, 4, 11, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('010411-02', 1, 1, 0, 1, 4, 11, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('010411-03', 1, 1, 0, 1, 4, 11, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('010501-01', 1, 1, 0, 1, 5, 1, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('010501-02', 1, 1, 0, 1, 5, 1, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('010501-03', 1, 1, 0, 1, 5, 1, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('010502-01', 1, 1, 0, 1, 5, 2, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('010502-02', 1, 1, 0, 1, 5, 2, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('010502-03', 1, 1, 0, 1, 5, 2, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('010503-01', 1, 1, 0, 1, 5, 3, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('010503-02', 1, 1, 0, 1, 5, 3, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('010503-03', 1, 1, 0, 1, 5, 3, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('010504-01', 1, 1, 0, 1, 5, 4, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('010504-02', 1, 1, 0, 1, 5, 4, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('010504-03', 1, 1, 0, 1, 5, 4, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('010505-01', 1, 1, 0, 1, 5, 5, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('010505-02', 1, 1, 0, 1, 5, 5, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('010505-03', 1, 1, 0, 1, 5, 5, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('010506-01', 1, 1, 0, 1, 5, 6, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('010506-02', 1, 1, 0, 1, 5, 6, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('010506-03', 1, 1, 0, 1, 5, 6, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('010507-01', 1, 1, 0, 1, 5, 7, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('010507-02', 1, 1, 0, 1, 5, 7, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('010507-03', 1, 1, 0, 1, 5, 7, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('010508-01', 1, 1, 0, 1, 5, 8, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('010508-02', 1, 1, 0, 1, 5, 8, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('010508-03', 1, 1, 0, 1, 5, 8, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('010509-01', 1, 1, 0, 1, 5, 9, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('010509-02', 1, 1, 0, 1, 5, 9, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('010509-03', 1, 1, 0, 1, 5, 9, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('010510-01', 1, 1, 0, 1, 5, 10, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('010510-02', 1, 1, 0, 1, 5, 10, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('010510-03', 1, 1, 0, 1, 5, 10, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('010511-01', 1, 1, 0, 1, 5, 11, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('010511-02', 1, 1, 0, 1, 5, 11, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('010511-03', 1, 1, 0, 1, 5, 11, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('010601-01', 1, 1, 0, 1, 6, 1, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('010601-02', 1, 1, 0, 1, 6, 1, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('010601-03', 1, 1, 0, 1, 6, 1, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('010602-01', 1, 1, 0, 1, 6, 2, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('010602-02', 1, 1, 0, 1, 6, 2, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('010602-03', 1, 1, 0, 1, 6, 2, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('010603-01', 1, 1, 0, 1, 6, 3, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('010603-02', 1, 1, 0, 1, 6, 3, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('010603-03', 1, 1, 0, 1, 6, 3, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('010604-01', 1, 1, 0, 1, 6, 4, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('010604-02', 1, 1, 0, 1, 6, 4, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('010604-03', 1, 1, 0, 1, 6, 4, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('010605-01', 1, 1, 0, 1, 6, 5, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('010605-02', 1, 1, 0, 1, 6, 5, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('010605-03', 1, 1, 0, 1, 6, 5, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('010606-01', 1, 1, 0, 1, 6, 6, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('010606-02', 1, 1, 0, 1, 6, 6, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('010606-03', 1, 1, 0, 1, 6, 6, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('010607-01', 1, 1, 0, 1, 6, 7, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('010607-02', 1, 1, 0, 1, 6, 7, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('010607-03', 1, 1, 0, 1, 6, 7, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('010608-01', 1, 1, 0, 1, 6, 8, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('010608-02', 1, 1, 0, 1, 6, 8, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('010608-03', 1, 1, 0, 1, 6, 8, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('010609-01', 1, 1, 0, 1, 6, 9, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('010609-02', 1, 1, 0, 1, 6, 9, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('010609-03', 1, 1, 0, 1, 6, 9, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('010610-01', 1, 1, 0, 1, 6, 10, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('010610-02', 1, 1, 0, 1, 6, 10, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('010610-03', 1, 1, 0, 1, 6, 10, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('010611-01', 1, 1, 0, 1, 6, 11, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('010611-02', 1, 1, 0, 1, 6, 11, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('010611-03', 1, 1, 0, 1, 6, 11, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('010701-01', 1, 1, 0, 1, 7, 1, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('010701-02', 1, 1, 0, 1, 7, 1, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('010701-03', 1, 1, 0, 1, 7, 1, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('010702-01', 1, 1, 0, 1, 7, 2, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('010702-02', 1, 1, 0, 1, 7, 2, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('010702-03', 1, 1, 0, 1, 7, 2, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('010703-01', 1, 1, 0, 1, 7, 3, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('010703-02', 1, 1, 0, 1, 7, 3, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('010703-03', 1, 1, 0, 1, 7, 3, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('010704-01', 1, 1, 0, 1, 7, 4, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('010704-02', 1, 1, 0, 1, 7, 4, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('010704-03', 1, 1, 0, 1, 7, 4, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('010705-01', 1, 1, 0, 1, 7, 5, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('010705-02', 1, 1, 0, 1, 7, 5, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('010705-03', 1, 1, 0, 1, 7, 5, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('010706-01', 1, 1, 0, 1, 7, 6, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('010706-02', 1, 1, 0, 1, 7, 6, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('010706-03', 1, 1, 0, 1, 7, 6, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('010707-01', 1, 1, 0, 1, 7, 7, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('010707-02', 1, 1, 0, 1, 7, 7, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('010707-03', 1, 1, 0, 1, 7, 7, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('010708-01', 1, 1, 0, 1, 7, 8, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('010708-02', 1, 1, 0, 1, 7, 8, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('010708-03', 1, 1, 0, 1, 7, 8, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('010709-01', 1, 1, 0, 1, 7, 9, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('010709-02', 1, 1, 0, 1, 7, 9, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('010709-03', 1, 1, 0, 1, 7, 9, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('010710-01', 1, 1, 0, 1, 7, 10, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('010710-02', 1, 1, 0, 1, 7, 10, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('010710-03', 1, 1, 0, 1, 7, 10, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('010711-01', 1, 1, 0, 1, 7, 11, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('010711-02', 1, 1, 0, 1, 7, 11, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('010711-03', 1, 1, 0, 1, 7, 11, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('010801-01', 1, 1, 0, 1, 8, 1, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('010801-02', 1, 1, 0, 1, 8, 1, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('010801-03', 1, 1, 0, 1, 8, 1, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('010802-01', 1, 1, 0, 1, 8, 2, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('010802-02', 1, 1, 0, 1, 8, 2, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('010802-03', 1, 1, 0, 1, 8, 2, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('010803-01', 1, 1, 0, 1, 8, 3, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('010803-02', 1, 1, 0, 1, 8, 3, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('010803-03', 1, 1, 0, 1, 8, 3, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('010804-01', 1, 1, 0, 1, 8, 4, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('010804-02', 1, 1, 0, 1, 8, 4, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('010804-03', 1, 1, 0, 1, 8, 4, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('010805-01', 1, 1, 0, 1, 8, 5, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('010805-02', 1, 1, 0, 1, 8, 5, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('010805-03', 1, 1, 0, 1, 8, 5, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('010806-01', 1, 1, 0, 1, 8, 6, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('010806-02', 1, 1, 0, 1, 8, 6, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('010806-03', 1, 1, 0, 1, 8, 6, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('010807-01', 1, 1, 0, 1, 8, 7, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('010807-02', 1, 1, 0, 1, 8, 7, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('010807-03', 1, 1, 0, 1, 8, 7, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('010808-01', 1, 1, 0, 1, 8, 8, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('010808-02', 1, 1, 0, 1, 8, 8, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('010808-03', 1, 1, 0, 1, 8, 8, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('010809-01', 1, 1, 0, 1, 8, 9, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('010809-02', 1, 1, 0, 1, 8, 9, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('010809-03', 1, 1, 0, 1, 8, 9, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('010810-01', 1, 1, 0, 1, 8, 10, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('010810-02', 1, 1, 0, 1, 8, 10, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('010810-03', 1, 1, 0, 1, 8, 10, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('010811-01', 1, 1, 0, 1, 8, 11, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('010811-02', 1, 1, 0, 1, 8, 11, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('010811-03', 1, 1, 0, 1, 8, 11, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('010901-01', 1, 1, 0, 1, 9, 1, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('010901-02', 1, 1, 0, 1, 9, 1, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('010901-03', 1, 1, 0, 1, 9, 1, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('010902-01', 1, 1, 0, 1, 9, 2, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('010902-02', 1, 1, 0, 1, 9, 2, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('010902-03', 1, 1, 0, 1, 9, 2, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('010903-01', 1, 1, 0, 1, 9, 3, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('010903-02', 1, 1, 0, 1, 9, 3, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('010903-03', 1, 1, 0, 1, 9, 3, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('010904-01', 1, 1, 0, 1, 9, 4, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('010904-02', 1, 1, 0, 1, 9, 4, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('010904-03', 1, 1, 0, 1, 9, 4, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('010905-01', 1, 1, 0, 1, 9, 5, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('010905-02', 1, 1, 0, 1, 9, 5, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('010905-03', 1, 1, 0, 1, 9, 5, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('010906-01', 1, 1, 0, 1, 9, 6, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('010906-02', 1, 1, 0, 1, 9, 6, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('010906-03', 1, 1, 0, 1, 9, 6, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('010907-01', 1, 1, 0, 1, 9, 7, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('010907-02', 1, 1, 0, 1, 9, 7, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('010907-03', 1, 1, 0, 1, 9, 7, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('010908-01', 1, 1, 0, 1, 9, 8, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('010908-02', 1, 1, 0, 1, 9, 8, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('010908-03', 1, 1, 0, 1, 9, 8, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('010909-01', 1, 1, 0, 1, 9, 9, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('010909-02', 1, 1, 0, 1, 9, 9, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('010909-03', 1, 1, 0, 1, 9, 9, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('010910-01', 1, 1, 0, 1, 9, 10, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('010910-02', 1, 1, 0, 1, 9, 10, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('010910-03', 1, 1, 0, 1, 9, 10, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('010911-01', 1, 1, 0, 1, 9, 11, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('010911-02', 1, 1, 0, 1, 9, 11, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('010911-03', 1, 1, 0, 1, 9, 11, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('011001-01', 1, 1, 0, 1, 10, 1, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('011001-02', 1, 1, 0, 1, 10, 1, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('011001-03', 1, 1, 0, 1, 10, 1, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('011002-01', 1, 1, 0, 1, 10, 2, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('011002-02', 1, 1, 0, 1, 10, 2, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('011002-03', 1, 1, 0, 1, 10, 2, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('011003-01', 1, 1, 0, 1, 10, 3, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('011003-02', 1, 1, 0, 1, 10, 3, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('011003-03', 1, 1, 0, 1, 10, 3, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('011004-01', 1, 1, 0, 1, 10, 4, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('011004-02', 1, 1, 0, 1, 10, 4, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('011004-03', 1, 1, 0, 1, 10, 4, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('011005-01', 1, 1, 0, 1, 10, 5, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('011005-02', 1, 1, 0, 1, 10, 5, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('011005-03', 1, 1, 0, 1, 10, 5, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('011006-01', 1, 1, 0, 1, 10, 6, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('011006-02', 1, 1, 0, 1, 10, 6, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('011006-03', 1, 1, 0, 1, 10, 6, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('011007-01', 1, 1, 0, 1, 10, 7, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('011007-02', 1, 1, 0, 1, 10, 7, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('011007-03', 1, 1, 0, 1, 10, 7, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('011008-01', 1, 1, 0, 1, 10, 8, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('011008-02', 1, 1, 0, 1, 10, 8, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('011008-03', 1, 1, 0, 1, 10, 8, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('011009-01', 1, 1, 0, 1, 10, 9, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('011009-02', 1, 1, 0, 1, 10, 9, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('011009-03', 1, 1, 0, 1, 10, 9, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('011010-01', 1, 1, 0, 1, 10, 10, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('011010-02', 1, 1, 0, 1, 10, 10, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('011010-03', 1, 1, 0, 1, 10, 10, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('011011-01', 1, 1, 0, 1, 10, 11, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('011011-02', 1, 1, 0, 1, 10, 11, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('011011-03', 1, 1, 0, 1, 10, 11, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('011101-01', 1, 1, 0, 1, 11, 1, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('011101-02', 1, 1, 0, 1, 11, 1, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('011101-03', 1, 1, 0, 1, 11, 1, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('011102-01', 1, 1, 0, 1, 11, 2, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('011102-02', 1, 1, 0, 1, 11, 2, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('011102-03', 1, 1, 0, 1, 11, 2, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('011103-01', 1, 1, 0, 1, 11, 3, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('011103-02', 1, 1, 0, 1, 11, 3, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('011103-03', 1, 1, 0, 1, 11, 3, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('011104-01', 1, 1, 0, 1, 11, 4, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('011104-02', 1, 1, 0, 1, 11, 4, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('011104-03', 1, 1, 0, 1, 11, 4, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('011105-01', 1, 1, 0, 1, 11, 5, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('011105-02', 1, 1, 0, 1, 11, 5, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('011105-03', 1, 1, 0, 1, 11, 5, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('011106-01', 1, 1, 0, 1, 11, 6, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('011106-02', 1, 1, 0, 1, 11, 6, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('011106-03', 1, 1, 0, 1, 11, 6, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('011107-01', 1, 1, 0, 1, 11, 7, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('011107-02', 1, 1, 0, 1, 11, 7, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('011107-03', 1, 1, 0, 1, 11, 7, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('011108-01', 1, 1, 0, 1, 11, 8, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('011108-02', 1, 1, 0, 1, 11, 8, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('011108-03', 1, 1, 0, 1, 11, 8, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('011109-01', 1, 1, 0, 1, 11, 9, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('011109-02', 1, 1, 0, 1, 11, 9, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('011109-03', 1, 1, 0, 1, 11, 9, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('011110-01', 1, 1, 0, 1, 11, 10, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('011110-02', 1, 1, 0, 1, 11, 10, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('011110-03', 1, 1, 0, 1, 11, 10, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('011111-01', 1, 1, 0, 1, 11, 11, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('011111-02', 1, 1, 0, 1, 11, 11, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('011111-03', 1, 1, 0, 1, 11, 11, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('011201-01', 1, 1, 0, 1, 12, 1, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('011201-02', 1, 1, 0, 1, 12, 1, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('011201-03', 1, 1, 0, 1, 12, 1, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('011202-01', 1, 1, 0, 1, 12, 2, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('011202-02', 1, 1, 0, 1, 12, 2, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('011202-03', 1, 1, 0, 1, 12, 2, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('011203-01', 1, 1, 0, 1, 12, 3, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('011203-02', 1, 1, 0, 1, 12, 3, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('011203-03', 1, 1, 0, 1, 12, 3, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('011204-01', 1, 1, 0, 1, 12, 4, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('011204-02', 1, 1, 0, 1, 12, 4, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('011204-03', 1, 1, 0, 1, 12, 4, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('011205-01', 1, 1, 0, 1, 12, 5, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('011205-02', 1, 1, 0, 1, 12, 5, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('011205-03', 1, 1, 0, 1, 12, 5, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('011206-01', 1, 1, 0, 1, 12, 6, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('011206-02', 1, 1, 0, 1, 12, 6, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('011206-03', 1, 1, 0, 1, 12, 6, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('011207-01', 1, 1, 0, 1, 12, 7, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('011207-02', 1, 1, 0, 1, 12, 7, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('011207-03', 1, 1, 0, 1, 12, 7, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('011208-01', 1, 1, 0, 1, 12, 8, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('011208-02', 1, 1, 0, 1, 12, 8, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('011208-03', 1, 1, 0, 1, 12, 8, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('011209-01', 1, 1, 0, 1, 12, 9, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('011209-02', 1, 1, 0, 1, 12, 9, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('011209-03', 1, 1, 0, 1, 12, 9, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('011210-01', 1, 1, 0, 1, 12, 10, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('011210-02', 1, 1, 0, 1, 12, 10, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('011210-03', 1, 1, 0, 1, 12, 10, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('011211-01', 1, 1, 0, 1, 12, 11, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('011211-02', 1, 1, 0, 1, 12, 11, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('011211-03', 1, 1, 0, 1, 12, 11, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('011301-01', 1, 1, 0, 1, 13, 1, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('011301-02', 1, 1, 0, 1, 13, 1, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('011301-03', 1, 1, 0, 1, 13, 1, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('011302-01', 1, 1, 0, 1, 13, 2, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('011302-02', 1, 1, 0, 1, 13, 2, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('011302-03', 1, 1, 0, 1, 13, 2, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('011303-01', 1, 1, 0, 1, 13, 3, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('011303-02', 1, 1, 0, 1, 13, 3, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('011303-03', 1, 1, 0, 1, 13, 3, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('011304-01', 1, 1, 0, 1, 13, 4, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('011304-02', 1, 1, 0, 1, 13, 4, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('011304-03', 1, 1, 0, 1, 13, 4, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('011305-01', 1, 1, 0, 1, 13, 5, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('011305-02', 1, 1, 0, 1, 13, 5, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('011305-03', 1, 1, 0, 1, 13, 5, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('011306-01', 1, 1, 0, 1, 13, 6, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('011306-02', 1, 1, 0, 1, 13, 6, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('011306-03', 1, 1, 0, 1, 13, 6, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('011307-01', 1, 1, 0, 1, 13, 7, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('011307-02', 1, 1, 0, 1, 13, 7, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('011307-03', 1, 1, 0, 1, 13, 7, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('011308-01', 1, 1, 0, 1, 13, 8, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('011308-02', 1, 1, 0, 1, 13, 8, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('011308-03', 1, 1, 0, 1, 13, 8, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('011309-01', 1, 1, 0, 1, 13, 9, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('011309-02', 1, 1, 0, 1, 13, 9, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('011309-03', 1, 1, 0, 1, 13, 9, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('011310-01', 1, 1, 0, 1, 13, 10, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('011310-02', 1, 1, 0, 1, 13, 10, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('011310-03', 1, 1, 0, 1, 13, 10, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('011311-01', 1, 1, 0, 1, 13, 11, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('011311-02', 1, 1, 0, 1, 13, 11, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('011311-03', 1, 1, 0, 1, 13, 11, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('011401-01', 1, 1, 0, 1, 14, 1, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('011401-02', 1, 1, 0, 1, 14, 1, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('011401-03', 1, 1, 0, 1, 14, 1, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('011402-01', 1, 1, 0, 1, 14, 2, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('011402-02', 1, 1, 0, 1, 14, 2, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('011402-03', 1, 1, 0, 1, 14, 2, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('011403-01', 1, 1, 0, 1, 14, 3, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('011403-02', 1, 1, 0, 1, 14, 3, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('011403-03', 1, 1, 0, 1, 14, 3, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('011404-01', 1, 1, 0, 1, 14, 4, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('011404-02', 1, 1, 0, 1, 14, 4, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('011404-03', 1, 1, 0, 1, 14, 4, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('011405-01', 1, 1, 0, 1, 14, 5, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('011405-02', 1, 1, 0, 1, 14, 5, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('011405-03', 1, 1, 0, 1, 14, 5, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('011406-01', 1, 1, 0, 1, 14, 6, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('011406-02', 1, 1, 0, 1, 14, 6, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('011406-03', 1, 1, 0, 1, 14, 6, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('011407-01', 1, 1, 0, 1, 14, 7, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('011407-02', 1, 1, 0, 1, 14, 7, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('011407-03', 1, 1, 0, 1, 14, 7, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('011408-01', 1, 1, 0, 1, 14, 8, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('011408-02', 1, 1, 0, 1, 14, 8, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('011408-03', 1, 1, 0, 1, 14, 8, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('011409-01', 1, 1, 0, 1, 14, 9, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('011409-02', 1, 1, 0, 1, 14, 9, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('011409-03', 1, 1, 0, 1, 14, 9, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('011410-01', 1, 1, 0, 1, 14, 10, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('011410-02', 1, 1, 0, 1, 14, 10, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('011410-03', 1, 1, 0, 1, 14, 10, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('011411-01', 1, 1, 0, 1, 14, 11, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('011411-02', 1, 1, 0, 1, 14, 11, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('011411-03', 1, 1, 0, 1, 14, 11, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('011501-01', 1, 1, 0, 1, 15, 1, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('011501-02', 1, 1, 0, 1, 15, 1, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('011501-03', 1, 1, 0, 1, 15, 1, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('011502-01', 1, 1, 0, 1, 15, 2, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('011502-02', 1, 1, 0, 1, 15, 2, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('011502-03', 1, 1, 0, 1, 15, 2, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('011503-01', 1, 1, 0, 1, 15, 3, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('011503-02', 1, 1, 0, 1, 15, 3, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('011503-03', 1, 1, 0, 1, 15, 3, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('011504-01', 1, 1, 0, 1, 15, 4, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('011504-02', 1, 1, 0, 1, 15, 4, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('011504-03', 1, 1, 0, 1, 15, 4, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('011505-01', 1, 1, 0, 1, 15, 5, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('011505-02', 1, 1, 0, 1, 15, 5, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('011505-03', 1, 1, 0, 1, 15, 5, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('011506-01', 1, 1, 0, 1, 15, 6, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('011506-02', 1, 1, 0, 1, 15, 6, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('011506-03', 1, 1, 0, 1, 15, 6, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('011507-01', 1, 1, 0, 1, 15, 7, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('011507-02', 1, 1, 0, 1, 15, 7, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('011507-03', 1, 1, 0, 1, 15, 7, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('011508-01', 1, 1, 0, 1, 15, 8, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('011508-02', 1, 1, 0, 1, 15, 8, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('011508-03', 1, 1, 0, 1, 15, 8, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('011509-01', 1, 1, 0, 1, 15, 9, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('011509-02', 1, 1, 0, 1, 15, 9, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('011509-03', 1, 1, 0, 1, 15, 9, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('011510-01', 1, 1, 0, 1, 15, 10, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('011510-02', 1, 1, 0, 1, 15, 10, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('011510-03', 1, 1, 0, 1, 15, 10, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('011511-01', 1, 1, 0, 1, 15, 11, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('011511-02', 1, 1, 0, 1, 15, 11, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('011511-03', 1, 1, 0, 1, 15, 11, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('011601-01', 1, 1, 0, 1, 16, 1, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('011601-02', 1, 1, 0, 1, 16, 1, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('011601-03', 1, 1, 0, 1, 16, 1, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('011602-01', 1, 1, 0, 1, 16, 2, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('011602-02', 1, 1, 0, 1, 16, 2, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('011602-03', 1, 1, 0, 1, 16, 2, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('011603-01', 1, 1, 0, 1, 16, 3, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('011603-02', 1, 1, 0, 1, 16, 3, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('011603-03', 1, 1, 0, 1, 16, 3, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('011604-01', 1, 1, 0, 1, 16, 4, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('011604-02', 1, 1, 0, 1, 16, 4, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('011604-03', 1, 1, 0, 1, 16, 4, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('011605-01', 1, 1, 0, 1, 16, 5, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('011605-02', 1, 1, 0, 1, 16, 5, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('011605-03', 1, 1, 0, 1, 16, 5, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('011606-01', 1, 1, 0, 1, 16, 6, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('011606-02', 1, 1, 0, 1, 16, 6, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('011606-03', 1, 1, 0, 1, 16, 6, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('011607-01', 1, 1, 0, 1, 16, 7, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('011607-02', 1, 1, 0, 1, 16, 7, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('011607-03', 1, 1, 0, 1, 16, 7, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('011608-01', 1, 1, 0, 1, 16, 8, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('011608-02', 1, 1, 0, 1, 16, 8, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('011608-03', 1, 1, 0, 1, 16, 8, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('011609-01', 1, 1, 0, 1, 16, 9, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('011609-02', 1, 1, 0, 1, 16, 9, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('011609-03', 1, 1, 0, 1, 16, 9, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('011610-01', 1, 1, 0, 1, 16, 10, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('011610-02', 1, 1, 0, 1, 16, 10, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('011610-03', 1, 1, 0, 1, 16, 10, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('011611-01', 1, 1, 0, 1, 16, 11, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('011611-02', 1, 1, 0, 1, 16, 11, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('011611-03', 1, 1, 0, 1, 16, 11, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('011701-01', 1, 1, 0, 1, 17, 1, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('011701-02', 1, 1, 0, 1, 17, 1, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('011701-03', 1, 1, 0, 1, 17, 1, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('011702-01', 1, 1, 0, 1, 17, 2, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('011702-02', 1, 1, 0, 1, 17, 2, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('011702-03', 1, 1, 0, 1, 17, 2, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('011703-01', 1, 1, 0, 1, 17, 3, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('011703-02', 1, 1, 0, 1, 17, 3, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('011703-03', 1, 1, 0, 1, 17, 3, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('011704-01', 1, 1, 0, 1, 17, 4, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('011704-02', 1, 1, 0, 1, 17, 4, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('011704-03', 1, 1, 0, 1, 17, 4, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('011705-01', 1, 1, 0, 1, 17, 5, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('011705-02', 1, 1, 0, 1, 17, 5, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('011705-03', 1, 1, 0, 1, 17, 5, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('011706-01', 1, 1, 0, 1, 17, 6, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('011706-02', 1, 1, 0, 1, 17, 6, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('011706-03', 1, 1, 0, 1, 17, 6, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('011707-01', 1, 1, 0, 1, 17, 7, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('011707-02', 1, 1, 0, 1, 17, 7, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('011707-03', 1, 1, 0, 1, 17, 7, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('011708-01', 1, 1, 0, 1, 17, 8, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('011708-02', 1, 1, 0, 1, 17, 8, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('011708-03', 1, 1, 0, 1, 17, 8, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('011709-01', 1, 1, 0, 1, 17, 9, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('011709-02', 1, 1, 0, 1, 17, 9, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('011709-03', 1, 1, 0, 1, 17, 9, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('011710-01', 1, 1, 0, 1, 17, 10, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('011710-02', 1, 1, 0, 1, 17, 10, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('011710-03', 1, 1, 0, 1, 17, 10, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('011711-01', 1, 1, 0, 1, 17, 11, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('011711-02', 1, 1, 0, 1, 17, 11, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('011711-03', 1, 1, 0, 1, 17, 11, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('011801-01', 1, 1, 0, 1, 18, 1, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('011801-02', 1, 1, 0, 1, 18, 1, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('011801-03', 1, 1, 0, 1, 18, 1, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('011802-01', 1, 1, 0, 1, 18, 2, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('011802-02', 1, 1, 0, 1, 18, 2, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('011802-03', 1, 1, 0, 1, 18, 2, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('011803-01', 1, 1, 0, 1, 18, 3, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('011803-02', 1, 1, 0, 1, 18, 3, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('011803-03', 1, 1, 0, 1, 18, 3, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('011804-01', 1, 1, 0, 1, 18, 4, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('011804-02', 1, 1, 0, 1, 18, 4, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('011804-03', 1, 1, 0, 1, 18, 4, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('011805-01', 1, 1, 0, 1, 18, 5, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('011805-02', 1, 1, 0, 1, 18, 5, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('011805-03', 1, 1, 0, 1, 18, 5, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('011806-01', 1, 1, 0, 1, 18, 6, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('011806-02', 1, 1, 0, 1, 18, 6, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('011806-03', 1, 1, 0, 1, 18, 6, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('011807-01', 1, 1, 0, 1, 18, 7, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('011807-02', 1, 1, 0, 1, 18, 7, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('011807-03', 1, 1, 0, 1, 18, 7, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('011808-01', 1, 1, 0, 1, 18, 8, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('011808-02', 1, 1, 0, 1, 18, 8, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('011808-03', 1, 1, 0, 1, 18, 8, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('011809-01', 1, 1, 0, 1, 18, 9, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('011809-02', 1, 1, 0, 1, 18, 9, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('011809-03', 1, 1, 0, 1, 18, 9, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('011810-01', 1, 1, 0, 1, 18, 10, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('011810-02', 1, 1, 0, 1, 18, 10, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('011810-03', 1, 1, 0, 1, 18, 10, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('011811-01', 1, 1, 0, 1, 18, 11, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('011811-02', 1, 1, 0, 1, 18, 11, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('011811-03', 1, 1, 0, 1, 18, 11, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('020101-01', 1, 1, 0, 2, 1, 1, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('020101-02', 1, 1, 0, 2, 1, 1, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('020101-03', 1, 1, 0, 2, 1, 1, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('020102-01', 1, 1, 0, 2, 1, 2, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('020102-02', 1, 1, 0, 2, 1, 2, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('020102-03', 1, 1, 0, 2, 1, 2, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('020103-01', 1, 1, 0, 2, 1, 3, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('020103-02', 1, 1, 0, 2, 1, 3, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('020103-03', 1, 1, 0, 2, 1, 3, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('020104-01', 1, 1, 0, 2, 1, 4, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('020104-02', 1, 1, 0, 2, 1, 4, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('020104-03', 1, 1, 0, 2, 1, 4, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('020105-01', 1, 1, 0, 2, 1, 5, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('020105-02', 1, 1, 0, 2, 1, 5, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('020105-03', 1, 1, 0, 2, 1, 5, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('020106-01', 1, 1, 0, 2, 1, 6, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('020106-02', 1, 1, 0, 2, 1, 6, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('020106-03', 1, 1, 0, 2, 1, 6, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('020107-01', 1, 1, 0, 2, 1, 7, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('020107-02', 1, 1, 0, 2, 1, 7, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('020107-03', 1, 1, 0, 2, 1, 7, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('020108-01', 1, 1, 0, 2, 1, 8, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('020108-02', 1, 1, 0, 2, 1, 8, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('020108-03', 1, 1, 0, 2, 1, 8, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('020109-01', 1, 1, 0, 2, 1, 9, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('020109-02', 1, 1, 0, 2, 1, 9, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('020109-03', 1, 1, 0, 2, 1, 9, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('020110-01', 1, 1, 0, 2, 1, 10, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('020110-02', 1, 1, 0, 2, 1, 10, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('020110-03', 1, 1, 0, 2, 1, 10, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('020111-01', 1, 1, 0, 2, 1, 11, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('020111-02', 1, 1, 0, 2, 1, 11, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('020111-03', 1, 1, 0, 2, 1, 11, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('020201-01', 1, 1, 0, 2, 2, 1, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('020201-02', 1, 1, 0, 2, 2, 1, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('020201-03', 1, 1, 0, 2, 2, 1, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('020202-01', 1, 1, 0, 2, 2, 2, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('020202-02', 1, 1, 0, 2, 2, 2, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('020202-03', 1, 1, 0, 2, 2, 2, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('020203-01', 1, 1, 0, 2, 2, 3, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('020203-02', 1, 1, 0, 2, 2, 3, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('020203-03', 1, 1, 0, 2, 2, 3, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('020204-01', 1, 1, 0, 2, 2, 4, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('020204-02', 1, 1, 0, 2, 2, 4, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('020204-03', 1, 1, 0, 2, 2, 4, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('020205-01', 1, 1, 0, 2, 2, 5, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('020205-02', 1, 1, 0, 2, 2, 5, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('020205-03', 1, 1, 0, 2, 2, 5, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('020206-01', 1, 1, 0, 2, 2, 6, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('020206-02', 1, 1, 0, 2, 2, 6, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('020206-03', 1, 1, 0, 2, 2, 6, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('020207-01', 1, 1, 0, 2, 2, 7, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('020207-02', 1, 1, 0, 2, 2, 7, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('020207-03', 1, 1, 0, 2, 2, 7, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('020208-01', 1, 1, 0, 2, 2, 8, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('020208-02', 1, 1, 0, 2, 2, 8, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('020208-03', 1, 1, 0, 2, 2, 8, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('020209-01', 1, 1, 0, 2, 2, 9, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('020209-02', 1, 1, 0, 2, 2, 9, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('020209-03', 1, 1, 0, 2, 2, 9, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('020210-01', 1, 1, 0, 2, 2, 10, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('020210-02', 1, 1, 0, 2, 2, 10, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('020210-03', 1, 1, 0, 2, 2, 10, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('020211-01', 1, 1, 0, 2, 2, 11, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('020211-02', 1, 1, 0, 2, 2, 11, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('020211-03', 1, 1, 0, 2, 2, 11, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('020301-01', 1, 1, 0, 2, 3, 1, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('020301-02', 1, 1, 0, 2, 3, 1, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('020301-03', 1, 1, 0, 2, 3, 1, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('020302-01', 1, 1, 0, 2, 3, 2, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('020302-02', 1, 1, 0, 2, 3, 2, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('020302-03', 1, 1, 0, 2, 3, 2, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('020303-01', 1, 1, 0, 2, 3, 3, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('020303-02', 1, 1, 0, 2, 3, 3, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('020303-03', 1, 1, 0, 2, 3, 3, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('020304-01', 1, 1, 0, 2, 3, 4, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('020304-02', 1, 1, 0, 2, 3, 4, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('020304-03', 1, 1, 0, 2, 3, 4, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('020305-01', 1, 1, 0, 2, 3, 5, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('020305-02', 1, 1, 0, 2, 3, 5, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('020305-03', 1, 1, 0, 2, 3, 5, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('020306-01', 1, 1, 0, 2, 3, 6, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('020306-02', 1, 1, 0, 2, 3, 6, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('020306-03', 1, 1, 0, 2, 3, 6, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('020307-01', 1, 1, 0, 2, 3, 7, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('020307-02', 1, 1, 0, 2, 3, 7, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('020307-03', 1, 1, 0, 2, 3, 7, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('020308-01', 1, 1, 0, 2, 3, 8, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('020308-02', 1, 1, 0, 2, 3, 8, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('020308-03', 1, 1, 0, 2, 3, 8, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('020309-01', 1, 1, 0, 2, 3, 9, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('020309-02', 1, 1, 0, 2, 3, 9, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('020309-03', 1, 1, 0, 2, 3, 9, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('020310-01', 1, 1, 0, 2, 3, 10, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('020310-02', 1, 1, 0, 2, 3, 10, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('020310-03', 1, 1, 0, 2, 3, 10, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('020311-01', 1, 1, 0, 2, 3, 11, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('020311-02', 1, 1, 0, 2, 3, 11, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('020311-03', 1, 1, 0, 2, 3, 11, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('020401-01', 1, 1, 0, 2, 4, 1, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('020401-02', 1, 1, 0, 2, 4, 1, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('020401-03', 1, 1, 0, 2, 4, 1, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('020402-01', 1, 1, 0, 2, 4, 2, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('020402-02', 1, 1, 0, 2, 4, 2, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('020402-03', 1, 1, 0, 2, 4, 2, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('020403-01', 1, 1, 0, 2, 4, 3, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('020403-02', 1, 1, 0, 2, 4, 3, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('020403-03', 1, 1, 0, 2, 4, 3, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('020404-01', 1, 1, 0, 2, 4, 4, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('020404-02', 1, 1, 0, 2, 4, 4, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('020404-03', 1, 1, 0, 2, 4, 4, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('020405-01', 1, 1, 0, 2, 4, 5, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('020405-02', 1, 1, 0, 2, 4, 5, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('020405-03', 1, 1, 0, 2, 4, 5, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('020406-01', 1, 1, 0, 2, 4, 6, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('020406-02', 1, 1, 0, 2, 4, 6, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('020406-03', 1, 1, 0, 2, 4, 6, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('020407-01', 1, 1, 0, 2, 4, 7, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('020407-02', 1, 1, 0, 2, 4, 7, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('020407-03', 1, 1, 0, 2, 4, 7, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('020408-01', 1, 1, 0, 2, 4, 8, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('020408-02', 1, 1, 0, 2, 4, 8, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('020408-03', 1, 1, 0, 2, 4, 8, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('020409-01', 1, 1, 0, 2, 4, 9, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('020409-02', 1, 1, 0, 2, 4, 9, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('020409-03', 1, 1, 0, 2, 4, 9, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('020410-01', 1, 1, 0, 2, 4, 10, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('020410-02', 1, 1, 0, 2, 4, 10, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('020410-03', 1, 1, 0, 2, 4, 10, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('020411-01', 1, 1, 0, 2, 4, 11, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('020411-02', 1, 1, 0, 2, 4, 11, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('020411-03', 1, 1, 0, 2, 4, 11, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('020501-01', 1, 1, 0, 2, 5, 1, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('020501-02', 1, 1, 0, 2, 5, 1, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('020501-03', 1, 1, 0, 2, 5, 1, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('020502-01', 1, 1, 0, 2, 5, 2, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('020502-02', 1, 1, 0, 2, 5, 2, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('020502-03', 1, 1, 0, 2, 5, 2, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('020503-01', 1, 1, 0, 2, 5, 3, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('020503-02', 1, 1, 0, 2, 5, 3, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('020503-03', 1, 1, 0, 2, 5, 3, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('020504-01', 1, 1, 0, 2, 5, 4, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('020504-02', 1, 1, 0, 2, 5, 4, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('020504-03', 1, 1, 0, 2, 5, 4, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('020505-01', 1, 1, 0, 2, 5, 5, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('020505-02', 1, 1, 0, 2, 5, 5, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('020505-03', 1, 1, 0, 2, 5, 5, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('020506-01', 1, 1, 0, 2, 5, 6, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('020506-02', 1, 1, 0, 2, 5, 6, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('020506-03', 1, 1, 0, 2, 5, 6, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('020507-01', 1, 1, 0, 2, 5, 7, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('020507-02', 1, 1, 0, 2, 5, 7, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('020507-03', 1, 1, 0, 2, 5, 7, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('020508-01', 1, 1, 0, 2, 5, 8, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('020508-02', 1, 1, 0, 2, 5, 8, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('020508-03', 1, 1, 0, 2, 5, 8, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('020509-01', 1, 1, 0, 2, 5, 9, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('020509-02', 1, 1, 0, 2, 5, 9, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('020509-03', 1, 1, 0, 2, 5, 9, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('020510-01', 1, 1, 0, 2, 5, 10, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('020510-02', 1, 1, 0, 2, 5, 10, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('020510-03', 1, 1, 0, 2, 5, 10, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('020511-01', 1, 1, 0, 2, 5, 11, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('020511-02', 1, 1, 0, 2, 5, 11, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('020511-03', 1, 1, 0, 2, 5, 11, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('020601-01', 1, 1, 0, 2, 6, 1, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('020601-02', 1, 1, 0, 2, 6, 1, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('020601-03', 1, 1, 0, 2, 6, 1, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('020602-01', 1, 1, 0, 2, 6, 2, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('020602-02', 1, 1, 0, 2, 6, 2, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('020602-03', 1, 1, 0, 2, 6, 2, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('020603-01', 1, 1, 0, 2, 6, 3, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('020603-02', 1, 1, 0, 2, 6, 3, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('020603-03', 1, 1, 0, 2, 6, 3, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('020604-01', 1, 1, 0, 2, 6, 4, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('020604-02', 1, 1, 0, 2, 6, 4, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('020604-03', 1, 1, 0, 2, 6, 4, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('020605-01', 1, 1, 0, 2, 6, 5, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('020605-02', 1, 1, 0, 2, 6, 5, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('020605-03', 1, 1, 0, 2, 6, 5, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('020606-01', 1, 1, 0, 2, 6, 6, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('020606-02', 1, 1, 0, 2, 6, 6, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('020606-03', 1, 1, 0, 2, 6, 6, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('020607-01', 1, 1, 0, 2, 6, 7, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('020607-02', 1, 1, 0, 2, 6, 7, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('020607-03', 1, 1, 0, 2, 6, 7, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('020608-01', 1, 1, 0, 2, 6, 8, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('020608-02', 1, 1, 0, 2, 6, 8, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('020608-03', 1, 1, 0, 2, 6, 8, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('020609-01', 1, 1, 0, 2, 6, 9, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('020609-02', 1, 1, 0, 2, 6, 9, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('020609-03', 1, 1, 0, 2, 6, 9, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('020610-01', 1, 1, 0, 2, 6, 10, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('020610-02', 1, 1, 0, 2, 6, 10, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('020610-03', 1, 1, 0, 2, 6, 10, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('020611-01', 1, 1, 0, 2, 6, 11, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('020611-02', 1, 1, 0, 2, 6, 11, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('020611-03', 1, 1, 0, 2, 6, 11, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('020701-01', 1, 1, 0, 2, 7, 1, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('020701-02', 1, 1, 0, 2, 7, 1, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('020701-03', 1, 1, 0, 2, 7, 1, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('020702-01', 1, 1, 0, 2, 7, 2, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('020702-02', 1, 1, 0, 2, 7, 2, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('020702-03', 1, 1, 0, 2, 7, 2, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('020703-01', 1, 1, 0, 2, 7, 3, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('020703-02', 1, 1, 0, 2, 7, 3, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('020703-03', 1, 1, 0, 2, 7, 3, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('020704-01', 1, 1, 0, 2, 7, 4, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('020704-02', 1, 1, 0, 2, 7, 4, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('020704-03', 1, 1, 0, 2, 7, 4, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('020705-01', 1, 1, 0, 2, 7, 5, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('020705-02', 1, 1, 0, 2, 7, 5, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('020705-03', 1, 1, 0, 2, 7, 5, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('020706-01', 1, 1, 0, 2, 7, 6, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('020706-02', 1, 1, 0, 2, 7, 6, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('020706-03', 1, 1, 0, 2, 7, 6, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('020707-01', 1, 1, 0, 2, 7, 7, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('020707-02', 1, 1, 0, 2, 7, 7, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('020707-03', 1, 1, 0, 2, 7, 7, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('020708-01', 1, 1, 0, 2, 7, 8, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('020708-02', 1, 1, 0, 2, 7, 8, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('020708-03', 1, 1, 0, 2, 7, 8, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('020709-01', 1, 1, 0, 2, 7, 9, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('020709-02', 1, 1, 0, 2, 7, 9, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('020709-03', 1, 1, 0, 2, 7, 9, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('020710-01', 1, 1, 0, 2, 7, 10, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('020710-02', 1, 1, 0, 2, 7, 10, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('020710-03', 1, 1, 0, 2, 7, 10, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('020711-01', 1, 1, 0, 2, 7, 11, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('020711-02', 1, 1, 0, 2, 7, 11, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('020711-03', 1, 1, 0, 2, 7, 11, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('020801-01', 1, 1, 0, 2, 8, 1, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('020801-02', 1, 1, 0, 2, 8, 1, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('020801-03', 1, 1, 0, 2, 8, 1, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('020802-01', 1, 1, 0, 2, 8, 2, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('020802-02', 1, 1, 0, 2, 8, 2, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('020802-03', 1, 1, 0, 2, 8, 2, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('020803-01', 1, 1, 0, 2, 8, 3, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('020803-02', 1, 1, 0, 2, 8, 3, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('020803-03', 1, 1, 0, 2, 8, 3, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('020804-01', 1, 1, 0, 2, 8, 4, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('020804-02', 1, 1, 0, 2, 8, 4, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('020804-03', 1, 1, 0, 2, 8, 4, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('020805-01', 1, 1, 0, 2, 8, 5, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('020805-02', 1, 1, 0, 2, 8, 5, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('020805-03', 1, 1, 0, 2, 8, 5, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('020806-01', 1, 1, 0, 2, 8, 6, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('020806-02', 1, 1, 0, 2, 8, 6, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('020806-03', 1, 1, 0, 2, 8, 6, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('020807-01', 1, 1, 0, 2, 8, 7, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('020807-02', 1, 1, 0, 2, 8, 7, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('020807-03', 1, 1, 0, 2, 8, 7, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('020808-01', 1, 1, 0, 2, 8, 8, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('020808-02', 1, 1, 0, 2, 8, 8, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('020808-03', 1, 1, 0, 2, 8, 8, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('020809-01', 1, 1, 0, 2, 8, 9, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('020809-02', 1, 1, 0, 2, 8, 9, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('020809-03', 1, 1, 0, 2, 8, 9, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('020810-01', 1, 1, 0, 2, 8, 10, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('020810-02', 1, 1, 0, 2, 8, 10, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('020810-03', 1, 1, 0, 2, 8, 10, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('020811-01', 1, 1, 0, 2, 8, 11, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('020811-02', 1, 1, 0, 2, 8, 11, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('020811-03', 1, 1, 0, 2, 8, 11, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('020901-01', 1, 1, 0, 2, 9, 1, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('020901-02', 1, 1, 0, 2, 9, 1, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('020901-03', 1, 1, 0, 2, 9, 1, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('020902-01', 1, 1, 0, 2, 9, 2, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('020902-02', 1, 1, 0, 2, 9, 2, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('020902-03', 1, 1, 0, 2, 9, 2, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('020903-01', 1, 1, 0, 2, 9, 3, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('020903-02', 1, 1, 0, 2, 9, 3, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('020903-03', 1, 1, 0, 2, 9, 3, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('020904-01', 1, 1, 0, 2, 9, 4, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('020904-02', 1, 1, 0, 2, 9, 4, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('020904-03', 1, 1, 0, 2, 9, 4, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('020905-01', 1, 1, 0, 2, 9, 5, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('020905-02', 1, 1, 0, 2, 9, 5, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('020905-03', 1, 1, 0, 2, 9, 5, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('020906-01', 1, 1, 0, 2, 9, 6, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('020906-02', 1, 1, 0, 2, 9, 6, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('020906-03', 1, 1, 0, 2, 9, 6, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('020907-01', 1, 1, 0, 2, 9, 7, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('020907-02', 1, 1, 0, 2, 9, 7, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('020907-03', 1, 1, 0, 2, 9, 7, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('020908-01', 1, 1, 0, 2, 9, 8, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('020908-02', 1, 1, 0, 2, 9, 8, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('020908-03', 1, 1, 0, 2, 9, 8, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('020909-01', 1, 1, 0, 2, 9, 9, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('020909-02', 1, 1, 0, 2, 9, 9, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('020909-03', 1, 1, 0, 2, 9, 9, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('020910-01', 1, 1, 0, 2, 9, 10, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('020910-02', 1, 1, 0, 2, 9, 10, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('020910-03', 1, 1, 0, 2, 9, 10, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('020911-01', 1, 1, 0, 2, 9, 11, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('020911-02', 1, 1, 0, 2, 9, 11, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('020911-03', 1, 1, 0, 2, 9, 11, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('021001-01', 1, 1, 0, 2, 10, 1, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('021001-02', 1, 1, 0, 2, 10, 1, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('021001-03', 1, 1, 0, 2, 10, 1, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('021002-01', 1, 1, 0, 2, 10, 2, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('021002-02', 1, 1, 0, 2, 10, 2, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('021002-03', 1, 1, 0, 2, 10, 2, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('021003-01', 1, 1, 0, 2, 10, 3, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('021003-02', 1, 1, 0, 2, 10, 3, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('021003-03', 1, 1, 0, 2, 10, 3, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('021004-01', 1, 1, 0, 2, 10, 4, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('021004-02', 1, 1, 0, 2, 10, 4, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('021004-03', 1, 1, 0, 2, 10, 4, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('021005-01', 1, 1, 0, 2, 10, 5, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('021005-02', 1, 1, 0, 2, 10, 5, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('021005-03', 1, 1, 0, 2, 10, 5, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('021006-01', 1, 1, 0, 2, 10, 6, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('021006-02', 1, 1, 0, 2, 10, 6, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('021006-03', 1, 1, 0, 2, 10, 6, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('021007-01', 1, 1, 0, 2, 10, 7, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('021007-02', 1, 1, 0, 2, 10, 7, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('021007-03', 1, 1, 0, 2, 10, 7, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('021008-01', 1, 1, 0, 2, 10, 8, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('021008-02', 1, 1, 0, 2, 10, 8, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('021008-03', 1, 1, 0, 2, 10, 8, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('021009-01', 1, 1, 0, 2, 10, 9, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('021009-02', 1, 1, 0, 2, 10, 9, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('021009-03', 1, 1, 0, 2, 10, 9, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('021010-01', 1, 1, 0, 2, 10, 10, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('021010-02', 1, 1, 0, 2, 10, 10, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('021010-03', 1, 1, 0, 2, 10, 10, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('021011-01', 1, 1, 0, 2, 10, 11, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('021011-02', 1, 1, 0, 2, 10, 11, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('021011-03', 1, 1, 0, 2, 10, 11, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('021101-01', 1, 1, 0, 2, 11, 1, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('021101-02', 1, 1, 0, 2, 11, 1, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('021101-03', 1, 1, 0, 2, 11, 1, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('021102-01', 1, 1, 0, 2, 11, 2, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('021102-02', 1, 1, 0, 2, 11, 2, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('021102-03', 1, 1, 0, 2, 11, 2, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('021103-01', 1, 1, 0, 2, 11, 3, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('021103-02', 1, 1, 0, 2, 11, 3, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('021103-03', 1, 1, 0, 2, 11, 3, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('021104-01', 1, 1, 0, 2, 11, 4, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('021104-02', 1, 1, 0, 2, 11, 4, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('021104-03', 1, 1, 0, 2, 11, 4, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('021105-01', 1, 1, 0, 2, 11, 5, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('021105-02', 1, 1, 0, 2, 11, 5, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('021105-03', 1, 1, 0, 2, 11, 5, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('021106-01', 1, 1, 0, 2, 11, 6, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('021106-02', 1, 1, 0, 2, 11, 6, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('021106-03', 1, 1, 0, 2, 11, 6, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('021107-01', 1, 1, 0, 2, 11, 7, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('021107-02', 1, 1, 0, 2, 11, 7, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('021107-03', 1, 1, 0, 2, 11, 7, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('021108-01', 1, 1, 0, 2, 11, 8, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('021108-02', 1, 1, 0, 2, 11, 8, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('021108-03', 1, 1, 0, 2, 11, 8, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('021109-01', 1, 1, 0, 2, 11, 9, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('021109-02', 1, 1, 0, 2, 11, 9, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('021109-03', 1, 1, 0, 2, 11, 9, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('021110-01', 1, 1, 0, 2, 11, 10, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('021110-02', 1, 1, 0, 2, 11, 10, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('021110-03', 1, 1, 0, 2, 11, 10, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('021111-01', 1, 1, 0, 2, 11, 11, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('021111-02', 1, 1, 0, 2, 11, 11, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('021111-03', 1, 1, 0, 2, 11, 11, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('021201-01', 1, 1, 0, 2, 12, 1, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('021201-02', 1, 1, 0, 2, 12, 1, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('021201-03', 1, 1, 0, 2, 12, 1, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('021202-01', 1, 1, 0, 2, 12, 2, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('021202-02', 1, 1, 0, 2, 12, 2, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('021202-03', 1, 1, 0, 2, 12, 2, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('021203-01', 1, 1, 0, 2, 12, 3, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('021203-02', 1, 1, 0, 2, 12, 3, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('021203-03', 1, 1, 0, 2, 12, 3, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('021204-01', 1, 1, 0, 2, 12, 4, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('021204-02', 1, 1, 0, 2, 12, 4, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('021204-03', 1, 1, 0, 2, 12, 4, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('021205-01', 1, 1, 0, 2, 12, 5, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('021205-02', 1, 1, 0, 2, 12, 5, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('021205-03', 1, 1, 0, 2, 12, 5, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('021206-01', 1, 1, 0, 2, 12, 6, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('021206-02', 1, 1, 0, 2, 12, 6, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('021206-03', 1, 1, 0, 2, 12, 6, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('021207-01', 1, 1, 0, 2, 12, 7, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('021207-02', 1, 1, 0, 2, 12, 7, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('021207-03', 1, 1, 0, 2, 12, 7, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('021208-01', 1, 1, 0, 2, 12, 8, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('021208-02', 1, 1, 0, 2, 12, 8, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('021208-03', 1, 1, 0, 2, 12, 8, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('021209-01', 1, 1, 0, 2, 12, 9, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('021209-02', 1, 1, 0, 2, 12, 9, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('021209-03', 1, 1, 0, 2, 12, 9, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('021210-01', 1, 1, 0, 2, 12, 10, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('021210-02', 1, 1, 0, 2, 12, 10, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('021210-03', 1, 1, 0, 2, 12, 10, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('021211-01', 1, 1, 0, 2, 12, 11, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('021211-02', 1, 1, 0, 2, 12, 11, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('021211-03', 1, 1, 0, 2, 12, 11, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('021301-01', 1, 1, 0, 2, 13, 1, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('021301-02', 1, 1, 0, 2, 13, 1, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('021301-03', 1, 1, 0, 2, 13, 1, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('021302-01', 1, 1, 0, 2, 13, 2, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('021302-02', 1, 1, 0, 2, 13, 2, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('021302-03', 1, 1, 0, 2, 13, 2, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('021303-01', 1, 1, 0, 2, 13, 3, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('021303-02', 1, 1, 0, 2, 13, 3, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('021303-03', 1, 1, 0, 2, 13, 3, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('021304-01', 1, 1, 0, 2, 13, 4, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('021304-02', 1, 1, 0, 2, 13, 4, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('021304-03', 1, 1, 0, 2, 13, 4, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('021305-01', 1, 1, 0, 2, 13, 5, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('021305-02', 1, 1, 0, 2, 13, 5, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('021305-03', 1, 1, 0, 2, 13, 5, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('021306-01', 1, 1, 0, 2, 13, 6, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('021306-02', 1, 1, 0, 2, 13, 6, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('021306-03', 1, 1, 0, 2, 13, 6, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('021307-01', 1, 1, 0, 2, 13, 7, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('021307-02', 1, 1, 0, 2, 13, 7, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('021307-03', 1, 1, 0, 2, 13, 7, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('021308-01', 1, 1, 0, 2, 13, 8, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('021308-02', 1, 1, 0, 2, 13, 8, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('021308-03', 1, 1, 0, 2, 13, 8, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('021309-01', 1, 1, 0, 2, 13, 9, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('021309-02', 1, 1, 0, 2, 13, 9, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('021309-03', 1, 1, 0, 2, 13, 9, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('021310-01', 1, 1, 0, 2, 13, 10, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('021310-02', 1, 1, 0, 2, 13, 10, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('021310-03', 1, 1, 0, 2, 13, 10, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('021311-01', 1, 1, 0, 2, 13, 11, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('021311-02', 1, 1, 0, 2, 13, 11, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('021311-03', 1, 1, 0, 2, 13, 11, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('021401-01', 1, 1, 0, 2, 14, 1, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('021401-02', 1, 1, 0, 2, 14, 1, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('021401-03', 1, 1, 0, 2, 14, 1, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('021402-01', 1, 1, 0, 2, 14, 2, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('021402-02', 1, 1, 0, 2, 14, 2, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('021402-03', 1, 1, 0, 2, 14, 2, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('021403-01', 1, 1, 0, 2, 14, 3, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('021403-02', 1, 1, 0, 2, 14, 3, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('021403-03', 1, 1, 0, 2, 14, 3, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('021404-01', 1, 1, 0, 2, 14, 4, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('021404-02', 1, 1, 0, 2, 14, 4, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('021404-03', 1, 1, 0, 2, 14, 4, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('021405-01', 1, 1, 0, 2, 14, 5, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('021405-02', 1, 1, 0, 2, 14, 5, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('021405-03', 1, 1, 0, 2, 14, 5, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('021406-01', 1, 1, 0, 2, 14, 6, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('021406-02', 1, 1, 0, 2, 14, 6, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('021406-03', 1, 1, 0, 2, 14, 6, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('021407-01', 1, 1, 0, 2, 14, 7, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('021407-02', 1, 1, 0, 2, 14, 7, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('021407-03', 1, 1, 0, 2, 14, 7, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('021408-01', 1, 1, 0, 2, 14, 8, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('021408-02', 1, 1, 0, 2, 14, 8, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('021408-03', 1, 1, 0, 2, 14, 8, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('021409-01', 1, 1, 0, 2, 14, 9, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('021409-02', 1, 1, 0, 2, 14, 9, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('021409-03', 1, 1, 0, 2, 14, 9, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('021410-01', 1, 1, 0, 2, 14, 10, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('021410-02', 1, 1, 0, 2, 14, 10, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('021410-03', 1, 1, 0, 2, 14, 10, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('021411-01', 1, 1, 0, 2, 14, 11, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('021411-02', 1, 1, 0, 2, 14, 11, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('021411-03', 1, 1, 0, 2, 14, 11, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('021501-01', 1, 1, 0, 2, 15, 1, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('021501-02', 1, 1, 0, 2, 15, 1, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('021501-03', 1, 1, 0, 2, 15, 1, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('021502-01', 1, 1, 0, 2, 15, 2, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('021502-02', 1, 1, 0, 2, 15, 2, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('021502-03', 1, 1, 0, 2, 15, 2, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('021503-01', 1, 1, 0, 2, 15, 3, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('021503-02', 1, 1, 0, 2, 15, 3, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('021503-03', 1, 1, 0, 2, 15, 3, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('021504-01', 1, 1, 0, 2, 15, 4, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('021504-02', 1, 1, 0, 2, 15, 4, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('021504-03', 1, 1, 0, 2, 15, 4, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('021505-01', 1, 1, 0, 2, 15, 5, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('021505-02', 1, 1, 0, 2, 15, 5, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('021505-03', 1, 1, 0, 2, 15, 5, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('021506-01', 1, 1, 0, 2, 15, 6, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('021506-02', 1, 1, 0, 2, 15, 6, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('021506-03', 1, 1, 0, 2, 15, 6, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('021507-01', 1, 1, 0, 2, 15, 7, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('021507-02', 1, 1, 0, 2, 15, 7, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('021507-03', 1, 1, 0, 2, 15, 7, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('021508-01', 1, 1, 0, 2, 15, 8, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('021508-02', 1, 1, 0, 2, 15, 8, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('021508-03', 1, 1, 0, 2, 15, 8, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('021509-01', 1, 1, 0, 2, 15, 9, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('021509-02', 1, 1, 0, 2, 15, 9, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('021509-03', 1, 1, 0, 2, 15, 9, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('021510-01', 1, 1, 0, 2, 15, 10, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('021510-02', 1, 1, 0, 2, 15, 10, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('021510-03', 1, 1, 0, 2, 15, 10, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('021511-01', 1, 1, 0, 2, 15, 11, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('021511-02', 1, 1, 0, 2, 15, 11, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('021511-03', 1, 1, 0, 2, 15, 11, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('021601-01', 1, 1, 0, 2, 16, 1, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('021601-02', 1, 1, 0, 2, 16, 1, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('021601-03', 1, 1, 0, 2, 16, 1, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('021602-01', 1, 1, 0, 2, 16, 2, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('021602-02', 1, 1, 0, 2, 16, 2, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('021602-03', 1, 1, 0, 2, 16, 2, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('021603-01', 1, 1, 0, 2, 16, 3, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('021603-02', 1, 1, 0, 2, 16, 3, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('021603-03', 1, 1, 0, 2, 16, 3, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('021604-01', 1, 1, 0, 2, 16, 4, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('021604-02', 1, 1, 0, 2, 16, 4, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('021604-03', 1, 1, 0, 2, 16, 4, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('021605-01', 1, 1, 0, 2, 16, 5, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('021605-02', 1, 1, 0, 2, 16, 5, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('021605-03', 1, 1, 0, 2, 16, 5, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('021606-01', 1, 1, 0, 2, 16, 6, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('021606-02', 1, 1, 0, 2, 16, 6, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('021606-03', 1, 1, 0, 2, 16, 6, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('021607-01', 1, 1, 0, 2, 16, 7, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('021607-02', 1, 1, 0, 2, 16, 7, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('021607-03', 1, 1, 0, 2, 16, 7, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('021608-01', 1, 1, 0, 2, 16, 8, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('021608-02', 1, 1, 0, 2, 16, 8, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('021608-03', 1, 1, 0, 2, 16, 8, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('021609-01', 1, 1, 0, 2, 16, 9, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('021609-02', 1, 1, 0, 2, 16, 9, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('021609-03', 1, 1, 0, 2, 16, 9, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('021610-01', 1, 1, 0, 2, 16, 10, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('021610-02', 1, 1, 0, 2, 16, 10, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('021610-03', 1, 1, 0, 2, 16, 10, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('021611-01', 1, 1, 0, 2, 16, 11, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('021611-02', 1, 1, 0, 2, 16, 11, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('021611-03', 1, 1, 0, 2, 16, 11, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('021701-01', 1, 1, 0, 2, 17, 1, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('021701-02', 1, 1, 0, 2, 17, 1, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('021701-03', 1, 1, 0, 2, 17, 1, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('021702-01', 1, 1, 0, 2, 17, 2, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('021702-02', 1, 1, 0, 2, 17, 2, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('021702-03', 1, 1, 0, 2, 17, 2, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('021703-01', 1, 1, 0, 2, 17, 3, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('021703-02', 1, 1, 0, 2, 17, 3, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('021703-03', 1, 1, 0, 2, 17, 3, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('021704-01', 1, 1, 0, 2, 17, 4, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('021704-02', 1, 1, 0, 2, 17, 4, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('021704-03', 1, 1, 0, 2, 17, 4, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('021705-01', 1, 1, 0, 2, 17, 5, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('021705-02', 1, 1, 0, 2, 17, 5, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('021705-03', 1, 1, 0, 2, 17, 5, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('021706-01', 1, 1, 0, 2, 17, 6, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('021706-02', 1, 1, 0, 2, 17, 6, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('021706-03', 1, 1, 0, 2, 17, 6, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('021707-01', 1, 1, 0, 2, 17, 7, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('021707-02', 1, 1, 0, 2, 17, 7, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('021707-03', 1, 1, 0, 2, 17, 7, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('021708-01', 1, 1, 0, 2, 17, 8, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('021708-02', 1, 1, 0, 2, 17, 8, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('021708-03', 1, 1, 0, 2, 17, 8, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('021709-01', 1, 1, 0, 2, 17, 9, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('021709-02', 1, 1, 0, 2, 17, 9, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('021709-03', 1, 1, 0, 2, 17, 9, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('021710-01', 1, 1, 0, 2, 17, 10, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('021710-02', 1, 1, 0, 2, 17, 10, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('021710-03', 1, 1, 0, 2, 17, 10, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('021711-01', 1, 1, 0, 2, 17, 11, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('021711-02', 1, 1, 0, 2, 17, 11, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('021711-03', 1, 1, 0, 2, 17, 11, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('021801-01', 1, 1, 0, 2, 18, 1, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('021801-02', 1, 1, 0, 2, 18, 1, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('021801-03', 1, 1, 0, 2, 18, 1, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('021802-01', 1, 1, 0, 2, 18, 2, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('021802-02', 1, 1, 0, 2, 18, 2, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('021802-03', 1, 1, 0, 2, 18, 2, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('021803-01', 1, 1, 0, 2, 18, 3, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('021803-02', 1, 1, 0, 2, 18, 3, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('021803-03', 1, 1, 0, 2, 18, 3, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('021804-01', 1, 1, 0, 2, 18, 4, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('021804-02', 1, 1, 0, 2, 18, 4, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('021804-03', 1, 1, 0, 2, 18, 4, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('021805-01', 1, 1, 0, 2, 18, 5, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('021805-02', 1, 1, 0, 2, 18, 5, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('021805-03', 1, 1, 0, 2, 18, 5, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('021806-01', 1, 1, 0, 2, 18, 6, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('021806-02', 1, 1, 0, 2, 18, 6, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('021806-03', 1, 1, 0, 2, 18, 6, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('021807-01', 1, 1, 0, 2, 18, 7, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('021807-02', 1, 1, 0, 2, 18, 7, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('021807-03', 1, 1, 0, 2, 18, 7, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('021808-01', 1, 1, 0, 2, 18, 8, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('021808-02', 1, 1, 0, 2, 18, 8, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('021808-03', 1, 1, 0, 2, 18, 8, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('021809-01', 1, 1, 0, 2, 18, 9, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('021809-02', 1, 1, 0, 2, 18, 9, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('021809-03', 1, 1, 0, 2, 18, 9, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('021810-01', 1, 1, 0, 2, 18, 10, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('021810-02', 1, 1, 0, 2, 18, 10, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('021810-03', 1, 1, 0, 2, 18, 10, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('021811-01', 1, 1, 0, 2, 18, 11, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('021811-02', 1, 1, 0, 2, 18, 11, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('021811-03', 1, 1, 0, 2, 18, 11, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('030101-01', 1, 2, 0, 3, 1, 1, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('030101-02', 1, 2, 0, 3, 1, 1, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('030101-03', 1, 2, 0, 3, 1, 1, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('030102-01', 1, 2, 0, 3, 1, 2, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('030102-02', 1, 2, 0, 3, 1, 2, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('030102-03', 1, 2, 0, 3, 1, 2, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('030103-01', 1, 2, 0, 3, 1, 3, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('030103-02', 1, 2, 0, 3, 1, 3, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('030103-03', 1, 2, 0, 3, 1, 3, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('030104-01', 1, 2, 0, 3, 1, 4, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('030104-02', 1, 2, 0, 3, 1, 4, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('030104-03', 1, 2, 0, 3, 1, 4, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('030105-01', 1, 2, 0, 3, 1, 5, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('030105-02', 1, 2, 0, 3, 1, 5, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('030105-03', 1, 2, 0, 3, 1, 5, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('030106-01', 1, 2, 0, 3, 1, 6, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('030106-02', 1, 2, 0, 3, 1, 6, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('030106-03', 1, 2, 0, 3, 1, 6, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('030107-01', 1, 2, 0, 3, 1, 7, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('030107-02', 1, 2, 0, 3, 1, 7, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('030107-03', 1, 2, 0, 3, 1, 7, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('030108-01', 1, 2, 0, 3, 1, 8, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('030108-02', 1, 2, 0, 3, 1, 8, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('030108-03', 1, 2, 0, 3, 1, 8, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('030109-01', 1, 2, 0, 3, 1, 9, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('030109-02', 1, 2, 0, 3, 1, 9, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('030109-03', 1, 2, 0, 3, 1, 9, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('030110-01', 1, 2, 0, 3, 1, 10, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('030110-02', 1, 2, 0, 3, 1, 10, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('030110-03', 1, 2, 0, 3, 1, 10, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('030111-01', 1, 2, 0, 3, 1, 11, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('030111-02', 1, 2, 0, 3, 1, 11, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('030111-03', 1, 2, 0, 3, 1, 11, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('030201-01', 1, 2, 0, 3, 2, 1, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('030201-02', 1, 2, 0, 3, 2, 1, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('030201-03', 1, 2, 0, 3, 2, 1, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('030202-01', 1, 2, 0, 3, 2, 2, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('030202-02', 1, 2, 0, 3, 2, 2, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('030202-03', 1, 2, 0, 3, 2, 2, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('030203-01', 1, 2, 0, 3, 2, 3, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('030203-02', 1, 2, 0, 3, 2, 3, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('030203-03', 1, 2, 0, 3, 2, 3, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('030204-01', 1, 2, 0, 3, 2, 4, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('030204-02', 1, 2, 0, 3, 2, 4, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('030204-03', 1, 2, 0, 3, 2, 4, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('030205-01', 1, 2, 0, 3, 2, 5, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('030205-02', 1, 2, 0, 3, 2, 5, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('030205-03', 1, 2, 0, 3, 2, 5, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('030206-01', 1, 2, 0, 3, 2, 6, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('030206-02', 1, 2, 0, 3, 2, 6, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('030206-03', 1, 2, 0, 3, 2, 6, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('030207-01', 1, 2, 0, 3, 2, 7, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('030207-02', 1, 2, 0, 3, 2, 7, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('030207-03', 1, 2, 0, 3, 2, 7, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('030208-01', 1, 2, 0, 3, 2, 8, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('030208-02', 1, 2, 0, 3, 2, 8, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('030208-03', 1, 2, 0, 3, 2, 8, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('030209-01', 1, 2, 0, 3, 2, 9, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('030209-02', 1, 2, 0, 3, 2, 9, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('030209-03', 1, 2, 0, 3, 2, 9, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('030210-01', 1, 2, 0, 3, 2, 10, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('030210-02', 1, 2, 0, 3, 2, 10, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('030210-03', 1, 2, 0, 3, 2, 10, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('030211-01', 1, 2, 0, 3, 2, 11, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('030211-02', 1, 2, 0, 3, 2, 11, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('030211-03', 1, 2, 0, 3, 2, 11, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('030301-01', 1, 2, 0, 3, 3, 1, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('030301-02', 1, 2, 0, 3, 3, 1, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('030301-03', 1, 2, 0, 3, 3, 1, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('030302-01', 1, 2, 0, 3, 3, 2, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('030302-02', 1, 2, 0, 3, 3, 2, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('030302-03', 1, 2, 0, 3, 3, 2, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('030303-01', 1, 2, 0, 3, 3, 3, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('030303-02', 1, 2, 0, 3, 3, 3, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('030303-03', 1, 2, 0, 3, 3, 3, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('030304-01', 1, 2, 0, 3, 3, 4, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('030304-02', 1, 2, 0, 3, 3, 4, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('030304-03', 1, 2, 0, 3, 3, 4, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('030305-01', 1, 2, 0, 3, 3, 5, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('030305-02', 1, 2, 0, 3, 3, 5, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('030305-03', 1, 2, 0, 3, 3, 5, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('030306-01', 1, 2, 0, 3, 3, 6, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('030306-02', 1, 2, 0, 3, 3, 6, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('030306-03', 1, 2, 0, 3, 3, 6, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('030307-01', 1, 2, 0, 3, 3, 7, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('030307-02', 1, 2, 0, 3, 3, 7, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('030307-03', 1, 2, 0, 3, 3, 7, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('030308-01', 1, 2, 0, 3, 3, 8, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('030308-02', 1, 2, 0, 3, 3, 8, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('030308-03', 1, 2, 0, 3, 3, 8, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('030309-01', 1, 2, 0, 3, 3, 9, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('030309-02', 1, 2, 0, 3, 3, 9, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('030309-03', 1, 2, 0, 3, 3, 9, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('030310-01', 1, 2, 0, 3, 3, 10, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('030310-02', 1, 2, 0, 3, 3, 10, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('030310-03', 1, 2, 0, 3, 3, 10, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('030311-01', 1, 2, 0, 3, 3, 11, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('030311-02', 1, 2, 0, 3, 3, 11, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('030311-03', 1, 2, 0, 3, 3, 11, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('030401-01', 1, 2, 0, 3, 4, 1, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('030401-02', 1, 2, 0, 3, 4, 1, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('030401-03', 1, 2, 0, 3, 4, 1, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('030402-01', 1, 2, 0, 3, 4, 2, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('030402-02', 1, 2, 0, 3, 4, 2, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('030402-03', 1, 2, 0, 3, 4, 2, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('030403-01', 1, 2, 0, 3, 4, 3, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('030403-02', 1, 2, 0, 3, 4, 3, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('030403-03', 1, 2, 0, 3, 4, 3, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('030404-01', 1, 2, 0, 3, 4, 4, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('030404-02', 1, 2, 0, 3, 4, 4, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('030404-03', 1, 2, 0, 3, 4, 4, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('030405-01', 1, 2, 0, 3, 4, 5, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('030405-02', 1, 2, 0, 3, 4, 5, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('030405-03', 1, 2, 0, 3, 4, 5, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('030406-01', 1, 2, 0, 3, 4, 6, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('030406-02', 1, 2, 0, 3, 4, 6, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('030406-03', 1, 2, 0, 3, 4, 6, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('030407-01', 1, 2, 0, 3, 4, 7, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('030407-02', 1, 2, 0, 3, 4, 7, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('030407-03', 1, 2, 0, 3, 4, 7, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('030408-01', 1, 2, 0, 3, 4, 8, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('030408-02', 1, 2, 0, 3, 4, 8, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('030408-03', 1, 2, 0, 3, 4, 8, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('030409-01', 1, 2, 0, 3, 4, 9, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('030409-02', 1, 2, 0, 3, 4, 9, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('030409-03', 1, 2, 0, 3, 4, 9, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('030410-01', 1, 2, 0, 3, 4, 10, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('030410-02', 1, 2, 0, 3, 4, 10, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('030410-03', 1, 2, 0, 3, 4, 10, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('030411-01', 1, 2, 0, 3, 4, 11, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('030411-02', 1, 2, 0, 3, 4, 11, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('030411-03', 1, 2, 0, 3, 4, 11, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('030501-01', 1, 2, 0, 3, 5, 1, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('030501-02', 1, 2, 0, 3, 5, 1, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('030501-03', 1, 2, 0, 3, 5, 1, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('030502-01', 1, 2, 0, 3, 5, 2, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('030502-02', 1, 2, 0, 3, 5, 2, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('030502-03', 1, 2, 0, 3, 5, 2, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('030503-01', 1, 2, 0, 3, 5, 3, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('030503-02', 1, 2, 0, 3, 5, 3, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('030503-03', 1, 2, 0, 3, 5, 3, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('030504-01', 1, 2, 0, 3, 5, 4, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('030504-02', 1, 2, 0, 3, 5, 4, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('030504-03', 1, 2, 0, 3, 5, 4, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('030505-01', 1, 2, 0, 3, 5, 5, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('030505-02', 1, 2, 0, 3, 5, 5, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('030505-03', 1, 2, 0, 3, 5, 5, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('030506-01', 1, 2, 0, 3, 5, 6, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('030506-02', 1, 2, 0, 3, 5, 6, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('030506-03', 1, 2, 0, 3, 5, 6, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('030507-01', 1, 2, 0, 3, 5, 7, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('030507-02', 1, 2, 0, 3, 5, 7, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('030507-03', 1, 2, 0, 3, 5, 7, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('030508-01', 1, 2, 0, 3, 5, 8, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('030508-02', 1, 2, 0, 3, 5, 8, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('030508-03', 1, 2, 0, 3, 5, 8, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('030509-01', 1, 2, 0, 3, 5, 9, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('030509-02', 1, 2, 0, 3, 5, 9, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('030509-03', 1, 2, 0, 3, 5, 9, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('030510-01', 1, 2, 0, 3, 5, 10, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('030510-02', 1, 2, 0, 3, 5, 10, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('030510-03', 1, 2, 0, 3, 5, 10, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('030511-01', 1, 2, 0, 3, 5, 11, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('030511-02', 1, 2, 0, 3, 5, 11, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('030511-03', 1, 2, 0, 3, 5, 11, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('030601-01', 1, 2, 0, 3, 6, 1, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('030601-02', 1, 2, 0, 3, 6, 1, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('030601-03', 1, 2, 0, 3, 6, 1, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('030602-01', 1, 2, 0, 3, 6, 2, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('030602-02', 1, 2, 0, 3, 6, 2, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('030602-03', 1, 2, 0, 3, 6, 2, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('030603-01', 1, 2, 0, 3, 6, 3, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('030603-02', 1, 2, 0, 3, 6, 3, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('030603-03', 1, 2, 0, 3, 6, 3, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('030604-01', 1, 2, 0, 3, 6, 4, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('030604-02', 1, 2, 0, 3, 6, 4, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('030604-03', 1, 2, 0, 3, 6, 4, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('030605-01', 1, 2, 0, 3, 6, 5, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('030605-02', 1, 2, 0, 3, 6, 5, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('030605-03', 1, 2, 0, 3, 6, 5, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('030606-01', 1, 2, 0, 3, 6, 6, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('030606-02', 1, 2, 0, 3, 6, 6, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('030606-03', 1, 2, 0, 3, 6, 6, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('030607-01', 1, 2, 0, 3, 6, 7, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('030607-02', 1, 2, 0, 3, 6, 7, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('030607-03', 1, 2, 0, 3, 6, 7, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('030608-01', 1, 2, 0, 3, 6, 8, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('030608-02', 1, 2, 0, 3, 6, 8, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('030608-03', 1, 2, 0, 3, 6, 8, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('030609-01', 1, 2, 0, 3, 6, 9, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('030609-02', 1, 2, 0, 3, 6, 9, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('030609-03', 1, 2, 0, 3, 6, 9, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('030610-01', 1, 2, 0, 3, 6, 10, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('030610-02', 1, 2, 0, 3, 6, 10, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('030610-03', 1, 2, 0, 3, 6, 10, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('030611-01', 1, 2, 0, 3, 6, 11, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('030611-02', 1, 2, 0, 3, 6, 11, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('030611-03', 1, 2, 0, 3, 6, 11, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('030701-01', 1, 2, 0, 3, 7, 1, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('030701-02', 1, 2, 0, 3, 7, 1, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('030701-03', 1, 2, 0, 3, 7, 1, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('030702-01', 1, 2, 0, 3, 7, 2, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('030702-02', 1, 2, 0, 3, 7, 2, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('030702-03', 1, 2, 0, 3, 7, 2, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('030703-01', 1, 2, 0, 3, 7, 3, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('030703-02', 1, 2, 0, 3, 7, 3, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('030703-03', 1, 2, 0, 3, 7, 3, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('030704-01', 1, 2, 0, 3, 7, 4, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('030704-02', 1, 2, 0, 3, 7, 4, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('030704-03', 1, 2, 0, 3, 7, 4, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('030705-01', 1, 2, 0, 3, 7, 5, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('030705-02', 1, 2, 0, 3, 7, 5, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('030705-03', 1, 2, 0, 3, 7, 5, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('030706-01', 1, 2, 0, 3, 7, 6, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('030706-02', 1, 2, 0, 3, 7, 6, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('030706-03', 1, 2, 0, 3, 7, 6, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('030707-01', 1, 2, 0, 3, 7, 7, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('030707-02', 1, 2, 0, 3, 7, 7, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('030707-03', 1, 2, 0, 3, 7, 7, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('030708-01', 1, 2, 0, 3, 7, 8, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('030708-02', 1, 2, 0, 3, 7, 8, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('030708-03', 1, 2, 0, 3, 7, 8, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('030709-01', 1, 2, 0, 3, 7, 9, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('030709-02', 1, 2, 0, 3, 7, 9, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('030709-03', 1, 2, 0, 3, 7, 9, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('030710-01', 1, 2, 0, 3, 7, 10, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('030710-02', 1, 2, 0, 3, 7, 10, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('030710-03', 1, 2, 0, 3, 7, 10, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('030711-01', 1, 2, 0, 3, 7, 11, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('030711-02', 1, 2, 0, 3, 7, 11, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('030711-03', 1, 2, 0, 3, 7, 11, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('030801-01', 1, 2, 0, 3, 8, 1, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('030801-02', 1, 2, 0, 3, 8, 1, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('030801-03', 1, 2, 0, 3, 8, 1, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('030802-01', 1, 2, 0, 3, 8, 2, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('030802-02', 1, 2, 0, 3, 8, 2, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('030802-03', 1, 2, 0, 3, 8, 2, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('030803-01', 1, 2, 0, 3, 8, 3, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('030803-02', 1, 2, 0, 3, 8, 3, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('030803-03', 1, 2, 0, 3, 8, 3, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('030804-01', 1, 2, 0, 3, 8, 4, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('030804-02', 1, 2, 0, 3, 8, 4, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('030804-03', 1, 2, 0, 3, 8, 4, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('030805-01', 1, 2, 0, 3, 8, 5, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('030805-02', 1, 2, 0, 3, 8, 5, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('030805-03', 1, 2, 0, 3, 8, 5, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('030806-01', 1, 2, 0, 3, 8, 6, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('030806-02', 1, 2, 0, 3, 8, 6, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('030806-03', 1, 2, 0, 3, 8, 6, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('030807-01', 1, 2, 0, 3, 8, 7, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('030807-02', 1, 2, 0, 3, 8, 7, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('030807-03', 1, 2, 0, 3, 8, 7, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('030808-01', 1, 2, 0, 3, 8, 8, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('030808-02', 1, 2, 0, 3, 8, 8, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('030808-03', 1, 2, 0, 3, 8, 8, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('030809-01', 1, 2, 0, 3, 8, 9, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('030809-02', 1, 2, 0, 3, 8, 9, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('030809-03', 1, 2, 0, 3, 8, 9, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('030810-01', 1, 2, 0, 3, 8, 10, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('030810-02', 1, 2, 0, 3, 8, 10, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('030810-03', 1, 2, 0, 3, 8, 10, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('030811-01', 1, 2, 0, 3, 8, 11, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('030811-02', 1, 2, 0, 3, 8, 11, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('030811-03', 1, 2, 0, 3, 8, 11, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('030901-01', 1, 2, 0, 3, 9, 1, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('030901-02', 1, 2, 0, 3, 9, 1, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('030901-03', 1, 2, 0, 3, 9, 1, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('030902-01', 1, 2, 0, 3, 9, 2, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('030902-02', 1, 2, 0, 3, 9, 2, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('030902-03', 1, 2, 0, 3, 9, 2, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('030903-01', 1, 2, 0, 3, 9, 3, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('030903-02', 1, 2, 0, 3, 9, 3, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('030903-03', 1, 2, 0, 3, 9, 3, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('030904-01', 1, 2, 0, 3, 9, 4, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('030904-02', 1, 2, 0, 3, 9, 4, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('030904-03', 1, 2, 0, 3, 9, 4, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('030905-01', 1, 2, 0, 3, 9, 5, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('030905-02', 1, 2, 0, 3, 9, 5, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('030905-03', 1, 2, 0, 3, 9, 5, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('030906-01', 1, 2, 0, 3, 9, 6, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('030906-02', 1, 2, 0, 3, 9, 6, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('030906-03', 1, 2, 0, 3, 9, 6, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('030907-01', 1, 2, 0, 3, 9, 7, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('030907-02', 1, 2, 0, 3, 9, 7, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('030907-03', 1, 2, 0, 3, 9, 7, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('030908-01', 1, 2, 0, 3, 9, 8, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('030908-02', 1, 2, 0, 3, 9, 8, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('030908-03', 1, 2, 0, 3, 9, 8, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('030909-01', 1, 2, 0, 3, 9, 9, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('030909-02', 1, 2, 0, 3, 9, 9, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('030909-03', 1, 2, 0, 3, 9, 9, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('030910-01', 1, 2, 0, 3, 9, 10, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('030910-02', 1, 2, 0, 3, 9, 10, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('030910-03', 1, 2, 0, 3, 9, 10, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('030911-01', 1, 2, 0, 3, 9, 11, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('030911-02', 1, 2, 0, 3, 9, 11, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('030911-03', 1, 2, 0, 3, 9, 11, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('031001-01', 1, 2, 0, 3, 10, 1, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('031001-02', 1, 2, 0, 3, 10, 1, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('031001-03', 1, 2, 0, 3, 10, 1, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('031002-01', 1, 2, 0, 3, 10, 2, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('031002-02', 1, 2, 0, 3, 10, 2, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('031002-03', 1, 2, 0, 3, 10, 2, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('031003-01', 1, 2, 0, 3, 10, 3, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('031003-02', 1, 2, 0, 3, 10, 3, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('031003-03', 1, 2, 0, 3, 10, 3, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('031004-01', 1, 2, 0, 3, 10, 4, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('031004-02', 1, 2, 0, 3, 10, 4, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('031004-03', 1, 2, 0, 3, 10, 4, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('031005-01', 1, 2, 0, 3, 10, 5, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('031005-02', 1, 2, 0, 3, 10, 5, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('031005-03', 1, 2, 0, 3, 10, 5, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('031006-01', 1, 2, 0, 3, 10, 6, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('031006-02', 1, 2, 0, 3, 10, 6, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('031006-03', 1, 2, 0, 3, 10, 6, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('031007-01', 1, 2, 0, 3, 10, 7, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('031007-02', 1, 2, 0, 3, 10, 7, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('031007-03', 1, 2, 0, 3, 10, 7, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('031008-01', 1, 2, 0, 3, 10, 8, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('031008-02', 1, 2, 0, 3, 10, 8, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('031008-03', 1, 2, 0, 3, 10, 8, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('031009-01', 1, 2, 0, 3, 10, 9, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('031009-02', 1, 2, 0, 3, 10, 9, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('031009-03', 1, 2, 0, 3, 10, 9, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('031010-01', 1, 2, 0, 3, 10, 10, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('031010-02', 1, 2, 0, 3, 10, 10, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('031010-03', 1, 2, 0, 3, 10, 10, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('031011-01', 1, 2, 0, 3, 10, 11, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('031011-02', 1, 2, 0, 3, 10, 11, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('031011-03', 1, 2, 0, 3, 10, 11, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('031101-01', 1, 2, 0, 3, 11, 1, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('031101-02', 1, 2, 0, 3, 11, 1, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('031101-03', 1, 2, 0, 3, 11, 1, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('031102-01', 1, 2, 0, 3, 11, 2, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('031102-02', 1, 2, 0, 3, 11, 2, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('031102-03', 1, 2, 0, 3, 11, 2, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('031103-01', 1, 2, 0, 3, 11, 3, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('031103-02', 1, 2, 0, 3, 11, 3, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('031103-03', 1, 2, 0, 3, 11, 3, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('031104-01', 1, 2, 0, 3, 11, 4, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('031104-02', 1, 2, 0, 3, 11, 4, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('031104-03', 1, 2, 0, 3, 11, 4, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('031105-01', 1, 2, 0, 3, 11, 5, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('031105-02', 1, 2, 0, 3, 11, 5, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('031105-03', 1, 2, 0, 3, 11, 5, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('031106-01', 1, 2, 0, 3, 11, 6, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('031106-02', 1, 2, 0, 3, 11, 6, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('031106-03', 1, 2, 0, 3, 11, 6, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('031107-01', 1, 2, 0, 3, 11, 7, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('031107-02', 1, 2, 0, 3, 11, 7, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('031107-03', 1, 2, 0, 3, 11, 7, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('031108-01', 1, 2, 0, 3, 11, 8, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('031108-02', 1, 2, 0, 3, 11, 8, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('031108-03', 1, 2, 0, 3, 11, 8, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('031109-01', 1, 2, 0, 3, 11, 9, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('031109-02', 1, 2, 0, 3, 11, 9, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('031109-03', 1, 2, 0, 3, 11, 9, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('031110-01', 1, 2, 0, 3, 11, 10, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('031110-02', 1, 2, 0, 3, 11, 10, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('031110-03', 1, 2, 0, 3, 11, 10, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('031111-01', 1, 2, 0, 3, 11, 11, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('031111-02', 1, 2, 0, 3, 11, 11, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('031111-03', 1, 2, 0, 3, 11, 11, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('031201-01', 1, 2, 0, 3, 12, 1, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('031201-02', 1, 2, 0, 3, 12, 1, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('031201-03', 1, 2, 0, 3, 12, 1, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('031202-01', 1, 2, 0, 3, 12, 2, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('031202-02', 1, 2, 0, 3, 12, 2, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('031202-03', 1, 2, 0, 3, 12, 2, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('031203-01', 1, 2, 0, 3, 12, 3, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('031203-02', 1, 2, 0, 3, 12, 3, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('031203-03', 1, 2, 0, 3, 12, 3, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('031204-01', 1, 2, 0, 3, 12, 4, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('031204-02', 1, 2, 0, 3, 12, 4, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('031204-03', 1, 2, 0, 3, 12, 4, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('031205-01', 1, 2, 0, 3, 12, 5, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('031205-02', 1, 2, 0, 3, 12, 5, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('031205-03', 1, 2, 0, 3, 12, 5, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('031206-01', 1, 2, 0, 3, 12, 6, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('031206-02', 1, 2, 0, 3, 12, 6, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('031206-03', 1, 2, 0, 3, 12, 6, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('031207-01', 1, 2, 0, 3, 12, 7, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('031207-02', 1, 2, 0, 3, 12, 7, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('031207-03', 1, 2, 0, 3, 12, 7, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('031208-01', 1, 2, 0, 3, 12, 8, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('031208-02', 1, 2, 0, 3, 12, 8, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('031208-03', 1, 2, 0, 3, 12, 8, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('031209-01', 1, 2, 0, 3, 12, 9, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('031209-02', 1, 2, 0, 3, 12, 9, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('031209-03', 1, 2, 0, 3, 12, 9, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('031210-01', 1, 2, 0, 3, 12, 10, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('031210-02', 1, 2, 0, 3, 12, 10, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('031210-03', 1, 2, 0, 3, 12, 10, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('031211-01', 1, 2, 0, 3, 12, 11, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('031211-02', 1, 2, 0, 3, 12, 11, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('031211-03', 1, 2, 0, 3, 12, 11, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('031301-01', 1, 2, 0, 3, 13, 1, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('031301-02', 1, 2, 0, 3, 13, 1, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('031301-03', 1, 2, 0, 3, 13, 1, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('031302-01', 1, 2, 0, 3, 13, 2, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('031302-02', 1, 2, 0, 3, 13, 2, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('031302-03', 1, 2, 0, 3, 13, 2, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('031303-01', 1, 2, 0, 3, 13, 3, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('031303-02', 1, 2, 0, 3, 13, 3, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('031303-03', 1, 2, 0, 3, 13, 3, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('031304-01', 1, 2, 0, 3, 13, 4, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('031304-02', 1, 2, 0, 3, 13, 4, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('031304-03', 1, 2, 0, 3, 13, 4, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('031305-01', 1, 2, 0, 3, 13, 5, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('031305-02', 1, 2, 0, 3, 13, 5, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('031305-03', 1, 2, 0, 3, 13, 5, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('031306-01', 1, 2, 0, 3, 13, 6, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('031306-02', 1, 2, 0, 3, 13, 6, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('031306-03', 1, 2, 0, 3, 13, 6, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('031307-01', 1, 2, 0, 3, 13, 7, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('031307-02', 1, 2, 0, 3, 13, 7, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('031307-03', 1, 2, 0, 3, 13, 7, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('031308-01', 1, 2, 0, 3, 13, 8, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('031308-02', 1, 2, 0, 3, 13, 8, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('031308-03', 1, 2, 0, 3, 13, 8, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('031309-01', 1, 2, 0, 3, 13, 9, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('031309-02', 1, 2, 0, 3, 13, 9, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('031309-03', 1, 2, 0, 3, 13, 9, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('031310-01', 1, 2, 0, 3, 13, 10, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('031310-02', 1, 2, 0, 3, 13, 10, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('031310-03', 1, 2, 0, 3, 13, 10, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('031311-01', 1, 2, 0, 3, 13, 11, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('031311-02', 1, 2, 0, 3, 13, 11, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('031311-03', 1, 2, 0, 3, 13, 11, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('031401-01', 1, 2, 0, 3, 14, 1, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('031401-02', 1, 2, 0, 3, 14, 1, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('031401-03', 1, 2, 0, 3, 14, 1, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('031402-01', 1, 2, 0, 3, 14, 2, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('031402-02', 1, 2, 0, 3, 14, 2, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('031402-03', 1, 2, 0, 3, 14, 2, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('031403-01', 1, 2, 0, 3, 14, 3, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('031403-02', 1, 2, 0, 3, 14, 3, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('031403-03', 1, 2, 0, 3, 14, 3, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('031404-01', 1, 2, 0, 3, 14, 4, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('031404-02', 1, 2, 0, 3, 14, 4, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('031404-03', 1, 2, 0, 3, 14, 4, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('031405-01', 1, 2, 0, 3, 14, 5, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('031405-02', 1, 2, 0, 3, 14, 5, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('031405-03', 1, 2, 0, 3, 14, 5, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('031406-01', 1, 2, 0, 3, 14, 6, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('031406-02', 1, 2, 0, 3, 14, 6, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('031406-03', 1, 2, 0, 3, 14, 6, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('031407-01', 1, 2, 0, 3, 14, 7, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('031407-02', 1, 2, 0, 3, 14, 7, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('031407-03', 1, 2, 0, 3, 14, 7, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('031408-01', 1, 2, 0, 3, 14, 8, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('031408-02', 1, 2, 0, 3, 14, 8, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('031408-03', 1, 2, 0, 3, 14, 8, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('031409-01', 1, 2, 0, 3, 14, 9, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('031409-02', 1, 2, 0, 3, 14, 9, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('031409-03', 1, 2, 0, 3, 14, 9, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('031410-01', 1, 2, 0, 3, 14, 10, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('031410-02', 1, 2, 0, 3, 14, 10, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('031410-03', 1, 2, 0, 3, 14, 10, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('031411-01', 1, 2, 0, 3, 14, 11, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('031411-02', 1, 2, 0, 3, 14, 11, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('031411-03', 1, 2, 0, 3, 14, 11, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('031501-01', 1, 2, 0, 3, 15, 1, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('031501-02', 1, 2, 0, 3, 15, 1, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('031501-03', 1, 2, 0, 3, 15, 1, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('031502-01', 1, 2, 0, 3, 15, 2, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('031502-02', 1, 2, 0, 3, 15, 2, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('031502-03', 1, 2, 0, 3, 15, 2, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('031503-01', 1, 2, 0, 3, 15, 3, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('031503-02', 1, 2, 0, 3, 15, 3, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('031503-03', 1, 2, 0, 3, 15, 3, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('031504-01', 1, 2, 0, 3, 15, 4, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('031504-02', 1, 2, 0, 3, 15, 4, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('031504-03', 1, 2, 0, 3, 15, 4, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('031505-01', 1, 2, 0, 3, 15, 5, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('031505-02', 1, 2, 0, 3, 15, 5, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('031505-03', 1, 2, 0, 3, 15, 5, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('031506-01', 1, 2, 0, 3, 15, 6, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('031506-02', 1, 2, 0, 3, 15, 6, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('031506-03', 1, 2, 0, 3, 15, 6, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('031507-01', 1, 2, 0, 3, 15, 7, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('031507-02', 1, 2, 0, 3, 15, 7, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('031507-03', 1, 2, 0, 3, 15, 7, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('031508-01', 1, 2, 0, 3, 15, 8, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('031508-02', 1, 2, 0, 3, 15, 8, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('031508-03', 1, 2, 0, 3, 15, 8, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('031509-01', 1, 2, 0, 3, 15, 9, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('031509-02', 1, 2, 0, 3, 15, 9, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('031509-03', 1, 2, 0, 3, 15, 9, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('031510-01', 1, 2, 0, 3, 15, 10, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('031510-02', 1, 2, 0, 3, 15, 10, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('031510-03', 1, 2, 0, 3, 15, 10, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('031511-01', 1, 2, 0, 3, 15, 11, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('031511-02', 1, 2, 0, 3, 15, 11, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('031511-03', 1, 2, 0, 3, 15, 11, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('031601-01', 1, 2, 0, 3, 16, 1, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('031601-02', 1, 2, 0, 3, 16, 1, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('031601-03', 1, 2, 0, 3, 16, 1, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('031602-01', 1, 2, 0, 3, 16, 2, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('031602-02', 1, 2, 0, 3, 16, 2, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('031602-03', 1, 2, 0, 3, 16, 2, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('031603-01', 1, 2, 0, 3, 16, 3, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('031603-02', 1, 2, 0, 3, 16, 3, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('031603-03', 1, 2, 0, 3, 16, 3, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('031604-01', 1, 2, 0, 3, 16, 4, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('031604-02', 1, 2, 0, 3, 16, 4, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('031604-03', 1, 2, 0, 3, 16, 4, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('031605-01', 1, 2, 0, 3, 16, 5, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('031605-02', 1, 2, 0, 3, 16, 5, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('031605-03', 1, 2, 0, 3, 16, 5, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('031606-01', 1, 2, 0, 3, 16, 6, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('031606-02', 1, 2, 0, 3, 16, 6, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('031606-03', 1, 2, 0, 3, 16, 6, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('031607-01', 1, 2, 0, 3, 16, 7, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('031607-02', 1, 2, 0, 3, 16, 7, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('031607-03', 1, 2, 0, 3, 16, 7, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('031608-01', 1, 2, 0, 3, 16, 8, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('031608-02', 1, 2, 0, 3, 16, 8, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('031608-03', 1, 2, 0, 3, 16, 8, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('031609-01', 1, 2, 0, 3, 16, 9, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('031609-02', 1, 2, 0, 3, 16, 9, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('031609-03', 1, 2, 0, 3, 16, 9, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('031610-01', 1, 2, 0, 3, 16, 10, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('031610-02', 1, 2, 0, 3, 16, 10, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('031610-03', 1, 2, 0, 3, 16, 10, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('031611-01', 1, 2, 0, 3, 16, 11, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('031611-02', 1, 2, 0, 3, 16, 11, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('031611-03', 1, 2, 0, 3, 16, 11, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('031701-01', 1, 2, 0, 3, 17, 1, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('031701-02', 1, 2, 0, 3, 17, 1, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('031701-03', 1, 2, 0, 3, 17, 1, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('031702-01', 1, 2, 0, 3, 17, 2, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('031702-02', 1, 2, 0, 3, 17, 2, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('031702-03', 1, 2, 0, 3, 17, 2, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('031703-01', 1, 2, 0, 3, 17, 3, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('031703-02', 1, 2, 0, 3, 17, 3, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('031703-03', 1, 2, 0, 3, 17, 3, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('031704-01', 1, 2, 0, 3, 17, 4, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('031704-02', 1, 2, 0, 3, 17, 4, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('031704-03', 1, 2, 0, 3, 17, 4, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('031705-01', 1, 2, 0, 3, 17, 5, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('031705-02', 1, 2, 0, 3, 17, 5, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('031705-03', 1, 2, 0, 3, 17, 5, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('031706-01', 1, 2, 0, 3, 17, 6, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('031706-02', 1, 2, 0, 3, 17, 6, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('031706-03', 1, 2, 0, 3, 17, 6, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('031707-01', 1, 2, 0, 3, 17, 7, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('031707-02', 1, 2, 0, 3, 17, 7, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('031707-03', 1, 2, 0, 3, 17, 7, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('031708-01', 1, 2, 0, 3, 17, 8, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('031708-02', 1, 2, 0, 3, 17, 8, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('031708-03', 1, 2, 0, 3, 17, 8, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('031709-01', 1, 2, 0, 3, 17, 9, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('031709-02', 1, 2, 0, 3, 17, 9, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('031709-03', 1, 2, 0, 3, 17, 9, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('031710-01', 1, 2, 0, 3, 17, 10, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('031710-02', 1, 2, 0, 3, 17, 10, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('031710-03', 1, 2, 0, 3, 17, 10, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('031711-01', 1, 2, 0, 3, 17, 11, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('031711-02', 1, 2, 0, 3, 17, 11, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('031711-03', 1, 2, 0, 3, 17, 11, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('031801-01', 1, 2, 0, 3, 18, 1, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('031801-02', 1, 2, 0, 3, 18, 1, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('031801-03', 1, 2, 0, 3, 18, 1, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('031802-01', 1, 2, 0, 3, 18, 2, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('031802-02', 1, 2, 0, 3, 18, 2, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('031802-03', 1, 2, 0, 3, 18, 2, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('031803-01', 1, 2, 0, 3, 18, 3, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('031803-02', 1, 2, 0, 3, 18, 3, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('031803-03', 1, 2, 0, 3, 18, 3, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('031804-01', 1, 2, 0, 3, 18, 4, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('031804-02', 1, 2, 0, 3, 18, 4, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('031804-03', 1, 2, 0, 3, 18, 4, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('031805-01', 1, 2, 0, 3, 18, 5, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('031805-02', 1, 2, 0, 3, 18, 5, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('031805-03', 1, 2, 0, 3, 18, 5, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('031806-01', 1, 2, 0, 3, 18, 6, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('031806-02', 1, 2, 0, 3, 18, 6, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('031806-03', 1, 2, 0, 3, 18, 6, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('031807-01', 1, 2, 0, 3, 18, 7, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('031807-02', 1, 2, 0, 3, 18, 7, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('031807-03', 1, 2, 0, 3, 18, 7, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('031808-01', 1, 2, 0, 3, 18, 8, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('031808-02', 1, 2, 0, 3, 18, 8, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('031808-03', 1, 2, 0, 3, 18, 8, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('031809-01', 1, 2, 0, 3, 18, 9, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('031809-02', 1, 2, 0, 3, 18, 9, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('031809-03', 1, 2, 0, 3, 18, 9, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('031810-01', 1, 2, 0, 3, 18, 10, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('031810-02', 1, 2, 0, 3, 18, 10, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('031810-03', 1, 2, 0, 3, 18, 10, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('031811-01', 1, 2, 0, 3, 18, 11, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('031811-02', 1, 2, 0, 3, 18, 11, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('031811-03', 1, 2, 0, 3, 18, 11, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('040101-01', 1, 2, 0, 4, 1, 1, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('040101-02', 1, 2, 0, 4, 1, 1, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('040101-03', 1, 2, 0, 4, 1, 1, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('040102-01', 1, 2, 0, 4, 1, 2, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('040102-02', 1, 2, 0, 4, 1, 2, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('040102-03', 1, 2, 0, 4, 1, 2, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('040103-01', 1, 2, 0, 4, 1, 3, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('040103-02', 1, 2, 0, 4, 1, 3, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('040103-03', 1, 2, 0, 4, 1, 3, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('040104-01', 1, 2, 0, 4, 1, 4, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('040104-02', 1, 2, 0, 4, 1, 4, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('040104-03', 1, 2, 0, 4, 1, 4, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('040105-01', 1, 2, 0, 4, 1, 5, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('040105-02', 1, 2, 0, 4, 1, 5, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('040105-03', 1, 2, 0, 4, 1, 5, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('040106-01', 1, 2, 0, 4, 1, 6, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('040106-02', 1, 2, 0, 4, 1, 6, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('040106-03', 1, 2, 0, 4, 1, 6, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('040107-01', 1, 2, 0, 4, 1, 7, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('040107-02', 1, 2, 0, 4, 1, 7, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('040107-03', 1, 2, 0, 4, 1, 7, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('040108-01', 1, 2, 0, 4, 1, 8, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('040108-02', 1, 2, 0, 4, 1, 8, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('040108-03', 1, 2, 0, 4, 1, 8, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('040109-01', 1, 2, 0, 4, 1, 9, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('040109-02', 1, 2, 0, 4, 1, 9, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('040109-03', 1, 2, 0, 4, 1, 9, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('040110-01', 1, 2, 0, 4, 1, 10, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('040110-02', 1, 2, 0, 4, 1, 10, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('040110-03', 1, 2, 0, 4, 1, 10, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('040111-01', 1, 2, 0, 4, 1, 11, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('040111-02', 1, 2, 0, 4, 1, 11, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('040111-03', 1, 2, 0, 4, 1, 11, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('040201-01', 1, 2, 0, 4, 2, 1, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('040201-02', 1, 2, 0, 4, 2, 1, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('040201-03', 1, 2, 0, 4, 2, 1, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('040202-01', 1, 2, 0, 4, 2, 2, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('040202-02', 1, 2, 0, 4, 2, 2, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('040202-03', 1, 2, 0, 4, 2, 2, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('040203-01', 1, 2, 0, 4, 2, 3, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('040203-02', 1, 2, 0, 4, 2, 3, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('040203-03', 1, 2, 0, 4, 2, 3, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('040204-01', 1, 2, 0, 4, 2, 4, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('040204-02', 1, 2, 0, 4, 2, 4, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('040204-03', 1, 2, 0, 4, 2, 4, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('040205-01', 1, 2, 0, 4, 2, 5, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('040205-02', 1, 2, 0, 4, 2, 5, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('040205-03', 1, 2, 0, 4, 2, 5, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('040206-01', 1, 2, 0, 4, 2, 6, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('040206-02', 1, 2, 0, 4, 2, 6, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('040206-03', 1, 2, 0, 4, 2, 6, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('040207-01', 1, 2, 0, 4, 2, 7, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('040207-02', 1, 2, 0, 4, 2, 7, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('040207-03', 1, 2, 0, 4, 2, 7, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('040208-01', 1, 2, 0, 4, 2, 8, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('040208-02', 1, 2, 0, 4, 2, 8, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('040208-03', 1, 2, 0, 4, 2, 8, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('040209-01', 1, 2, 0, 4, 2, 9, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('040209-02', 1, 2, 0, 4, 2, 9, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('040209-03', 1, 2, 0, 4, 2, 9, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('040210-01', 1, 2, 0, 4, 2, 10, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('040210-02', 1, 2, 0, 4, 2, 10, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('040210-03', 1, 2, 0, 4, 2, 10, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('040211-01', 1, 2, 0, 4, 2, 11, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('040211-02', 1, 2, 0, 4, 2, 11, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('040211-03', 1, 2, 0, 4, 2, 11, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('040301-01', 1, 2, 0, 4, 3, 1, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('040301-02', 1, 2, 0, 4, 3, 1, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('040301-03', 1, 2, 0, 4, 3, 1, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('040302-01', 1, 2, 0, 4, 3, 2, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('040302-02', 1, 2, 0, 4, 3, 2, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('040302-03', 1, 2, 0, 4, 3, 2, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('040303-01', 1, 2, 0, 4, 3, 3, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('040303-02', 1, 2, 0, 4, 3, 3, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('040303-03', 1, 2, 0, 4, 3, 3, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('040304-01', 1, 2, 0, 4, 3, 4, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('040304-02', 1, 2, 0, 4, 3, 4, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('040304-03', 1, 2, 0, 4, 3, 4, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('040305-01', 1, 2, 0, 4, 3, 5, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('040305-02', 1, 2, 0, 4, 3, 5, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('040305-03', 1, 2, 0, 4, 3, 5, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('040306-01', 1, 2, 0, 4, 3, 6, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('040306-02', 1, 2, 0, 4, 3, 6, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('040306-03', 1, 2, 0, 4, 3, 6, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('040307-01', 1, 2, 0, 4, 3, 7, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('040307-02', 1, 2, 0, 4, 3, 7, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('040307-03', 1, 2, 0, 4, 3, 7, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('040308-01', 1, 2, 0, 4, 3, 8, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('040308-02', 1, 2, 0, 4, 3, 8, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('040308-03', 1, 2, 0, 4, 3, 8, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('040309-01', 1, 2, 0, 4, 3, 9, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('040309-02', 1, 2, 0, 4, 3, 9, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('040309-03', 1, 2, 0, 4, 3, 9, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('040310-01', 1, 2, 0, 4, 3, 10, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('040310-02', 1, 2, 0, 4, 3, 10, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('040310-03', 1, 2, 0, 4, 3, 10, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('040311-01', 1, 2, 0, 4, 3, 11, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('040311-02', 1, 2, 0, 4, 3, 11, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('040311-03', 1, 2, 0, 4, 3, 11, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('040401-01', 1, 2, 0, 4, 4, 1, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('040401-02', 1, 2, 0, 4, 4, 1, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('040401-03', 1, 2, 0, 4, 4, 1, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('040402-01', 1, 2, 0, 4, 4, 2, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('040402-02', 1, 2, 0, 4, 4, 2, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('040402-03', 1, 2, 0, 4, 4, 2, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('040403-01', 1, 2, 0, 4, 4, 3, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('040403-02', 1, 2, 0, 4, 4, 3, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('040403-03', 1, 2, 0, 4, 4, 3, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('040404-01', 1, 2, 0, 4, 4, 4, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('040404-02', 1, 2, 0, 4, 4, 4, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('040404-03', 1, 2, 0, 4, 4, 4, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('040405-01', 1, 2, 0, 4, 4, 5, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('040405-02', 1, 2, 0, 4, 4, 5, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('040405-03', 1, 2, 0, 4, 4, 5, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('040406-01', 1, 2, 0, 4, 4, 6, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('040406-02', 1, 2, 0, 4, 4, 6, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('040406-03', 1, 2, 0, 4, 4, 6, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('040407-01', 1, 2, 0, 4, 4, 7, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('040407-02', 1, 2, 0, 4, 4, 7, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('040407-03', 1, 2, 0, 4, 4, 7, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('040408-01', 1, 2, 0, 4, 4, 8, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('040408-02', 1, 2, 0, 4, 4, 8, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('040408-03', 1, 2, 0, 4, 4, 8, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('040409-01', 1, 2, 0, 4, 4, 9, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('040409-02', 1, 2, 0, 4, 4, 9, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('040409-03', 1, 2, 0, 4, 4, 9, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('040410-01', 1, 2, 0, 4, 4, 10, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('040410-02', 1, 2, 0, 4, 4, 10, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('040410-03', 1, 2, 0, 4, 4, 10, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('040411-01', 1, 2, 0, 4, 4, 11, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('040411-02', 1, 2, 0, 4, 4, 11, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('040411-03', 1, 2, 0, 4, 4, 11, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('040501-01', 1, 2, 0, 4, 5, 1, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('040501-02', 1, 2, 0, 4, 5, 1, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('040501-03', 1, 2, 0, 4, 5, 1, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('040502-01', 1, 2, 0, 4, 5, 2, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('040502-02', 1, 2, 0, 4, 5, 2, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('040502-03', 1, 2, 0, 4, 5, 2, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('040503-01', 1, 2, 0, 4, 5, 3, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('040503-02', 1, 2, 0, 4, 5, 3, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('040503-03', 1, 2, 0, 4, 5, 3, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('040504-01', 1, 2, 0, 4, 5, 4, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('040504-02', 1, 2, 0, 4, 5, 4, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('040504-03', 1, 2, 0, 4, 5, 4, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('040505-01', 1, 2, 0, 4, 5, 5, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('040505-02', 1, 2, 0, 4, 5, 5, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('040505-03', 1, 2, 0, 4, 5, 5, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('040506-01', 1, 2, 0, 4, 5, 6, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('040506-02', 1, 2, 0, 4, 5, 6, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('040506-03', 1, 2, 0, 4, 5, 6, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('040507-01', 1, 2, 0, 4, 5, 7, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('040507-02', 1, 2, 0, 4, 5, 7, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('040507-03', 1, 2, 0, 4, 5, 7, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('040508-01', 1, 2, 0, 4, 5, 8, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('040508-02', 1, 2, 0, 4, 5, 8, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('040508-03', 1, 2, 0, 4, 5, 8, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('040509-01', 1, 2, 0, 4, 5, 9, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('040509-02', 1, 2, 0, 4, 5, 9, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('040509-03', 1, 2, 0, 4, 5, 9, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('040510-01', 1, 2, 0, 4, 5, 10, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('040510-02', 1, 2, 0, 4, 5, 10, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('040510-03', 1, 2, 0, 4, 5, 10, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('040511-01', 1, 2, 0, 4, 5, 11, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('040511-02', 1, 2, 0, 4, 5, 11, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('040511-03', 1, 2, 0, 4, 5, 11, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('040601-01', 1, 2, 0, 4, 6, 1, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('040601-02', 1, 2, 0, 4, 6, 1, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('040601-03', 1, 2, 0, 4, 6, 1, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('040602-01', 1, 2, 0, 4, 6, 2, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('040602-02', 1, 2, 0, 4, 6, 2, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('040602-03', 1, 2, 0, 4, 6, 2, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('040603-01', 1, 2, 0, 4, 6, 3, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('040603-02', 1, 2, 0, 4, 6, 3, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('040603-03', 1, 2, 0, 4, 6, 3, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('040604-01', 1, 2, 0, 4, 6, 4, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('040604-02', 1, 2, 0, 4, 6, 4, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('040604-03', 1, 2, 0, 4, 6, 4, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('040605-01', 1, 2, 0, 4, 6, 5, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('040605-02', 1, 2, 0, 4, 6, 5, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('040605-03', 1, 2, 0, 4, 6, 5, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('040606-01', 1, 2, 0, 4, 6, 6, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('040606-02', 1, 2, 0, 4, 6, 6, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('040606-03', 1, 2, 0, 4, 6, 6, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('040607-01', 1, 2, 0, 4, 6, 7, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('040607-02', 1, 2, 0, 4, 6, 7, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('040607-03', 1, 2, 0, 4, 6, 7, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('040608-01', 1, 2, 0, 4, 6, 8, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('040608-02', 1, 2, 0, 4, 6, 8, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('040608-03', 1, 2, 0, 4, 6, 8, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('040609-01', 1, 2, 0, 4, 6, 9, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('040609-02', 1, 2, 0, 4, 6, 9, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('040609-03', 1, 2, 0, 4, 6, 9, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('040610-01', 1, 2, 0, 4, 6, 10, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('040610-02', 1, 2, 0, 4, 6, 10, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('040610-03', 1, 2, 0, 4, 6, 10, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('040611-01', 1, 2, 0, 4, 6, 11, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('040611-02', 1, 2, 0, 4, 6, 11, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('040611-03', 1, 2, 0, 4, 6, 11, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('040701-01', 1, 2, 0, 4, 7, 1, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('040701-02', 1, 2, 0, 4, 7, 1, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('040701-03', 1, 2, 0, 4, 7, 1, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('040702-01', 1, 2, 0, 4, 7, 2, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('040702-02', 1, 2, 0, 4, 7, 2, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('040702-03', 1, 2, 0, 4, 7, 2, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('040703-01', 1, 2, 0, 4, 7, 3, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('040703-02', 1, 2, 0, 4, 7, 3, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('040703-03', 1, 2, 0, 4, 7, 3, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('040704-01', 1, 2, 0, 4, 7, 4, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('040704-02', 1, 2, 0, 4, 7, 4, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('040704-03', 1, 2, 0, 4, 7, 4, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('040705-01', 1, 2, 0, 4, 7, 5, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('040705-02', 1, 2, 0, 4, 7, 5, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('040705-03', 1, 2, 0, 4, 7, 5, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('040706-01', 1, 2, 0, 4, 7, 6, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('040706-02', 1, 2, 0, 4, 7, 6, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('040706-03', 1, 2, 0, 4, 7, 6, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('040707-01', 1, 2, 0, 4, 7, 7, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('040707-02', 1, 2, 0, 4, 7, 7, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('040707-03', 1, 2, 0, 4, 7, 7, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('040708-01', 1, 2, 0, 4, 7, 8, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('040708-02', 1, 2, 0, 4, 7, 8, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('040708-03', 1, 2, 0, 4, 7, 8, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('040709-01', 1, 2, 0, 4, 7, 9, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('040709-02', 1, 2, 0, 4, 7, 9, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('040709-03', 1, 2, 0, 4, 7, 9, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('040710-01', 1, 2, 0, 4, 7, 10, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('040710-02', 1, 2, 0, 4, 7, 10, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('040710-03', 1, 2, 0, 4, 7, 10, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('040711-01', 1, 2, 0, 4, 7, 11, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('040711-02', 1, 2, 0, 4, 7, 11, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('040711-03', 1, 2, 0, 4, 7, 11, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('040801-01', 1, 2, 0, 4, 8, 1, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('040801-02', 1, 2, 0, 4, 8, 1, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('040801-03', 1, 2, 0, 4, 8, 1, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('040802-01', 1, 2, 0, 4, 8, 2, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('040802-02', 1, 2, 0, 4, 8, 2, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('040802-03', 1, 2, 0, 4, 8, 2, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('040803-01', 1, 2, 0, 4, 8, 3, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('040803-02', 1, 2, 0, 4, 8, 3, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('040803-03', 1, 2, 0, 4, 8, 3, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('040804-01', 1, 2, 0, 4, 8, 4, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('040804-02', 1, 2, 0, 4, 8, 4, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('040804-03', 1, 2, 0, 4, 8, 4, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('040805-01', 1, 2, 0, 4, 8, 5, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('040805-02', 1, 2, 0, 4, 8, 5, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('040805-03', 1, 2, 0, 4, 8, 5, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('040806-01', 1, 2, 0, 4, 8, 6, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('040806-02', 1, 2, 0, 4, 8, 6, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('040806-03', 1, 2, 0, 4, 8, 6, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('040807-01', 1, 2, 0, 4, 8, 7, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('040807-02', 1, 2, 0, 4, 8, 7, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('040807-03', 1, 2, 0, 4, 8, 7, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('040808-01', 1, 2, 0, 4, 8, 8, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('040808-02', 1, 2, 0, 4, 8, 8, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('040808-03', 1, 2, 0, 4, 8, 8, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('040809-01', 1, 2, 0, 4, 8, 9, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('040809-02', 1, 2, 0, 4, 8, 9, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('040809-03', 1, 2, 0, 4, 8, 9, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('040810-01', 1, 2, 0, 4, 8, 10, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('040810-02', 1, 2, 0, 4, 8, 10, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('040810-03', 1, 2, 0, 4, 8, 10, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('040811-01', 1, 2, 0, 4, 8, 11, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('040811-02', 1, 2, 0, 4, 8, 11, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('040811-03', 1, 2, 0, 4, 8, 11, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('040901-01', 1, 2, 0, 4, 9, 1, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('040901-02', 1, 2, 0, 4, 9, 1, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('040901-03', 1, 2, 0, 4, 9, 1, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('040902-01', 1, 2, 0, 4, 9, 2, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('040902-02', 1, 2, 0, 4, 9, 2, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('040902-03', 1, 2, 0, 4, 9, 2, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('040903-01', 1, 2, 0, 4, 9, 3, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('040903-02', 1, 2, 0, 4, 9, 3, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('040903-03', 1, 2, 0, 4, 9, 3, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('040904-01', 1, 2, 0, 4, 9, 4, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('040904-02', 1, 2, 0, 4, 9, 4, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('040904-03', 1, 2, 0, 4, 9, 4, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('040905-01', 1, 2, 0, 4, 9, 5, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('040905-02', 1, 2, 0, 4, 9, 5, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('040905-03', 1, 2, 0, 4, 9, 5, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('040906-01', 1, 2, 0, 4, 9, 6, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('040906-02', 1, 2, 0, 4, 9, 6, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('040906-03', 1, 2, 0, 4, 9, 6, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('040907-01', 1, 2, 0, 4, 9, 7, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('040907-02', 1, 2, 0, 4, 9, 7, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('040907-03', 1, 2, 0, 4, 9, 7, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('040908-01', 1, 2, 0, 4, 9, 8, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('040908-02', 1, 2, 0, 4, 9, 8, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('040908-03', 1, 2, 0, 4, 9, 8, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('040909-01', 1, 2, 0, 4, 9, 9, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('040909-02', 1, 2, 0, 4, 9, 9, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('040909-03', 1, 2, 0, 4, 9, 9, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('040910-01', 1, 2, 0, 4, 9, 10, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('040910-02', 1, 2, 0, 4, 9, 10, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('040910-03', 1, 2, 0, 4, 9, 10, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('040911-01', 1, 2, 0, 4, 9, 11, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('040911-02', 1, 2, 0, 4, 9, 11, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('040911-03', 1, 2, 0, 4, 9, 11, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('041001-01', 1, 2, 0, 4, 10, 1, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('041001-02', 1, 2, 0, 4, 10, 1, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('041001-03', 1, 2, 0, 4, 10, 1, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('041002-01', 1, 2, 0, 4, 10, 2, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('041002-02', 1, 2, 0, 4, 10, 2, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('041002-03', 1, 2, 0, 4, 10, 2, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('041003-01', 1, 2, 0, 4, 10, 3, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('041003-02', 1, 2, 0, 4, 10, 3, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('041003-03', 1, 2, 0, 4, 10, 3, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('041004-01', 1, 2, 0, 4, 10, 4, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('041004-02', 1, 2, 0, 4, 10, 4, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('041004-03', 1, 2, 0, 4, 10, 4, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('041005-01', 1, 2, 0, 4, 10, 5, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('041005-02', 1, 2, 0, 4, 10, 5, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('041005-03', 1, 2, 0, 4, 10, 5, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('041006-01', 1, 2, 0, 4, 10, 6, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('041006-02', 1, 2, 0, 4, 10, 6, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('041006-03', 1, 2, 0, 4, 10, 6, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('041007-01', 1, 2, 0, 4, 10, 7, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('041007-02', 1, 2, 0, 4, 10, 7, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('041007-03', 1, 2, 0, 4, 10, 7, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('041008-01', 1, 2, 0, 4, 10, 8, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('041008-02', 1, 2, 0, 4, 10, 8, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('041008-03', 1, 2, 0, 4, 10, 8, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('041009-01', 1, 2, 0, 4, 10, 9, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('041009-02', 1, 2, 0, 4, 10, 9, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('041009-03', 1, 2, 0, 4, 10, 9, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('041010-01', 1, 2, 0, 4, 10, 10, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('041010-02', 1, 2, 0, 4, 10, 10, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('041010-03', 1, 2, 0, 4, 10, 10, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('041011-01', 1, 2, 0, 4, 10, 11, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('041011-02', 1, 2, 0, 4, 10, 11, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('041011-03', 1, 2, 0, 4, 10, 11, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('041101-01', 1, 2, 0, 4, 11, 1, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('041101-02', 1, 2, 0, 4, 11, 1, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('041101-03', 1, 2, 0, 4, 11, 1, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('041102-01', 1, 2, 0, 4, 11, 2, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('041102-02', 1, 2, 0, 4, 11, 2, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('041102-03', 1, 2, 0, 4, 11, 2, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('041103-01', 1, 2, 0, 4, 11, 3, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('041103-02', 1, 2, 0, 4, 11, 3, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('041103-03', 1, 2, 0, 4, 11, 3, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('041104-01', 1, 2, 0, 4, 11, 4, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('041104-02', 1, 2, 0, 4, 11, 4, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('041104-03', 1, 2, 0, 4, 11, 4, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('041105-01', 1, 2, 0, 4, 11, 5, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('041105-02', 1, 2, 0, 4, 11, 5, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('041105-03', 1, 2, 0, 4, 11, 5, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('041106-01', 1, 2, 0, 4, 11, 6, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('041106-02', 1, 2, 0, 4, 11, 6, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('041106-03', 1, 2, 0, 4, 11, 6, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('041107-01', 1, 2, 0, 4, 11, 7, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('041107-02', 1, 2, 0, 4, 11, 7, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('041107-03', 1, 2, 0, 4, 11, 7, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('041108-01', 1, 2, 0, 4, 11, 8, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('041108-02', 1, 2, 0, 4, 11, 8, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('041108-03', 1, 2, 0, 4, 11, 8, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('041109-01', 1, 2, 0, 4, 11, 9, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('041109-02', 1, 2, 0, 4, 11, 9, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('041109-03', 1, 2, 0, 4, 11, 9, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('041110-01', 1, 2, 0, 4, 11, 10, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('041110-02', 1, 2, 0, 4, 11, 10, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('041110-03', 1, 2, 0, 4, 11, 10, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('041111-01', 1, 2, 0, 4, 11, 11, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('041111-02', 1, 2, 0, 4, 11, 11, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('041111-03', 1, 2, 0, 4, 11, 11, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('041201-01', 1, 2, 0, 4, 12, 1, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('041201-02', 1, 2, 0, 4, 12, 1, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('041201-03', 1, 2, 0, 4, 12, 1, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('041202-01', 1, 2, 0, 4, 12, 2, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('041202-02', 1, 2, 0, 4, 12, 2, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('041202-03', 1, 2, 0, 4, 12, 2, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('041203-01', 1, 2, 0, 4, 12, 3, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('041203-02', 1, 2, 0, 4, 12, 3, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('041203-03', 1, 2, 0, 4, 12, 3, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('041204-01', 1, 2, 0, 4, 12, 4, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('041204-02', 1, 2, 0, 4, 12, 4, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('041204-03', 1, 2, 0, 4, 12, 4, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('041205-01', 1, 2, 0, 4, 12, 5, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('041205-02', 1, 2, 0, 4, 12, 5, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('041205-03', 1, 2, 0, 4, 12, 5, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('041206-01', 1, 2, 0, 4, 12, 6, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('041206-02', 1, 2, 0, 4, 12, 6, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('041206-03', 1, 2, 0, 4, 12, 6, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('041207-01', 1, 2, 0, 4, 12, 7, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('041207-02', 1, 2, 0, 4, 12, 7, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('041207-03', 1, 2, 0, 4, 12, 7, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('041208-01', 1, 2, 0, 4, 12, 8, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('041208-02', 1, 2, 0, 4, 12, 8, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('041208-03', 1, 2, 0, 4, 12, 8, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('041209-01', 1, 2, 0, 4, 12, 9, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('041209-02', 1, 2, 0, 4, 12, 9, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('041209-03', 1, 2, 0, 4, 12, 9, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('041210-01', 1, 2, 0, 4, 12, 10, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('041210-02', 1, 2, 0, 4, 12, 10, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('041210-03', 1, 2, 0, 4, 12, 10, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('041211-01', 1, 2, 0, 4, 12, 11, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('041211-02', 1, 2, 0, 4, 12, 11, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('041211-03', 1, 2, 0, 4, 12, 11, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('041301-01', 1, 2, 0, 4, 13, 1, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('041301-02', 1, 2, 0, 4, 13, 1, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('041301-03', 1, 2, 0, 4, 13, 1, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('041302-01', 1, 2, 0, 4, 13, 2, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('041302-02', 1, 2, 0, 4, 13, 2, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('041302-03', 1, 2, 0, 4, 13, 2, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('041303-01', 1, 2, 0, 4, 13, 3, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('041303-02', 1, 2, 0, 4, 13, 3, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('041303-03', 1, 2, 0, 4, 13, 3, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('041304-01', 1, 2, 0, 4, 13, 4, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('041304-02', 1, 2, 0, 4, 13, 4, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('041304-03', 1, 2, 0, 4, 13, 4, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('041305-01', 1, 2, 0, 4, 13, 5, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('041305-02', 1, 2, 0, 4, 13, 5, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('041305-03', 1, 2, 0, 4, 13, 5, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('041306-01', 1, 2, 0, 4, 13, 6, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('041306-02', 1, 2, 0, 4, 13, 6, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('041306-03', 1, 2, 0, 4, 13, 6, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('041307-01', 1, 2, 0, 4, 13, 7, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('041307-02', 1, 2, 0, 4, 13, 7, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('041307-03', 1, 2, 0, 4, 13, 7, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('041308-01', 1, 2, 0, 4, 13, 8, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('041308-02', 1, 2, 0, 4, 13, 8, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('041308-03', 1, 2, 0, 4, 13, 8, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('041309-01', 1, 2, 0, 4, 13, 9, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('041309-02', 1, 2, 0, 4, 13, 9, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('041309-03', 1, 2, 0, 4, 13, 9, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('041310-01', 1, 2, 0, 4, 13, 10, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('041310-02', 1, 2, 0, 4, 13, 10, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('041310-03', 1, 2, 0, 4, 13, 10, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('041311-01', 1, 2, 0, 4, 13, 11, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('041311-02', 1, 2, 0, 4, 13, 11, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('041311-03', 1, 2, 0, 4, 13, 11, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('041401-01', 1, 2, 0, 4, 14, 1, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('041401-02', 1, 2, 0, 4, 14, 1, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('041401-03', 1, 2, 0, 4, 14, 1, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('041402-01', 1, 2, 0, 4, 14, 2, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('041402-02', 1, 2, 0, 4, 14, 2, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('041402-03', 1, 2, 0, 4, 14, 2, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('041403-01', 1, 2, 0, 4, 14, 3, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('041403-02', 1, 2, 0, 4, 14, 3, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('041403-03', 1, 2, 0, 4, 14, 3, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('041404-01', 1, 2, 0, 4, 14, 4, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('041404-02', 1, 2, 0, 4, 14, 4, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('041404-03', 1, 2, 0, 4, 14, 4, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('041405-01', 1, 2, 0, 4, 14, 5, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('041405-02', 1, 2, 0, 4, 14, 5, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('041405-03', 1, 2, 0, 4, 14, 5, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('041406-01', 1, 2, 0, 4, 14, 6, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('041406-02', 1, 2, 0, 4, 14, 6, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('041406-03', 1, 2, 0, 4, 14, 6, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('041407-01', 1, 2, 0, 4, 14, 7, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('041407-02', 1, 2, 0, 4, 14, 7, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('041407-03', 1, 2, 0, 4, 14, 7, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('041408-01', 1, 2, 0, 4, 14, 8, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('041408-02', 1, 2, 0, 4, 14, 8, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('041408-03', 1, 2, 0, 4, 14, 8, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('041409-01', 1, 2, 0, 4, 14, 9, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('041409-02', 1, 2, 0, 4, 14, 9, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('041409-03', 1, 2, 0, 4, 14, 9, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('041410-01', 1, 2, 0, 4, 14, 10, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('041410-02', 1, 2, 0, 4, 14, 10, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('041410-03', 1, 2, 0, 4, 14, 10, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('041411-01', 1, 2, 0, 4, 14, 11, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('041411-02', 1, 2, 0, 4, 14, 11, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('041411-03', 1, 2, 0, 4, 14, 11, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('041501-01', 1, 2, 0, 4, 15, 1, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('041501-02', 1, 2, 0, 4, 15, 1, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('041501-03', 1, 2, 0, 4, 15, 1, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('041502-01', 1, 2, 0, 4, 15, 2, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('041502-02', 1, 2, 0, 4, 15, 2, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('041502-03', 1, 2, 0, 4, 15, 2, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('041503-01', 1, 2, 0, 4, 15, 3, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('041503-02', 1, 2, 0, 4, 15, 3, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('041503-03', 1, 2, 0, 4, 15, 3, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('041504-01', 1, 2, 0, 4, 15, 4, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('041504-02', 1, 2, 0, 4, 15, 4, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('041504-03', 1, 2, 0, 4, 15, 4, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('041505-01', 1, 2, 0, 4, 15, 5, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('041505-02', 1, 2, 0, 4, 15, 5, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('041505-03', 1, 2, 0, 4, 15, 5, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('041506-01', 1, 2, 0, 4, 15, 6, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('041506-02', 1, 2, 0, 4, 15, 6, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('041506-03', 1, 2, 0, 4, 15, 6, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('041507-01', 1, 2, 0, 4, 15, 7, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('041507-02', 1, 2, 0, 4, 15, 7, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('041507-03', 1, 2, 0, 4, 15, 7, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('041508-01', 1, 2, 0, 4, 15, 8, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('041508-02', 1, 2, 0, 4, 15, 8, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('041508-03', 1, 2, 0, 4, 15, 8, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('041509-01', 1, 2, 0, 4, 15, 9, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('041509-02', 1, 2, 0, 4, 15, 9, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('041509-03', 1, 2, 0, 4, 15, 9, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('041510-01', 1, 2, 0, 4, 15, 10, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('041510-02', 1, 2, 0, 4, 15, 10, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('041510-03', 1, 2, 0, 4, 15, 10, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('041511-01', 1, 2, 0, 4, 15, 11, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('041511-02', 1, 2, 0, 4, 15, 11, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('041511-03', 1, 2, 0, 4, 15, 11, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('041601-01', 1, 2, 0, 4, 16, 1, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('041601-02', 1, 2, 0, 4, 16, 1, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('041601-03', 1, 2, 0, 4, 16, 1, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('041602-01', 1, 2, 0, 4, 16, 2, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('041602-02', 1, 2, 0, 4, 16, 2, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('041602-03', 1, 2, 0, 4, 16, 2, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('041603-01', 1, 2, 0, 4, 16, 3, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('041603-02', 1, 2, 0, 4, 16, 3, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('041603-03', 1, 2, 0, 4, 16, 3, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('041604-01', 1, 2, 0, 4, 16, 4, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('041604-02', 1, 2, 0, 4, 16, 4, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('041604-03', 1, 2, 0, 4, 16, 4, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('041605-01', 1, 2, 0, 4, 16, 5, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('041605-02', 1, 2, 0, 4, 16, 5, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('041605-03', 1, 2, 0, 4, 16, 5, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('041606-01', 1, 2, 0, 4, 16, 6, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('041606-02', 1, 2, 0, 4, 16, 6, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('041606-03', 1, 2, 0, 4, 16, 6, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('041607-01', 1, 2, 0, 4, 16, 7, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('041607-02', 1, 2, 0, 4, 16, 7, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('041607-03', 1, 2, 0, 4, 16, 7, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('041608-01', 1, 2, 0, 4, 16, 8, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('041608-02', 1, 2, 0, 4, 16, 8, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('041608-03', 1, 2, 0, 4, 16, 8, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('041609-01', 1, 2, 0, 4, 16, 9, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('041609-02', 1, 2, 0, 4, 16, 9, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('041609-03', 1, 2, 0, 4, 16, 9, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('041610-01', 1, 2, 0, 4, 16, 10, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('041610-02', 1, 2, 0, 4, 16, 10, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('041610-03', 1, 2, 0, 4, 16, 10, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('041611-01', 1, 2, 0, 4, 16, 11, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('041611-02', 1, 2, 0, 4, 16, 11, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('041611-03', 1, 2, 0, 4, 16, 11, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('041701-01', 1, 2, 0, 4, 17, 1, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('041701-02', 1, 2, 0, 4, 17, 1, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('041701-03', 1, 2, 0, 4, 17, 1, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('041702-01', 1, 2, 0, 4, 17, 2, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('041702-02', 1, 2, 0, 4, 17, 2, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('041702-03', 1, 2, 0, 4, 17, 2, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('041703-01', 1, 2, 0, 4, 17, 3, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('041703-02', 1, 2, 0, 4, 17, 3, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('041703-03', 1, 2, 0, 4, 17, 3, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('041704-01', 1, 2, 0, 4, 17, 4, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('041704-02', 1, 2, 0, 4, 17, 4, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('041704-03', 1, 2, 0, 4, 17, 4, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('041705-01', 1, 2, 0, 4, 17, 5, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('041705-02', 1, 2, 0, 4, 17, 5, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('041705-03', 1, 2, 0, 4, 17, 5, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('041706-01', 1, 2, 0, 4, 17, 6, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('041706-02', 1, 2, 0, 4, 17, 6, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('041706-03', 1, 2, 0, 4, 17, 6, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('041707-01', 1, 2, 0, 4, 17, 7, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('041707-02', 1, 2, 0, 4, 17, 7, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('041707-03', 1, 2, 0, 4, 17, 7, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('041708-01', 1, 2, 0, 4, 17, 8, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('041708-02', 1, 2, 0, 4, 17, 8, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('041708-03', 1, 2, 0, 4, 17, 8, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('041709-01', 1, 2, 0, 4, 17, 9, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('041709-02', 1, 2, 0, 4, 17, 9, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('041709-03', 1, 2, 0, 4, 17, 9, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('041710-01', 1, 2, 0, 4, 17, 10, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('041710-02', 1, 2, 0, 4, 17, 10, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('041710-03', 1, 2, 0, 4, 17, 10, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('041711-01', 1, 2, 0, 4, 17, 11, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('041711-02', 1, 2, 0, 4, 17, 11, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('041711-03', 1, 2, 0, 4, 17, 11, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('041801-01', 1, 2, 0, 4, 18, 1, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('041801-02', 1, 2, 0, 4, 18, 1, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('041801-03', 1, 2, 0, 4, 18, 1, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('041802-01', 1, 2, 0, 4, 18, 2, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('041802-02', 1, 2, 0, 4, 18, 2, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('041802-03', 1, 2, 0, 4, 18, 2, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('041803-01', 1, 2, 0, 4, 18, 3, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('041803-02', 1, 2, 0, 4, 18, 3, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('041803-03', 1, 2, 0, 4, 18, 3, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('041804-01', 1, 2, 0, 4, 18, 4, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('041804-02', 1, 2, 0, 4, 18, 4, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('041804-03', 1, 2, 0, 4, 18, 4, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('041805-01', 1, 2, 0, 4, 18, 5, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('041805-02', 1, 2, 0, 4, 18, 5, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('041805-03', 1, 2, 0, 4, 18, 5, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('041806-01', 1, 2, 0, 4, 18, 6, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('041806-02', 1, 2, 0, 4, 18, 6, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('041806-03', 1, 2, 0, 4, 18, 6, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('041807-01', 1, 2, 0, 4, 18, 7, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('041807-02', 1, 2, 0, 4, 18, 7, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('041807-03', 1, 2, 0, 4, 18, 7, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('041808-01', 1, 2, 0, 4, 18, 8, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('041808-02', 1, 2, 0, 4, 18, 8, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('041808-03', 1, 2, 0, 4, 18, 8, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('041809-01', 1, 2, 0, 4, 18, 9, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('041809-02', 1, 2, 0, 4, 18, 9, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('041809-03', 1, 2, 0, 4, 18, 9, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('041810-01', 1, 2, 0, 4, 18, 10, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('041810-02', 1, 2, 0, 4, 18, 10, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('041810-03', 1, 2, 0, 4, 18, 10, 3, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('041811-01', 1, 2, 0, 4, 18, 11, 1, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('041811-02', 1, 2, 0, 4, 18, 11, 2, 0, 0); -INSERT INTO `tbl_app_location` VALUES ('041811-03', 1, 2, 0, 4, 18, 11, 3, 0, 0); +INSERT INTO `tbl_app_location` VALUES ('01-01-01-01', 1, 1, 1, 1, 1, 1, 1, 0, 1, 'ASRS000176'); +INSERT INTO `tbl_app_location` VALUES ('01-01-02-01', 1, 1, 1, 1, 1, 2, 1, 0, 1, 'ASRS000143'); +INSERT INTO `tbl_app_location` VALUES ('01-01-03-01', 1, 1, 1, 1, 1, 3, 1, 0, 1, 'ASRS000084'); +INSERT INTO `tbl_app_location` VALUES ('01-01-04-01', 1, 1, 1, 1, 1, 4, 1, 0, 1, 'ASRS000012'); +INSERT INTO `tbl_app_location` VALUES ('01-01-05-01', 1, 1, 1, 1, 1, 5, 1, 0, 1, 'ASRS000007'); +INSERT INTO `tbl_app_location` VALUES ('01-01-06-01', 1, 1, 1, 1, 1, 6, 1, 0, 1, 'ASRS000058'); +INSERT INTO `tbl_app_location` VALUES ('01-01-07-01', 1, 1, 1, 1, 1, 7, 1, 0, 1, 'ASRS000049'); +INSERT INTO `tbl_app_location` VALUES ('01-01-08-01', 1, 1, 1, 1, 1, 8, 1, 0, 1, 'ASRS000031'); +INSERT INTO `tbl_app_location` VALUES ('01-01-09-01', 1, 1, 1, 1, 1, 9, 1, 0, 1, 'ASRS000053'); +INSERT INTO `tbl_app_location` VALUES ('01-01-10-01', 1, 1, 1, 1, 1, 10, 1, 0, 1, 'ASRS000035'); +INSERT INTO `tbl_app_location` VALUES ('01-01-11-01', 1, 1, 1, 1, 1, 11, 1, 0, 1, 'ASRS000026'); +INSERT INTO `tbl_app_location` VALUES ('01-01-12-01', 1, 1, 1, 1, 1, 12, 1, 0, 1, 'ASRS000080'); +INSERT INTO `tbl_app_location` VALUES ('01-01-13-01', 1, 1, 1, 1, 1, 13, 1, 0, 1, 'ASRS000003'); +INSERT INTO `tbl_app_location` VALUES ('01-01-14-01', 1, 1, 1, 1, 1, 14, 1, 0, 1, 'ASRS000054'); +INSERT INTO `tbl_app_location` VALUES ('01-01-15-01', 1, 1, 1, 1, 1, 15, 1, 0, 1, 'ASRS000043'); +INSERT INTO `tbl_app_location` VALUES ('01-01-16-01', 1, 1, 1, 1, 1, 16, 1, 0, 0, 'ASRS000112'); +INSERT INTO `tbl_app_location` VALUES ('01-01-17-01', 1, 1, 1, 1, 1, 17, 1, 0, 0, 'ASRS000198'); +INSERT INTO `tbl_app_location` VALUES ('01-01-18-01', 1, 1, 1, 1, 1, 18, 1, 0, 1, 'ASRS000200'); +INSERT INTO `tbl_app_location` VALUES ('01-01-19-01', 1, 1, 1, 1, 1, 19, 1, 0, 1, 'ASRS000194'); +INSERT INTO `tbl_app_location` VALUES ('01-01-20-01', 1, 1, 1, 1, 1, 20, 1, 0, 1, 'ASRS000103'); +INSERT INTO `tbl_app_location` VALUES ('01-01-21-01', 1, 1, 1, 1, 1, 21, 1, 0, 1, 'ASRS000108'); +INSERT INTO `tbl_app_location` VALUES ('01-01-22-01', 1, 1, 1, 1, 1, 22, 1, 0, 1, 'ASRS000172'); +INSERT INTO `tbl_app_location` VALUES ('01-02-01-01', 1, 1, 1, 1, 2, 1, 1, 0, 1, 'ASRS000132'); +INSERT INTO `tbl_app_location` VALUES ('01-02-02-01', 1, 1, 1, 1, 2, 2, 1, 0, 1, 'ASRS000126'); +INSERT INTO `tbl_app_location` VALUES ('01-02-03-01', 1, 1, 1, 1, 2, 3, 1, 0, 1, 'ASRS000175'); +INSERT INTO `tbl_app_location` VALUES ('01-02-04-01', 1, 1, 1, 1, 2, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-02-05-01', 1, 1, 1, 1, 2, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-02-06-01', 1, 1, 1, 1, 2, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-02-07-01', 1, 1, 1, 1, 2, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-02-08-01', 1, 1, 1, 1, 2, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-02-09-01', 1, 1, 1, 1, 2, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-02-10-01', 1, 1, 1, 1, 2, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-02-11-01', 1, 1, 1, 1, 2, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-02-12-01', 1, 1, 1, 1, 2, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-02-13-01', 1, 1, 1, 1, 2, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-02-14-01', 1, 1, 1, 1, 2, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-02-15-01', 1, 1, 1, 1, 2, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-02-16-01', 1, 1, 1, 1, 2, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-02-17-01', 1, 1, 1, 1, 2, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-02-18-01', 1, 1, 1, 1, 2, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-02-19-01', 1, 1, 1, 1, 2, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-02-20-01', 1, 1, 1, 1, 2, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-02-21-01', 1, 1, 1, 1, 2, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-02-22-01', 1, 1, 1, 1, 2, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-03-01-01', 1, 1, 1, 1, 3, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-03-02-01', 1, 1, 1, 1, 3, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-03-03-01', 1, 1, 1, 1, 3, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-03-04-01', 1, 1, 1, 1, 3, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-03-05-01', 1, 1, 1, 1, 3, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-03-06-01', 1, 1, 1, 1, 3, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-03-07-01', 1, 1, 1, 1, 3, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-03-08-01', 1, 1, 1, 1, 3, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-03-09-01', 1, 1, 1, 1, 3, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-03-10-01', 1, 1, 1, 1, 3, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-03-11-01', 1, 1, 1, 1, 3, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-03-12-01', 1, 1, 1, 1, 3, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-03-13-01', 1, 1, 1, 1, 3, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-03-14-01', 1, 1, 1, 1, 3, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-03-15-01', 1, 1, 1, 1, 3, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-03-16-01', 1, 1, 1, 1, 3, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-03-17-01', 1, 1, 1, 1, 3, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-03-18-01', 1, 1, 1, 1, 3, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-03-19-01', 1, 1, 1, 1, 3, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-03-20-01', 1, 1, 1, 1, 3, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-03-21-01', 1, 1, 1, 1, 3, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-03-22-01', 1, 1, 1, 1, 3, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-04-01-01', 1, 1, 1, 1, 4, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-04-02-01', 1, 1, 1, 1, 4, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-04-03-01', 1, 1, 1, 1, 4, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-04-04-01', 1, 1, 1, 1, 4, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-04-05-01', 1, 1, 1, 1, 4, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-04-06-01', 1, 1, 1, 1, 4, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-04-07-01', 1, 1, 1, 1, 4, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-04-08-01', 1, 1, 1, 1, 4, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-04-09-01', 1, 1, 1, 1, 4, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-04-10-01', 1, 1, 1, 1, 4, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-04-11-01', 1, 1, 1, 1, 4, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-04-12-01', 1, 1, 1, 1, 4, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-04-13-01', 1, 1, 1, 1, 4, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-04-14-01', 1, 1, 1, 1, 4, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-04-15-01', 1, 1, 1, 1, 4, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-04-16-01', 1, 1, 1, 1, 4, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-04-17-01', 1, 1, 1, 1, 4, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-04-18-01', 1, 1, 1, 1, 4, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-04-19-01', 1, 1, 1, 1, 4, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-04-20-01', 1, 1, 1, 1, 4, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-04-21-01', 1, 1, 1, 1, 4, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-04-22-01', 1, 1, 1, 1, 4, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-05-01-01', 1, 1, 1, 1, 5, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-05-02-01', 1, 1, 1, 1, 5, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-05-03-01', 1, 1, 1, 1, 5, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-05-04-01', 1, 1, 1, 1, 5, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-05-05-01', 1, 1, 1, 1, 5, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-05-06-01', 1, 1, 1, 1, 5, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-05-07-01', 1, 1, 1, 1, 5, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-05-08-01', 1, 1, 1, 1, 5, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-05-09-01', 1, 1, 1, 1, 5, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-05-10-01', 1, 1, 1, 1, 5, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-05-11-01', 1, 1, 1, 1, 5, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-05-12-01', 1, 1, 1, 1, 5, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-05-13-01', 1, 1, 1, 1, 5, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-05-14-01', 1, 1, 1, 1, 5, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-05-15-01', 1, 1, 1, 1, 5, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-05-16-01', 1, 1, 1, 1, 5, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-05-17-01', 1, 1, 1, 1, 5, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-05-18-01', 1, 1, 1, 1, 5, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-05-19-01', 1, 1, 1, 1, 5, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-05-20-01', 1, 1, 1, 1, 5, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-05-21-01', 1, 1, 1, 1, 5, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-05-22-01', 1, 1, 1, 1, 5, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-06-01-01', 1, 1, 1, 1, 6, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-06-02-01', 1, 1, 1, 1, 6, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-06-03-01', 1, 1, 1, 1, 6, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-06-04-01', 1, 1, 1, 1, 6, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-06-05-01', 1, 1, 1, 1, 6, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-06-06-01', 1, 1, 1, 1, 6, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-06-07-01', 1, 1, 1, 1, 6, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-06-08-01', 1, 1, 1, 1, 6, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-06-09-01', 1, 1, 1, 1, 6, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-06-10-01', 1, 1, 1, 1, 6, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-06-11-01', 1, 1, 1, 1, 6, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-06-12-01', 1, 1, 1, 1, 6, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-06-13-01', 1, 1, 1, 1, 6, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-06-14-01', 1, 1, 1, 1, 6, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-06-15-01', 1, 1, 1, 1, 6, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-06-16-01', 1, 1, 1, 1, 6, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-06-17-01', 1, 1, 1, 1, 6, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-06-18-01', 1, 1, 1, 1, 6, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-06-19-01', 1, 1, 1, 1, 6, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-06-20-01', 1, 1, 1, 1, 6, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-06-21-01', 1, 1, 1, 1, 6, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-06-22-01', 1, 1, 1, 1, 6, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-07-01-01', 1, 1, 1, 1, 7, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-07-02-01', 1, 1, 1, 1, 7, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-07-03-01', 1, 1, 1, 1, 7, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-07-04-01', 1, 1, 1, 1, 7, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-07-05-01', 1, 1, 1, 1, 7, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-07-06-01', 1, 1, 1, 1, 7, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-07-07-01', 1, 1, 1, 1, 7, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-07-08-01', 1, 1, 1, 1, 7, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-07-09-01', 1, 1, 1, 1, 7, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-07-10-01', 1, 1, 1, 1, 7, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-07-11-01', 1, 1, 1, 1, 7, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-07-12-01', 1, 1, 1, 1, 7, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-07-13-01', 1, 1, 1, 1, 7, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-07-14-01', 1, 1, 1, 1, 7, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-07-15-01', 1, 1, 1, 1, 7, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-07-16-01', 1, 1, 1, 1, 7, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-07-17-01', 1, 1, 1, 1, 7, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-07-18-01', 1, 1, 1, 1, 7, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-07-19-01', 1, 1, 1, 1, 7, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-07-20-01', 1, 1, 1, 1, 7, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-07-21-01', 1, 1, 1, 1, 7, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-07-22-01', 1, 1, 1, 1, 7, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-08-01-01', 1, 1, 1, 1, 8, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-08-02-01', 1, 1, 1, 1, 8, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-08-03-01', 1, 1, 1, 1, 8, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-08-04-01', 1, 1, 1, 1, 8, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-08-05-01', 1, 1, 1, 1, 8, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-08-06-01', 1, 1, 1, 1, 8, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-08-07-01', 1, 1, 1, 1, 8, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-08-08-01', 1, 1, 1, 1, 8, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-08-09-01', 1, 1, 1, 1, 8, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-08-10-01', 1, 1, 1, 1, 8, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-08-11-01', 1, 1, 1, 1, 8, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-08-12-01', 1, 1, 1, 1, 8, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-08-13-01', 1, 1, 1, 1, 8, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-08-14-01', 1, 1, 1, 1, 8, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-08-15-01', 1, 1, 1, 1, 8, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-08-16-01', 1, 1, 1, 1, 8, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-08-17-01', 1, 1, 1, 1, 8, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-08-18-01', 1, 1, 1, 1, 8, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-08-19-01', 1, 1, 1, 1, 8, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-08-20-01', 1, 1, 1, 1, 8, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-08-21-01', 1, 1, 1, 1, 8, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-08-22-01', 1, 1, 1, 1, 8, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-09-01-01', 1, 1, 1, 1, 9, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-09-02-01', 1, 1, 1, 1, 9, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-09-03-01', 1, 1, 1, 1, 9, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-09-04-01', 1, 1, 1, 1, 9, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-09-05-01', 1, 1, 1, 1, 9, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-09-06-01', 1, 1, 1, 1, 9, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-09-07-01', 1, 1, 1, 1, 9, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-09-08-01', 1, 1, 1, 1, 9, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-09-09-01', 1, 1, 1, 1, 9, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-09-10-01', 1, 1, 1, 1, 9, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-09-11-01', 1, 1, 1, 1, 9, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-09-12-01', 1, 1, 1, 1, 9, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-09-13-01', 1, 1, 1, 1, 9, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-09-14-01', 1, 1, 1, 1, 9, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-09-15-01', 1, 1, 1, 1, 9, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-09-16-01', 1, 1, 1, 1, 9, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-09-17-01', 1, 1, 1, 1, 9, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-09-18-01', 1, 1, 1, 1, 9, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-09-19-01', 1, 1, 1, 1, 9, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-09-20-01', 1, 1, 1, 1, 9, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-09-21-01', 1, 1, 1, 1, 9, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-09-22-01', 1, 1, 1, 1, 9, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-10-01-01', 1, 1, 1, 1, 10, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-10-02-01', 1, 1, 1, 1, 10, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-10-03-01', 1, 1, 1, 1, 10, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-10-04-01', 1, 1, 1, 1, 10, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-10-05-01', 1, 1, 1, 1, 10, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-10-06-01', 1, 1, 1, 1, 10, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-10-07-01', 1, 1, 1, 1, 10, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-10-08-01', 1, 1, 1, 1, 10, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-10-09-01', 1, 1, 1, 1, 10, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-10-10-01', 1, 1, 1, 1, 10, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-10-11-01', 1, 1, 1, 1, 10, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-10-12-01', 1, 1, 1, 1, 10, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-10-13-01', 1, 1, 1, 1, 10, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-10-14-01', 1, 1, 1, 1, 10, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-10-15-01', 1, 1, 1, 1, 10, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-10-16-01', 1, 1, 1, 1, 10, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-10-17-01', 1, 1, 1, 1, 10, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-10-18-01', 1, 1, 1, 1, 10, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-10-19-01', 1, 1, 1, 1, 10, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-10-20-01', 1, 1, 1, 1, 10, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-10-21-01', 1, 1, 1, 1, 10, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-10-22-01', 1, 1, 1, 1, 10, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-11-01-01', 1, 1, 1, 1, 11, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-11-02-01', 1, 1, 1, 1, 11, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-11-03-01', 1, 1, 1, 1, 11, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-11-04-01', 1, 1, 1, 1, 11, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-11-05-01', 1, 1, 1, 1, 11, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-11-06-01', 1, 1, 1, 1, 11, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-11-07-01', 1, 1, 1, 1, 11, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-11-08-01', 1, 1, 1, 1, 11, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-11-09-01', 1, 1, 1, 1, 11, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-11-10-01', 1, 1, 1, 1, 11, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-11-11-01', 1, 1, 1, 1, 11, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-11-12-01', 1, 1, 1, 1, 11, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-11-13-01', 1, 1, 1, 1, 11, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-11-14-01', 1, 1, 1, 1, 11, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-11-15-01', 1, 1, 1, 1, 11, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-11-16-01', 1, 1, 1, 1, 11, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-11-17-01', 1, 1, 1, 1, 11, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-11-18-01', 1, 1, 1, 1, 11, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-11-19-01', 1, 1, 1, 1, 11, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-11-20-01', 1, 1, 1, 1, 11, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-11-21-01', 1, 1, 1, 1, 11, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-11-22-01', 1, 1, 1, 1, 11, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-12-01-01', 1, 1, 1, 1, 12, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-12-02-01', 1, 1, 1, 1, 12, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-12-03-01', 1, 1, 1, 1, 12, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-12-04-01', 1, 1, 1, 1, 12, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-12-05-01', 1, 1, 1, 1, 12, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-12-06-01', 1, 1, 1, 1, 12, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-12-07-01', 1, 1, 1, 1, 12, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-12-08-01', 1, 1, 1, 1, 12, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-12-09-01', 1, 1, 1, 1, 12, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-12-10-01', 1, 1, 1, 1, 12, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-12-11-01', 1, 1, 1, 1, 12, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-12-12-01', 1, 1, 1, 1, 12, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-12-13-01', 1, 1, 1, 1, 12, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-12-14-01', 1, 1, 1, 1, 12, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-12-15-01', 1, 1, 1, 1, 12, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-12-16-01', 1, 1, 1, 1, 12, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-12-17-01', 1, 1, 1, 1, 12, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-12-18-01', 1, 1, 1, 1, 12, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-12-19-01', 1, 1, 1, 1, 12, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-12-20-01', 1, 1, 1, 1, 12, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-12-21-01', 1, 1, 1, 1, 12, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-12-22-01', 1, 1, 1, 1, 12, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-13-01-01', 1, 1, 1, 1, 13, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-13-02-01', 1, 1, 1, 1, 13, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-13-03-01', 1, 1, 1, 1, 13, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-13-04-01', 1, 1, 1, 1, 13, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-13-05-01', 1, 1, 1, 1, 13, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-13-06-01', 1, 1, 1, 1, 13, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-13-07-01', 1, 1, 1, 1, 13, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-13-08-01', 1, 1, 1, 1, 13, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-13-09-01', 1, 1, 1, 1, 13, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-13-10-01', 1, 1, 1, 1, 13, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-13-11-01', 1, 1, 1, 1, 13, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-13-12-01', 1, 1, 1, 1, 13, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-13-13-01', 1, 1, 1, 1, 13, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-13-14-01', 1, 1, 1, 1, 13, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-13-15-01', 1, 1, 1, 1, 13, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-13-16-01', 1, 1, 1, 1, 13, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-13-17-01', 1, 1, 1, 1, 13, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-13-18-01', 1, 1, 1, 1, 13, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-13-19-01', 1, 1, 1, 1, 13, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-13-20-01', 1, 1, 1, 1, 13, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-13-21-01', 1, 1, 1, 1, 13, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-13-22-01', 1, 1, 1, 1, 13, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-14-01-01', 1, 1, 1, 1, 14, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-14-02-01', 1, 1, 1, 1, 14, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-14-03-01', 1, 1, 1, 1, 14, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-14-04-01', 1, 1, 1, 1, 14, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-14-05-01', 1, 1, 1, 1, 14, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-14-06-01', 1, 1, 1, 1, 14, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-14-07-01', 1, 1, 1, 1, 14, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-14-08-01', 1, 1, 1, 1, 14, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-14-09-01', 1, 1, 1, 1, 14, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-14-10-01', 1, 1, 1, 1, 14, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-14-11-01', 1, 1, 1, 1, 14, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-14-12-01', 1, 1, 1, 1, 14, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-14-13-01', 1, 1, 1, 1, 14, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-14-14-01', 1, 1, 1, 1, 14, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-14-15-01', 1, 1, 1, 1, 14, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-14-16-01', 1, 1, 1, 1, 14, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-14-17-01', 1, 1, 1, 1, 14, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-14-18-01', 1, 1, 1, 1, 14, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-14-19-01', 1, 1, 1, 1, 14, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-14-20-01', 1, 1, 1, 1, 14, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-14-21-01', 1, 1, 1, 1, 14, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-14-22-01', 1, 1, 1, 1, 14, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-15-01-01', 1, 1, 1, 1, 15, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-15-02-01', 1, 1, 1, 1, 15, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-15-03-01', 1, 1, 1, 1, 15, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-15-04-01', 1, 1, 1, 1, 15, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-15-05-01', 1, 1, 1, 1, 15, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-15-06-01', 1, 1, 1, 1, 15, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-15-07-01', 1, 1, 1, 1, 15, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-15-08-01', 1, 1, 1, 1, 15, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-15-09-01', 1, 1, 1, 1, 15, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-15-10-01', 1, 1, 1, 1, 15, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-15-11-01', 1, 1, 1, 1, 15, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-15-12-01', 1, 1, 1, 1, 15, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-15-13-01', 1, 1, 1, 1, 15, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-15-14-01', 1, 1, 1, 1, 15, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-15-15-01', 1, 1, 1, 1, 15, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-15-16-01', 1, 1, 1, 1, 15, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-15-17-01', 1, 1, 1, 1, 15, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-15-18-01', 1, 1, 1, 1, 15, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-15-19-01', 1, 1, 1, 1, 15, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-15-20-01', 1, 1, 1, 1, 15, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-15-21-01', 1, 1, 1, 1, 15, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-15-22-01', 1, 1, 1, 1, 15, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-16-01-01', 1, 1, 1, 1, 16, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-16-02-01', 1, 1, 1, 1, 16, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-16-03-01', 1, 1, 1, 1, 16, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-16-04-01', 1, 1, 1, 1, 16, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-16-05-01', 1, 1, 1, 1, 16, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-16-06-01', 1, 1, 1, 1, 16, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-16-07-01', 1, 1, 1, 1, 16, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-16-08-01', 1, 1, 1, 1, 16, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-16-09-01', 1, 1, 1, 1, 16, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-16-10-01', 1, 1, 1, 1, 16, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-16-11-01', 1, 1, 1, 1, 16, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-16-12-01', 1, 1, 1, 1, 16, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-16-13-01', 1, 1, 1, 1, 16, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-16-14-01', 1, 1, 1, 1, 16, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-16-15-01', 1, 1, 1, 1, 16, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-16-16-01', 1, 1, 1, 1, 16, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-16-17-01', 1, 1, 1, 1, 16, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-16-18-01', 1, 1, 1, 1, 16, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-16-19-01', 1, 1, 1, 1, 16, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-16-20-01', 1, 1, 1, 1, 16, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-16-21-01', 1, 1, 1, 1, 16, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-16-22-01', 1, 1, 1, 1, 16, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-17-01-01', 1, 1, 1, 1, 17, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-17-02-01', 1, 1, 1, 1, 17, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-17-03-01', 1, 1, 1, 1, 17, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-17-04-01', 1, 1, 1, 1, 17, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-17-05-01', 1, 1, 1, 1, 17, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-17-06-01', 1, 1, 1, 1, 17, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-17-07-01', 1, 1, 1, 1, 17, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-17-08-01', 1, 1, 1, 1, 17, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-17-09-01', 1, 1, 1, 1, 17, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-17-10-01', 1, 1, 1, 1, 17, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-17-11-01', 1, 1, 1, 1, 17, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-17-12-01', 1, 1, 1, 1, 17, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-17-13-01', 1, 1, 1, 1, 17, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-17-14-01', 1, 1, 1, 1, 17, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-17-15-01', 1, 1, 1, 1, 17, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-17-16-01', 1, 1, 1, 1, 17, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-17-17-01', 1, 1, 1, 1, 17, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-17-18-01', 1, 1, 1, 1, 17, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-17-19-01', 1, 1, 1, 1, 17, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-17-20-01', 1, 1, 1, 1, 17, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-17-21-01', 1, 1, 1, 1, 17, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-17-22-01', 1, 1, 1, 1, 17, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-18-01-01', 1, 1, 1, 1, 18, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-18-02-01', 1, 1, 1, 1, 18, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-18-03-01', 1, 1, 1, 1, 18, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-18-04-01', 1, 1, 1, 1, 18, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-18-05-01', 1, 1, 1, 1, 18, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-18-06-01', 1, 1, 1, 1, 18, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-18-07-01', 1, 1, 1, 1, 18, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-18-08-01', 1, 1, 1, 1, 18, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-18-09-01', 1, 1, 1, 1, 18, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-18-10-01', 1, 1, 1, 1, 18, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-18-11-01', 1, 1, 1, 1, 18, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-18-12-01', 1, 1, 1, 1, 18, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-18-13-01', 1, 1, 1, 1, 18, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-18-14-01', 1, 1, 1, 1, 18, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-18-15-01', 1, 1, 1, 1, 18, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-18-16-01', 1, 1, 1, 1, 18, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-18-17-01', 1, 1, 1, 1, 18, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-18-18-01', 1, 1, 1, 1, 18, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-18-19-01', 1, 1, 1, 1, 18, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-18-20-01', 1, 1, 1, 1, 18, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-18-21-01', 1, 1, 1, 1, 18, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-18-22-01', 1, 1, 1, 1, 18, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-19-01-01', 1, 1, 1, 1, 19, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-19-02-01', 1, 1, 1, 1, 19, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-19-03-01', 1, 1, 1, 1, 19, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-19-04-01', 1, 1, 1, 1, 19, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-19-05-01', 1, 1, 1, 1, 19, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-19-06-01', 1, 1, 1, 1, 19, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-19-07-01', 1, 1, 1, 1, 19, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-19-08-01', 1, 1, 1, 1, 19, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-19-09-01', 1, 1, 1, 1, 19, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-19-10-01', 1, 1, 1, 1, 19, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-19-11-01', 1, 1, 1, 1, 19, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-19-12-01', 1, 1, 1, 1, 19, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-19-13-01', 1, 1, 1, 1, 19, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-19-14-01', 1, 1, 1, 1, 19, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-19-15-01', 1, 1, 1, 1, 19, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-19-16-01', 1, 1, 1, 1, 19, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-19-17-01', 1, 1, 1, 1, 19, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-19-18-01', 1, 1, 1, 1, 19, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-19-19-01', 1, 1, 1, 1, 19, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-19-20-01', 1, 1, 1, 1, 19, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-19-21-01', 1, 1, 1, 1, 19, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-19-22-01', 1, 1, 1, 1, 19, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-20-01-01', 1, 1, 1, 1, 20, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-20-02-01', 1, 1, 1, 1, 20, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-20-03-01', 1, 1, 1, 1, 20, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-20-04-01', 1, 1, 1, 1, 20, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-20-05-01', 1, 1, 1, 1, 20, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-20-06-01', 1, 1, 1, 1, 20, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-20-07-01', 1, 1, 1, 1, 20, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-20-08-01', 1, 1, 1, 1, 20, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-20-09-01', 1, 1, 1, 1, 20, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-20-10-01', 1, 1, 1, 1, 20, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-20-11-01', 1, 1, 1, 1, 20, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-20-12-01', 1, 1, 1, 1, 20, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-20-13-01', 1, 1, 1, 1, 20, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-20-14-01', 1, 1, 1, 1, 20, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-20-15-01', 1, 1, 1, 1, 20, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-20-16-01', 1, 1, 1, 1, 20, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-20-17-01', 1, 1, 1, 1, 20, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-20-18-01', 1, 1, 1, 1, 20, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-20-19-01', 1, 1, 1, 1, 20, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-20-20-01', 1, 1, 1, 1, 20, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-20-21-01', 1, 1, 1, 1, 20, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-20-22-01', 1, 1, 1, 1, 20, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-21-01-01', 1, 1, 1, 1, 21, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-21-02-01', 1, 1, 1, 1, 21, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-21-03-01', 1, 1, 1, 1, 21, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-21-04-01', 1, 1, 1, 1, 21, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-21-05-01', 1, 1, 1, 1, 21, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-21-06-01', 1, 1, 1, 1, 21, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-21-07-01', 1, 1, 1, 1, 21, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-21-08-01', 1, 1, 1, 1, 21, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-21-09-01', 1, 1, 1, 1, 21, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-21-10-01', 1, 1, 1, 1, 21, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-21-11-01', 1, 1, 1, 1, 21, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-21-12-01', 1, 1, 1, 1, 21, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-21-13-01', 1, 1, 1, 1, 21, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-21-14-01', 1, 1, 1, 1, 21, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-21-15-01', 1, 1, 1, 1, 21, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-21-16-01', 1, 1, 1, 1, 21, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-21-17-01', 1, 1, 1, 1, 21, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-21-18-01', 1, 1, 1, 1, 21, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-21-19-01', 1, 1, 1, 1, 21, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-21-20-01', 1, 1, 1, 1, 21, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-21-21-01', 1, 1, 1, 1, 21, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-21-22-01', 1, 1, 1, 1, 21, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-22-01-01', 1, 1, 1, 1, 22, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-22-02-01', 1, 1, 1, 1, 22, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-22-03-01', 1, 1, 1, 1, 22, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-22-04-01', 1, 1, 1, 1, 22, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-22-05-01', 1, 1, 1, 1, 22, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-22-06-01', 1, 1, 1, 1, 22, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-22-07-01', 1, 1, 1, 1, 22, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-22-08-01', 1, 1, 1, 1, 22, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-22-09-01', 1, 1, 1, 1, 22, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-22-10-01', 1, 1, 1, 1, 22, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-22-11-01', 1, 1, 1, 1, 22, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-22-12-01', 1, 1, 1, 1, 22, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-22-13-01', 1, 1, 1, 1, 22, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-22-14-01', 1, 1, 1, 1, 22, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-22-15-01', 1, 1, 1, 1, 22, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-22-16-01', 1, 1, 1, 1, 22, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-22-17-01', 1, 1, 1, 1, 22, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-22-18-01', 1, 1, 1, 1, 22, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-22-19-01', 1, 1, 1, 1, 22, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-22-20-01', 1, 1, 1, 1, 22, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-22-21-01', 1, 1, 1, 1, 22, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-22-22-01', 1, 1, 1, 1, 22, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-23-01-01', 1, 1, 1, 1, 23, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-23-02-01', 1, 1, 1, 1, 23, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-23-03-01', 1, 1, 1, 1, 23, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-23-04-01', 1, 1, 1, 1, 23, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-23-05-01', 1, 1, 1, 1, 23, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-23-06-01', 1, 1, 1, 1, 23, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-23-07-01', 1, 1, 1, 1, 23, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-23-08-01', 1, 1, 1, 1, 23, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-23-09-01', 1, 1, 1, 1, 23, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-23-10-01', 1, 1, 1, 1, 23, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-23-11-01', 1, 1, 1, 1, 23, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-23-12-01', 1, 1, 1, 1, 23, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-23-13-01', 1, 1, 1, 1, 23, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-23-14-01', 1, 1, 1, 1, 23, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-23-15-01', 1, 1, 1, 1, 23, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-23-16-01', 1, 1, 1, 1, 23, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-23-17-01', 1, 1, 1, 1, 23, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-23-18-01', 1, 1, 1, 1, 23, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-23-19-01', 1, 1, 1, 1, 23, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-23-20-01', 1, 1, 1, 1, 23, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-23-21-01', 1, 1, 1, 1, 23, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-23-22-01', 1, 1, 1, 1, 23, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-24-01-01', 1, 1, 1, 1, 24, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-24-02-01', 1, 1, 1, 1, 24, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-24-03-01', 1, 1, 1, 1, 24, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-24-04-01', 1, 1, 1, 1, 24, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-24-05-01', 1, 1, 1, 1, 24, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-24-06-01', 1, 1, 1, 1, 24, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-24-07-01', 1, 1, 1, 1, 24, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-24-08-01', 1, 1, 1, 1, 24, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-24-09-01', 1, 1, 1, 1, 24, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-24-10-01', 1, 1, 1, 1, 24, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-24-11-01', 1, 1, 1, 1, 24, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-24-12-01', 1, 1, 1, 1, 24, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-24-13-01', 1, 1, 1, 1, 24, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-24-14-01', 1, 1, 1, 1, 24, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-24-15-01', 1, 1, 1, 1, 24, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-24-16-01', 1, 1, 1, 1, 24, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-24-17-01', 1, 1, 1, 1, 24, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-24-18-01', 1, 1, 1, 1, 24, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-24-19-01', 1, 1, 1, 1, 24, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-24-20-01', 1, 1, 1, 1, 24, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-24-21-01', 1, 1, 1, 1, 24, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-24-22-01', 1, 1, 1, 1, 24, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-25-01-01', 1, 1, 1, 1, 25, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-25-02-01', 1, 1, 1, 1, 25, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-25-03-01', 1, 1, 1, 1, 25, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-25-04-01', 1, 1, 1, 1, 25, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-25-05-01', 1, 1, 1, 1, 25, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-25-06-01', 1, 1, 1, 1, 25, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-25-07-01', 1, 1, 1, 1, 25, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-25-08-01', 1, 1, 1, 1, 25, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-25-09-01', 1, 1, 1, 1, 25, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-25-10-01', 1, 1, 1, 1, 25, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-25-11-01', 1, 1, 1, 1, 25, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-25-12-01', 1, 1, 1, 1, 25, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-25-13-01', 1, 1, 1, 1, 25, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-25-14-01', 1, 1, 1, 1, 25, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-25-15-01', 1, 1, 1, 1, 25, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-25-16-01', 1, 1, 1, 1, 25, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-25-17-01', 1, 1, 1, 1, 25, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-25-18-01', 1, 1, 1, 1, 25, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-25-19-01', 1, 1, 1, 1, 25, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-25-20-01', 1, 1, 1, 1, 25, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-25-21-01', 1, 1, 1, 1, 25, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-25-22-01', 1, 1, 1, 1, 25, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-26-01-01', 1, 1, 1, 1, 26, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-26-02-01', 1, 1, 1, 1, 26, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-26-03-01', 1, 1, 1, 1, 26, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-26-04-01', 1, 1, 1, 1, 26, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-26-05-01', 1, 1, 1, 1, 26, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-26-06-01', 1, 1, 1, 1, 26, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-26-07-01', 1, 1, 1, 1, 26, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-26-08-01', 1, 1, 1, 1, 26, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-26-09-01', 1, 1, 1, 1, 26, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-26-10-01', 1, 1, 1, 1, 26, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-26-11-01', 1, 1, 1, 1, 26, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-26-12-01', 1, 1, 1, 1, 26, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-26-13-01', 1, 1, 1, 1, 26, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-26-14-01', 1, 1, 1, 1, 26, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-26-15-01', 1, 1, 1, 1, 26, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-26-16-01', 1, 1, 1, 1, 26, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-26-17-01', 1, 1, 1, 1, 26, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-26-18-01', 1, 1, 1, 1, 26, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-26-19-01', 1, 1, 1, 1, 26, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-26-20-01', 1, 1, 1, 1, 26, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-26-21-01', 1, 1, 1, 1, 26, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-26-22-01', 1, 1, 1, 1, 26, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-27-01-01', 1, 1, 1, 1, 27, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-27-02-01', 1, 1, 1, 1, 27, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-27-03-01', 1, 1, 1, 1, 27, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-27-04-01', 1, 1, 1, 1, 27, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-27-05-01', 1, 1, 1, 1, 27, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-27-06-01', 1, 1, 1, 1, 27, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-27-07-01', 1, 1, 1, 1, 27, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-27-08-01', 1, 1, 1, 1, 27, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-27-09-01', 1, 1, 1, 1, 27, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-27-10-01', 1, 1, 1, 1, 27, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-27-11-01', 1, 1, 1, 1, 27, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-27-12-01', 1, 1, 1, 1, 27, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-27-13-01', 1, 1, 1, 1, 27, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-27-14-01', 1, 1, 1, 1, 27, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-27-15-01', 1, 1, 1, 1, 27, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-27-16-01', 1, 1, 1, 1, 27, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-27-17-01', 1, 1, 1, 1, 27, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-27-18-01', 1, 1, 1, 1, 27, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-27-19-01', 1, 1, 1, 1, 27, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-27-20-01', 1, 1, 1, 1, 27, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-27-21-01', 1, 1, 1, 1, 27, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-27-22-01', 1, 1, 1, 1, 27, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-28-01-01', 1, 1, 1, 1, 28, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-28-02-01', 1, 1, 1, 1, 28, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-28-03-01', 1, 1, 1, 1, 28, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-28-04-01', 1, 1, 1, 1, 28, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-28-05-01', 1, 1, 1, 1, 28, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-28-06-01', 1, 1, 1, 1, 28, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-28-07-01', 1, 1, 1, 1, 28, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-28-08-01', 1, 1, 1, 1, 28, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-28-09-01', 1, 1, 1, 1, 28, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-28-10-01', 1, 1, 1, 1, 28, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-28-11-01', 1, 1, 1, 1, 28, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-28-12-01', 1, 1, 1, 1, 28, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-28-13-01', 1, 1, 1, 1, 28, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-28-14-01', 1, 1, 1, 1, 28, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-28-15-01', 1, 1, 1, 1, 28, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-28-16-01', 1, 1, 1, 1, 28, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-28-17-01', 1, 1, 1, 1, 28, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-28-18-01', 1, 1, 1, 1, 28, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-28-19-01', 1, 1, 1, 1, 28, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-28-20-01', 1, 1, 1, 1, 28, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-28-21-01', 1, 1, 1, 1, 28, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-28-22-01', 1, 1, 1, 1, 28, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-29-01-01', 1, 1, 1, 1, 29, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-29-02-01', 1, 1, 1, 1, 29, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-29-03-01', 1, 1, 1, 1, 29, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-29-04-01', 1, 1, 1, 1, 29, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-29-05-01', 1, 1, 1, 1, 29, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-29-06-01', 1, 1, 1, 1, 29, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-29-07-01', 1, 1, 1, 1, 29, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-29-08-01', 1, 1, 1, 1, 29, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-29-09-01', 1, 1, 1, 1, 29, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-29-10-01', 1, 1, 1, 1, 29, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-29-11-01', 1, 1, 1, 1, 29, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-29-12-01', 1, 1, 1, 1, 29, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-29-13-01', 1, 1, 1, 1, 29, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-29-14-01', 1, 1, 1, 1, 29, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-29-15-01', 1, 1, 1, 1, 29, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-29-16-01', 1, 1, 1, 1, 29, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-29-17-01', 1, 1, 1, 1, 29, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-29-18-01', 1, 1, 1, 1, 29, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-29-19-01', 1, 1, 1, 1, 29, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-29-20-01', 1, 1, 1, 1, 29, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-29-21-01', 1, 1, 1, 1, 29, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-29-22-01', 1, 1, 1, 1, 29, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-30-01-01', 1, 1, 1, 1, 30, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-30-02-01', 1, 1, 1, 1, 30, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-30-03-01', 1, 1, 1, 1, 30, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-30-04-01', 1, 1, 1, 1, 30, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-30-05-01', 1, 1, 1, 1, 30, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-30-06-01', 1, 1, 1, 1, 30, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-30-07-01', 1, 1, 1, 1, 30, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-30-08-01', 1, 1, 1, 1, 30, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-30-09-01', 1, 1, 1, 1, 30, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-30-10-01', 1, 1, 1, 1, 30, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-30-11-01', 1, 1, 1, 1, 30, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-30-12-01', 1, 1, 1, 1, 30, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-30-13-01', 1, 1, 1, 1, 30, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-30-14-01', 1, 1, 1, 1, 30, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-30-15-01', 1, 1, 1, 1, 30, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-30-16-01', 1, 1, 1, 1, 30, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-30-17-01', 1, 1, 1, 1, 30, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-30-18-01', 1, 1, 1, 1, 30, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-30-19-01', 1, 1, 1, 1, 30, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-30-20-01', 1, 1, 1, 1, 30, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-30-21-01', 1, 1, 1, 1, 30, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-30-22-01', 1, 1, 1, 1, 30, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-31-01-01', 1, 1, 1, 1, 31, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-31-02-01', 1, 1, 1, 1, 31, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-31-03-01', 1, 1, 1, 1, 31, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-31-04-01', 1, 1, 1, 1, 31, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-31-05-01', 1, 1, 1, 1, 31, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-31-06-01', 1, 1, 1, 1, 31, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-31-07-01', 1, 1, 1, 1, 31, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-31-08-01', 1, 1, 1, 1, 31, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-31-09-01', 1, 1, 1, 1, 31, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-31-10-01', 1, 1, 1, 1, 31, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-31-11-01', 1, 1, 1, 1, 31, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-31-12-01', 1, 1, 1, 1, 31, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-31-13-01', 1, 1, 1, 1, 31, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-31-14-01', 1, 1, 1, 1, 31, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-31-15-01', 1, 1, 1, 1, 31, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-31-16-01', 1, 1, 1, 1, 31, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-31-17-01', 1, 1, 1, 1, 31, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-31-18-01', 1, 1, 1, 1, 31, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-31-19-01', 1, 1, 1, 1, 31, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-31-20-01', 1, 1, 1, 1, 31, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-31-21-01', 1, 1, 1, 1, 31, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-31-22-01', 1, 1, 1, 1, 31, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-32-01-01', 1, 1, 1, 1, 32, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-32-02-01', 1, 1, 1, 1, 32, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-32-03-01', 1, 1, 1, 1, 32, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-32-04-01', 1, 1, 1, 1, 32, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-32-05-01', 1, 1, 1, 1, 32, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-32-06-01', 1, 1, 1, 1, 32, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-32-07-01', 1, 1, 1, 1, 32, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-32-08-01', 1, 1, 1, 1, 32, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-32-09-01', 1, 1, 1, 1, 32, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-32-10-01', 1, 1, 1, 1, 32, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-32-11-01', 1, 1, 1, 1, 32, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-32-12-01', 1, 1, 1, 1, 32, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-32-13-01', 1, 1, 1, 1, 32, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-32-14-01', 1, 1, 1, 1, 32, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-32-15-01', 1, 1, 1, 1, 32, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-32-16-01', 1, 1, 1, 1, 32, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-32-17-01', 1, 1, 1, 1, 32, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-32-18-01', 1, 1, 1, 1, 32, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-32-19-01', 1, 1, 1, 1, 32, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-32-20-01', 1, 1, 1, 1, 32, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-32-21-01', 1, 1, 1, 1, 32, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-32-22-01', 1, 1, 1, 1, 32, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-33-01-01', 1, 1, 1, 1, 33, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-33-02-01', 1, 1, 1, 1, 33, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-33-03-01', 1, 1, 1, 1, 33, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-33-04-01', 1, 1, 1, 1, 33, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-33-05-01', 1, 1, 1, 1, 33, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-33-06-01', 1, 1, 1, 1, 33, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-33-07-01', 1, 1, 1, 1, 33, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-33-08-01', 1, 1, 1, 1, 33, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-33-09-01', 1, 1, 1, 1, 33, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-33-10-01', 1, 1, 1, 1, 33, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-33-11-01', 1, 1, 1, 1, 33, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-33-12-01', 1, 1, 1, 1, 33, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-33-13-01', 1, 1, 1, 1, 33, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-33-14-01', 1, 1, 1, 1, 33, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-33-15-01', 1, 1, 1, 1, 33, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-33-16-01', 1, 1, 1, 1, 33, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-33-17-01', 1, 1, 1, 1, 33, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-33-18-01', 1, 1, 1, 1, 33, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-33-19-01', 1, 1, 1, 1, 33, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-33-20-01', 1, 1, 1, 1, 33, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-33-21-01', 1, 1, 1, 1, 33, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-33-22-01', 1, 1, 1, 1, 33, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-34-01-01', 1, 1, 1, 1, 34, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-34-02-01', 1, 1, 1, 1, 34, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-34-03-01', 1, 1, 1, 1, 34, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-34-04-01', 1, 1, 1, 1, 34, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-34-05-01', 1, 1, 1, 1, 34, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-34-06-01', 1, 1, 1, 1, 34, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-34-07-01', 1, 1, 1, 1, 34, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-34-08-01', 1, 1, 1, 1, 34, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-34-09-01', 1, 1, 1, 1, 34, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-34-10-01', 1, 1, 1, 1, 34, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-34-11-01', 1, 1, 1, 1, 34, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-34-12-01', 1, 1, 1, 1, 34, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-34-13-01', 1, 1, 1, 1, 34, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-34-14-01', 1, 1, 1, 1, 34, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-34-15-01', 1, 1, 1, 1, 34, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-34-16-01', 1, 1, 1, 1, 34, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-34-17-01', 1, 1, 1, 1, 34, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-34-18-01', 1, 1, 1, 1, 34, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-34-19-01', 1, 1, 1, 1, 34, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-34-20-01', 1, 1, 1, 1, 34, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-34-21-01', 1, 1, 1, 1, 34, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-34-22-01', 1, 1, 1, 1, 34, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-35-01-01', 1, 1, 1, 1, 35, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-35-02-01', 1, 1, 1, 1, 35, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-35-03-01', 1, 1, 1, 1, 35, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-35-04-01', 1, 1, 1, 1, 35, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-35-05-01', 1, 1, 1, 1, 35, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-35-06-01', 1, 1, 1, 1, 35, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-35-07-01', 1, 1, 1, 1, 35, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-35-08-01', 1, 1, 1, 1, 35, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-35-09-01', 1, 1, 1, 1, 35, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-35-10-01', 1, 1, 1, 1, 35, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-35-11-01', 1, 1, 1, 1, 35, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-35-12-01', 1, 1, 1, 1, 35, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-35-13-01', 1, 1, 1, 1, 35, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-35-14-01', 1, 1, 1, 1, 35, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-35-15-01', 1, 1, 1, 1, 35, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-35-16-01', 1, 1, 1, 1, 35, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-35-17-01', 1, 1, 1, 1, 35, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-35-18-01', 1, 1, 1, 1, 35, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-35-19-01', 1, 1, 1, 1, 35, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-35-20-01', 1, 1, 1, 1, 35, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-35-21-01', 1, 1, 1, 1, 35, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-35-22-01', 1, 1, 1, 1, 35, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-36-01-01', 1, 1, 1, 1, 36, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-36-02-01', 1, 1, 1, 1, 36, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-36-03-01', 1, 1, 1, 1, 36, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-36-04-01', 1, 1, 1, 1, 36, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-36-05-01', 1, 1, 1, 1, 36, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-36-06-01', 1, 1, 1, 1, 36, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-36-07-01', 1, 1, 1, 1, 36, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-36-08-01', 1, 1, 1, 1, 36, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-36-09-01', 1, 1, 1, 1, 36, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-36-10-01', 1, 1, 1, 1, 36, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-36-11-01', 1, 1, 1, 1, 36, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-36-12-01', 1, 1, 1, 1, 36, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-36-13-01', 1, 1, 1, 1, 36, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-36-14-01', 1, 1, 1, 1, 36, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-36-15-01', 1, 1, 1, 1, 36, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-36-16-01', 1, 1, 1, 1, 36, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-36-17-01', 1, 1, 1, 1, 36, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-36-18-01', 1, 1, 1, 1, 36, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-36-19-01', 1, 1, 1, 1, 36, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-36-20-01', 1, 1, 1, 1, 36, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-36-21-01', 1, 1, 1, 1, 36, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-36-22-01', 1, 1, 1, 1, 36, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-37-01-01', 1, 1, 1, 1, 37, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-37-02-01', 1, 1, 1, 1, 37, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-37-03-01', 1, 1, 1, 1, 37, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-37-04-01', 1, 1, 1, 1, 37, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-37-05-01', 1, 1, 1, 1, 37, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-37-06-01', 1, 1, 1, 1, 37, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-37-07-01', 1, 1, 1, 1, 37, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-37-08-01', 1, 1, 1, 1, 37, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-37-09-01', 1, 1, 1, 1, 37, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-37-10-01', 1, 1, 1, 1, 37, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-37-11-01', 1, 1, 1, 1, 37, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-37-12-01', 1, 1, 1, 1, 37, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-37-13-01', 1, 1, 1, 1, 37, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-37-14-01', 1, 1, 1, 1, 37, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-37-15-01', 1, 1, 1, 1, 37, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-37-16-01', 1, 1, 1, 1, 37, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-37-17-01', 1, 1, 1, 1, 37, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-37-18-01', 1, 1, 1, 1, 37, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-37-19-01', 1, 1, 1, 1, 37, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-37-20-01', 1, 1, 1, 1, 37, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-37-21-01', 1, 1, 1, 1, 37, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-37-22-01', 1, 1, 1, 1, 37, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-38-01-01', 1, 1, 1, 1, 38, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-38-02-01', 1, 1, 1, 1, 38, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-38-03-01', 1, 1, 1, 1, 38, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-38-04-01', 1, 1, 1, 1, 38, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-38-05-01', 1, 1, 1, 1, 38, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-38-06-01', 1, 1, 1, 1, 38, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-38-07-01', 1, 1, 1, 1, 38, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-38-08-01', 1, 1, 1, 1, 38, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-38-09-01', 1, 1, 1, 1, 38, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-38-10-01', 1, 1, 1, 1, 38, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-38-11-01', 1, 1, 1, 1, 38, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-38-12-01', 1, 1, 1, 1, 38, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-38-13-01', 1, 1, 1, 1, 38, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-38-14-01', 1, 1, 1, 1, 38, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-38-15-01', 1, 1, 1, 1, 38, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-38-16-01', 1, 1, 1, 1, 38, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-38-17-01', 1, 1, 1, 1, 38, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-38-18-01', 1, 1, 1, 1, 38, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-38-19-01', 1, 1, 1, 1, 38, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-38-20-01', 1, 1, 1, 1, 38, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-38-21-01', 1, 1, 1, 1, 38, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-38-22-01', 1, 1, 1, 1, 38, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-39-01-01', 1, 1, 1, 1, 39, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-39-02-01', 1, 1, 1, 1, 39, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-39-03-01', 1, 1, 1, 1, 39, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-39-04-01', 1, 1, 1, 1, 39, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-39-05-01', 1, 1, 1, 1, 39, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-39-06-01', 1, 1, 1, 1, 39, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-39-07-01', 1, 1, 1, 1, 39, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-39-08-01', 1, 1, 1, 1, 39, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-39-09-01', 1, 1, 1, 1, 39, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-39-10-01', 1, 1, 1, 1, 39, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-39-11-01', 1, 1, 1, 1, 39, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-39-12-01', 1, 1, 1, 1, 39, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-39-13-01', 1, 1, 1, 1, 39, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-39-14-01', 1, 1, 1, 1, 39, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-39-15-01', 1, 1, 1, 1, 39, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-39-16-01', 1, 1, 1, 1, 39, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-39-17-01', 1, 1, 1, 1, 39, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-39-18-01', 1, 1, 1, 1, 39, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-39-19-01', 1, 1, 1, 1, 39, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-39-20-01', 1, 1, 1, 1, 39, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-39-21-01', 1, 1, 1, 1, 39, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-39-22-01', 1, 1, 1, 1, 39, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-40-01-01', 1, 1, 1, 1, 40, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-40-02-01', 1, 1, 1, 1, 40, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-40-03-01', 1, 1, 1, 1, 40, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-40-04-01', 1, 1, 1, 1, 40, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-40-05-01', 1, 1, 1, 1, 40, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-40-06-01', 1, 1, 1, 1, 40, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-40-07-01', 1, 1, 1, 1, 40, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-40-08-01', 1, 1, 1, 1, 40, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-40-09-01', 1, 1, 1, 1, 40, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-40-10-01', 1, 1, 1, 1, 40, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-40-11-01', 1, 1, 1, 1, 40, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-40-12-01', 1, 1, 1, 1, 40, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-40-13-01', 1, 1, 1, 1, 40, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-40-14-01', 1, 1, 1, 1, 40, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-40-15-01', 1, 1, 1, 1, 40, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-40-16-01', 1, 1, 1, 1, 40, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-40-17-01', 1, 1, 1, 1, 40, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-40-18-01', 1, 1, 1, 1, 40, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-40-19-01', 1, 1, 1, 1, 40, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-40-20-01', 1, 1, 1, 1, 40, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-40-21-01', 1, 1, 1, 1, 40, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-40-22-01', 1, 1, 1, 1, 40, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-41-01-01', 1, 1, 1, 1, 41, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-41-02-01', 1, 1, 1, 1, 41, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-41-03-01', 1, 1, 1, 1, 41, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-41-04-01', 1, 1, 1, 1, 41, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-41-05-01', 1, 1, 1, 1, 41, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-41-06-01', 1, 1, 1, 1, 41, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-41-07-01', 1, 1, 1, 1, 41, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-41-08-01', 1, 1, 1, 1, 41, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-41-09-01', 1, 1, 1, 1, 41, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-41-10-01', 1, 1, 1, 1, 41, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-41-11-01', 1, 1, 1, 1, 41, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-41-12-01', 1, 1, 1, 1, 41, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-41-13-01', 1, 1, 1, 1, 41, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-41-14-01', 1, 1, 1, 1, 41, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-41-15-01', 1, 1, 1, 1, 41, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-41-16-01', 1, 1, 1, 1, 41, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-41-17-01', 1, 1, 1, 1, 41, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-41-18-01', 1, 1, 1, 1, 41, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-41-19-01', 1, 1, 1, 1, 41, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-41-20-01', 1, 1, 1, 1, 41, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-41-21-01', 1, 1, 1, 1, 41, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-41-22-01', 1, 1, 1, 1, 41, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-42-01-01', 1, 1, 1, 1, 42, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-42-02-01', 1, 1, 1, 1, 42, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-42-03-01', 1, 1, 1, 1, 42, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-42-04-01', 1, 1, 1, 1, 42, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-42-05-01', 1, 1, 1, 1, 42, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-42-06-01', 1, 1, 1, 1, 42, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-42-07-01', 1, 1, 1, 1, 42, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-42-08-01', 1, 1, 1, 1, 42, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-42-09-01', 1, 1, 1, 1, 42, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-42-10-01', 1, 1, 1, 1, 42, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-42-11-01', 1, 1, 1, 1, 42, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-42-12-01', 1, 1, 1, 1, 42, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-42-13-01', 1, 1, 1, 1, 42, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-42-14-01', 1, 1, 1, 1, 42, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-42-15-01', 1, 1, 1, 1, 42, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-42-16-01', 1, 1, 1, 1, 42, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-42-17-01', 1, 1, 1, 1, 42, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-42-18-01', 1, 1, 1, 1, 42, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-42-19-01', 1, 1, 1, 1, 42, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-42-20-01', 1, 1, 1, 1, 42, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-42-21-01', 1, 1, 1, 1, 42, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-42-22-01', 1, 1, 1, 1, 42, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-43-01-01', 1, 1, 1, 1, 43, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-43-02-01', 1, 1, 1, 1, 43, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-43-03-01', 1, 1, 1, 1, 43, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-43-04-01', 1, 1, 1, 1, 43, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-43-05-01', 1, 1, 1, 1, 43, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-43-06-01', 1, 1, 1, 1, 43, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-43-07-01', 1, 1, 1, 1, 43, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-43-08-01', 1, 1, 1, 1, 43, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-43-09-01', 1, 1, 1, 1, 43, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-43-10-01', 1, 1, 1, 1, 43, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-43-11-01', 1, 1, 1, 1, 43, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-43-12-01', 1, 1, 1, 1, 43, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-43-13-01', 1, 1, 1, 1, 43, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-43-14-01', 1, 1, 1, 1, 43, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-43-15-01', 1, 1, 1, 1, 43, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-43-16-01', 1, 1, 1, 1, 43, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-43-17-01', 1, 1, 1, 1, 43, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-43-18-01', 1, 1, 1, 1, 43, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-43-19-01', 1, 1, 1, 1, 43, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-43-20-01', 1, 1, 1, 1, 43, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-43-21-01', 1, 1, 1, 1, 43, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-43-22-01', 1, 1, 1, 1, 43, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-44-01-01', 1, 1, 1, 1, 44, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-44-02-01', 1, 1, 1, 1, 44, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-44-03-01', 1, 1, 1, 1, 44, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-44-04-01', 1, 1, 1, 1, 44, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-44-05-01', 1, 1, 1, 1, 44, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-44-06-01', 1, 1, 1, 1, 44, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-44-07-01', 1, 1, 1, 1, 44, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-44-08-01', 1, 1, 1, 1, 44, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-44-09-01', 1, 1, 1, 1, 44, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-44-10-01', 1, 1, 1, 1, 44, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-44-11-01', 1, 1, 1, 1, 44, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-44-12-01', 1, 1, 1, 1, 44, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-44-13-01', 1, 1, 1, 1, 44, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-44-14-01', 1, 1, 1, 1, 44, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-44-15-01', 1, 1, 1, 1, 44, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-44-16-01', 1, 1, 1, 1, 44, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-44-17-01', 1, 1, 1, 1, 44, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-44-18-01', 1, 1, 1, 1, 44, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-44-19-01', 1, 1, 1, 1, 44, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-44-20-01', 1, 1, 1, 1, 44, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-44-21-01', 1, 1, 1, 1, 44, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-44-22-01', 1, 1, 1, 1, 44, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-45-01-01', 1, 1, 1, 1, 45, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-45-02-01', 1, 1, 1, 1, 45, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-45-03-01', 1, 1, 1, 1, 45, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-45-04-01', 1, 1, 1, 1, 45, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-45-05-01', 1, 1, 1, 1, 45, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-45-06-01', 1, 1, 1, 1, 45, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-45-07-01', 1, 1, 1, 1, 45, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-45-08-01', 1, 1, 1, 1, 45, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-45-09-01', 1, 1, 1, 1, 45, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-45-10-01', 1, 1, 1, 1, 45, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-45-11-01', 1, 1, 1, 1, 45, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-45-12-01', 1, 1, 1, 1, 45, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-45-13-01', 1, 1, 1, 1, 45, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-45-14-01', 1, 1, 1, 1, 45, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-45-15-01', 1, 1, 1, 1, 45, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-45-16-01', 1, 1, 1, 1, 45, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-45-17-01', 1, 1, 1, 1, 45, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-45-18-01', 1, 1, 1, 1, 45, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-45-19-01', 1, 1, 1, 1, 45, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-45-20-01', 1, 1, 1, 1, 45, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-45-21-01', 1, 1, 1, 1, 45, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-45-22-01', 1, 1, 1, 1, 45, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-46-01-01', 1, 1, 1, 1, 46, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-46-02-01', 1, 1, 1, 1, 46, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-46-03-01', 1, 1, 1, 1, 46, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-46-04-01', 1, 1, 1, 1, 46, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-46-05-01', 1, 1, 1, 1, 46, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-46-06-01', 1, 1, 1, 1, 46, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-46-07-01', 1, 1, 1, 1, 46, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-46-08-01', 1, 1, 1, 1, 46, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-46-09-01', 1, 1, 1, 1, 46, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-46-10-01', 1, 1, 1, 1, 46, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-46-11-01', 1, 1, 1, 1, 46, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-46-12-01', 1, 1, 1, 1, 46, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-46-13-01', 1, 1, 1, 1, 46, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-46-14-01', 1, 1, 1, 1, 46, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-46-15-01', 1, 1, 1, 1, 46, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-46-16-01', 1, 1, 1, 1, 46, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-46-17-01', 1, 1, 1, 1, 46, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-46-18-01', 1, 1, 1, 1, 46, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-46-19-01', 1, 1, 1, 1, 46, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-46-20-01', 1, 1, 1, 1, 46, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-46-21-01', 1, 1, 1, 1, 46, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-46-22-01', 1, 1, 1, 1, 46, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-47-01-01', 1, 1, 1, 1, 47, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-47-02-01', 1, 1, 1, 1, 47, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-47-03-01', 1, 1, 1, 1, 47, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-47-04-01', 1, 1, 1, 1, 47, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-47-05-01', 1, 1, 1, 1, 47, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-47-06-01', 1, 1, 1, 1, 47, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-47-07-01', 1, 1, 1, 1, 47, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-47-08-01', 1, 1, 1, 1, 47, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-47-09-01', 1, 1, 1, 1, 47, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-47-10-01', 1, 1, 1, 1, 47, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-47-11-01', 1, 1, 1, 1, 47, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-47-12-01', 1, 1, 1, 1, 47, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-47-13-01', 1, 1, 1, 1, 47, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-47-14-01', 1, 1, 1, 1, 47, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-47-15-01', 1, 1, 1, 1, 47, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-47-16-01', 1, 1, 1, 1, 47, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-47-17-01', 1, 1, 1, 1, 47, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-47-18-01', 1, 1, 1, 1, 47, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-47-19-01', 1, 1, 1, 1, 47, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-47-20-01', 1, 1, 1, 1, 47, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-47-21-01', 1, 1, 1, 1, 47, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-47-22-01', 1, 1, 1, 1, 47, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-48-01-01', 1, 1, 1, 1, 48, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-48-02-01', 1, 1, 1, 1, 48, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-48-03-01', 1, 1, 1, 1, 48, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-48-04-01', 1, 1, 1, 1, 48, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-48-05-01', 1, 1, 1, 1, 48, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-48-06-01', 1, 1, 1, 1, 48, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-48-07-01', 1, 1, 1, 1, 48, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-48-08-01', 1, 1, 1, 1, 48, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-48-09-01', 1, 1, 1, 1, 48, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-48-10-01', 1, 1, 1, 1, 48, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-48-11-01', 1, 1, 1, 1, 48, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-48-12-01', 1, 1, 1, 1, 48, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-48-13-01', 1, 1, 1, 1, 48, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-48-14-01', 1, 1, 1, 1, 48, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-48-15-01', 1, 1, 1, 1, 48, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-48-16-01', 1, 1, 1, 1, 48, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-48-17-01', 1, 1, 1, 1, 48, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-48-18-01', 1, 1, 1, 1, 48, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-48-19-01', 1, 1, 1, 1, 48, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-48-20-01', 1, 1, 1, 1, 48, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-48-21-01', 1, 1, 1, 1, 48, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-48-22-01', 1, 1, 1, 1, 48, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-49-01-01', 1, 1, 1, 1, 49, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-49-02-01', 1, 1, 1, 1, 49, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-49-03-01', 1, 1, 1, 1, 49, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-49-04-01', 1, 1, 1, 1, 49, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-49-05-01', 1, 1, 1, 1, 49, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-49-06-01', 1, 1, 1, 1, 49, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-49-07-01', 1, 1, 1, 1, 49, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-49-08-01', 1, 1, 1, 1, 49, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-49-09-01', 1, 1, 1, 1, 49, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-49-10-01', 1, 1, 1, 1, 49, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-49-11-01', 1, 1, 1, 1, 49, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-49-12-01', 1, 1, 1, 1, 49, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-49-13-01', 1, 1, 1, 1, 49, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-49-14-01', 1, 1, 1, 1, 49, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-49-15-01', 1, 1, 1, 1, 49, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-49-16-01', 1, 1, 1, 1, 49, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-49-17-01', 1, 1, 1, 1, 49, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-49-18-01', 1, 1, 1, 1, 49, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-49-19-01', 1, 1, 1, 1, 49, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-49-20-01', 1, 1, 1, 1, 49, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-49-21-01', 1, 1, 1, 1, 49, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-49-22-01', 1, 1, 1, 1, 49, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-50-01-01', 1, 1, 1, 1, 50, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-50-02-01', 1, 1, 1, 1, 50, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-50-03-01', 1, 1, 1, 1, 50, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-50-04-01', 1, 1, 1, 1, 50, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-50-05-01', 1, 1, 1, 1, 50, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-50-06-01', 1, 1, 1, 1, 50, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-50-07-01', 1, 1, 1, 1, 50, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-50-08-01', 1, 1, 1, 1, 50, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-50-09-01', 1, 1, 1, 1, 50, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-50-10-01', 1, 1, 1, 1, 50, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-50-11-01', 1, 1, 1, 1, 50, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-50-12-01', 1, 1, 1, 1, 50, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-50-13-01', 1, 1, 1, 1, 50, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-50-14-01', 1, 1, 1, 1, 50, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-50-15-01', 1, 1, 1, 1, 50, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-50-16-01', 1, 1, 1, 1, 50, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-50-17-01', 1, 1, 1, 1, 50, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-50-18-01', 1, 1, 1, 1, 50, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-50-19-01', 1, 1, 1, 1, 50, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-50-20-01', 1, 1, 1, 1, 50, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-50-21-01', 1, 1, 1, 1, 50, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-50-22-01', 1, 1, 1, 1, 50, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-51-01-01', 1, 1, 1, 1, 51, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-51-02-01', 1, 1, 1, 1, 51, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-51-03-01', 1, 1, 1, 1, 51, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-51-04-01', 1, 1, 1, 1, 51, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-51-05-01', 1, 1, 1, 1, 51, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-51-06-01', 1, 1, 1, 1, 51, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-51-07-01', 1, 1, 1, 1, 51, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-51-08-01', 1, 1, 1, 1, 51, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-51-09-01', 1, 1, 1, 1, 51, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-51-10-01', 1, 1, 1, 1, 51, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-51-11-01', 1, 1, 1, 1, 51, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-51-12-01', 1, 1, 1, 1, 51, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-51-13-01', 1, 1, 1, 1, 51, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-51-14-01', 1, 1, 1, 1, 51, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-51-15-01', 1, 1, 1, 1, 51, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-51-16-01', 1, 1, 1, 1, 51, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-51-17-01', 1, 1, 1, 1, 51, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-51-18-01', 1, 1, 1, 1, 51, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-51-19-01', 1, 1, 1, 1, 51, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-51-20-01', 1, 1, 1, 1, 51, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-51-21-01', 1, 1, 1, 1, 51, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-51-22-01', 1, 1, 1, 1, 51, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-52-01-01', 1, 1, 1, 1, 52, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-52-02-01', 1, 1, 1, 1, 52, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-52-03-01', 1, 1, 1, 1, 52, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-52-04-01', 1, 1, 1, 1, 52, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-52-05-01', 1, 1, 1, 1, 52, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-52-06-01', 1, 1, 1, 1, 52, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-52-07-01', 1, 1, 1, 1, 52, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-52-08-01', 1, 1, 1, 1, 52, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-52-09-01', 1, 1, 1, 1, 52, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-52-10-01', 1, 1, 1, 1, 52, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-52-11-01', 1, 1, 1, 1, 52, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-52-12-01', 1, 1, 1, 1, 52, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-52-13-01', 1, 1, 1, 1, 52, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-52-14-01', 1, 1, 1, 1, 52, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-52-15-01', 1, 1, 1, 1, 52, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-52-16-01', 1, 1, 1, 1, 52, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-52-17-01', 1, 1, 1, 1, 52, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-52-18-01', 1, 1, 1, 1, 52, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-52-19-01', 1, 1, 1, 1, 52, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-52-20-01', 1, 1, 1, 1, 52, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-52-21-01', 1, 1, 1, 1, 52, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-52-22-01', 1, 1, 1, 1, 52, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-53-01-01', 1, 1, 1, 1, 53, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-53-02-01', 1, 1, 1, 1, 53, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-53-03-01', 1, 1, 1, 1, 53, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-53-04-01', 1, 1, 1, 1, 53, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-53-05-01', 1, 1, 1, 1, 53, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-53-06-01', 1, 1, 1, 1, 53, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-53-07-01', 1, 1, 1, 1, 53, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-53-08-01', 1, 1, 1, 1, 53, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-53-09-01', 1, 1, 1, 1, 53, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-53-10-01', 1, 1, 1, 1, 53, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-53-11-01', 1, 1, 1, 1, 53, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-53-12-01', 1, 1, 1, 1, 53, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-53-13-01', 1, 1, 1, 1, 53, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-53-14-01', 1, 1, 1, 1, 53, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-53-15-01', 1, 1, 1, 1, 53, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-53-16-01', 1, 1, 1, 1, 53, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-53-17-01', 1, 1, 1, 1, 53, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-53-18-01', 1, 1, 1, 1, 53, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-53-19-01', 1, 1, 1, 1, 53, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-53-20-01', 1, 1, 1, 1, 53, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-53-21-01', 1, 1, 1, 1, 53, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-53-22-01', 1, 1, 1, 1, 53, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-54-01-01', 1, 1, 1, 1, 54, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-54-02-01', 1, 1, 1, 1, 54, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-54-03-01', 1, 1, 1, 1, 54, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-54-04-01', 1, 1, 1, 1, 54, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-54-05-01', 1, 1, 1, 1, 54, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-54-06-01', 1, 1, 1, 1, 54, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-54-07-01', 1, 1, 1, 1, 54, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-54-08-01', 1, 1, 1, 1, 54, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-54-09-01', 1, 1, 1, 1, 54, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-54-10-01', 1, 1, 1, 1, 54, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-54-11-01', 1, 1, 1, 1, 54, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-54-12-01', 1, 1, 1, 1, 54, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-54-13-01', 1, 1, 1, 1, 54, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-54-14-01', 1, 1, 1, 1, 54, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-54-15-01', 1, 1, 1, 1, 54, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-54-16-01', 1, 1, 1, 1, 54, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-54-17-01', 1, 1, 1, 1, 54, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-54-18-01', 1, 1, 1, 1, 54, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-54-19-01', 1, 1, 1, 1, 54, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-54-20-01', 1, 1, 1, 1, 54, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-54-21-01', 1, 1, 1, 1, 54, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-54-22-01', 1, 1, 1, 1, 54, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-55-01-01', 1, 1, 1, 1, 55, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-55-02-01', 1, 1, 1, 1, 55, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-55-03-01', 1, 1, 1, 1, 55, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-55-04-01', 1, 1, 1, 1, 55, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-55-05-01', 1, 1, 1, 1, 55, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-55-06-01', 1, 1, 1, 1, 55, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-55-07-01', 1, 1, 1, 1, 55, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-55-08-01', 1, 1, 1, 1, 55, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-55-09-01', 1, 1, 1, 1, 55, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-55-10-01', 1, 1, 1, 1, 55, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-55-11-01', 1, 1, 1, 1, 55, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-55-12-01', 1, 1, 1, 1, 55, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-55-13-01', 1, 1, 1, 1, 55, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-55-14-01', 1, 1, 1, 1, 55, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-55-15-01', 1, 1, 1, 1, 55, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-55-16-01', 1, 1, 1, 1, 55, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-55-17-01', 1, 1, 1, 1, 55, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-55-18-01', 1, 1, 1, 1, 55, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-55-19-01', 1, 1, 1, 1, 55, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-55-20-01', 1, 1, 1, 1, 55, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-55-21-01', 1, 1, 1, 1, 55, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-55-22-01', 1, 1, 1, 1, 55, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-56-01-01', 1, 1, 1, 1, 56, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-56-02-01', 1, 1, 1, 1, 56, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-56-03-01', 1, 1, 1, 1, 56, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-56-04-01', 1, 1, 1, 1, 56, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-56-05-01', 1, 1, 1, 1, 56, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-56-06-01', 1, 1, 1, 1, 56, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-56-07-01', 1, 1, 1, 1, 56, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-56-08-01', 1, 1, 1, 1, 56, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-56-09-01', 1, 1, 1, 1, 56, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-56-10-01', 1, 1, 1, 1, 56, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-56-11-01', 1, 1, 1, 1, 56, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-56-12-01', 1, 1, 1, 1, 56, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-56-13-01', 1, 1, 1, 1, 56, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-56-14-01', 1, 1, 1, 1, 56, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-56-15-01', 1, 1, 1, 1, 56, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-56-16-01', 1, 1, 1, 1, 56, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-56-17-01', 1, 1, 1, 1, 56, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-56-18-01', 1, 1, 1, 1, 56, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-56-19-01', 1, 1, 1, 1, 56, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-56-20-01', 1, 1, 1, 1, 56, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-56-21-01', 1, 1, 1, 1, 56, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-56-22-01', 1, 1, 1, 1, 56, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-57-01-01', 1, 1, 1, 1, 57, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-57-02-01', 1, 1, 1, 1, 57, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-57-03-01', 1, 1, 1, 1, 57, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-57-04-01', 1, 1, 1, 1, 57, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-57-05-01', 1, 1, 1, 1, 57, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-57-06-01', 1, 1, 1, 1, 57, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-57-07-01', 1, 1, 1, 1, 57, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-57-08-01', 1, 1, 1, 1, 57, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-57-09-01', 1, 1, 1, 1, 57, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-57-10-01', 1, 1, 1, 1, 57, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-57-11-01', 1, 1, 1, 1, 57, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-57-12-01', 1, 1, 1, 1, 57, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-57-13-01', 1, 1, 1, 1, 57, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-57-14-01', 1, 1, 1, 1, 57, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-57-15-01', 1, 1, 1, 1, 57, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-57-16-01', 1, 1, 1, 1, 57, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-57-17-01', 1, 1, 1, 1, 57, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-57-18-01', 1, 1, 1, 1, 57, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-57-19-01', 1, 1, 1, 1, 57, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-57-20-01', 1, 1, 1, 1, 57, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-57-21-01', 1, 1, 1, 1, 57, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-57-22-01', 1, 1, 1, 1, 57, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-58-01-01', 1, 1, 1, 1, 58, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-58-02-01', 1, 1, 1, 1, 58, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-58-03-01', 1, 1, 1, 1, 58, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-58-04-01', 1, 1, 1, 1, 58, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-58-05-01', 1, 1, 1, 1, 58, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-58-06-01', 1, 1, 1, 1, 58, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-58-07-01', 1, 1, 1, 1, 58, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-58-08-01', 1, 1, 1, 1, 58, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-58-09-01', 1, 1, 1, 1, 58, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-58-10-01', 1, 1, 1, 1, 58, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-58-11-01', 1, 1, 1, 1, 58, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-58-12-01', 1, 1, 1, 1, 58, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-58-13-01', 1, 1, 1, 1, 58, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-58-14-01', 1, 1, 1, 1, 58, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-58-15-01', 1, 1, 1, 1, 58, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-58-16-01', 1, 1, 1, 1, 58, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-58-17-01', 1, 1, 1, 1, 58, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-58-18-01', 1, 1, 1, 1, 58, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-58-19-01', 1, 1, 1, 1, 58, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-58-20-01', 1, 1, 1, 1, 58, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-58-21-01', 1, 1, 1, 1, 58, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-58-22-01', 1, 1, 1, 1, 58, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-59-01-01', 1, 1, 1, 1, 59, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-59-02-01', 1, 1, 1, 1, 59, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-59-03-01', 1, 1, 1, 1, 59, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-59-04-01', 1, 1, 1, 1, 59, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-59-05-01', 1, 1, 1, 1, 59, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-59-06-01', 1, 1, 1, 1, 59, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-59-07-01', 1, 1, 1, 1, 59, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-59-08-01', 1, 1, 1, 1, 59, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-59-09-01', 1, 1, 1, 1, 59, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-59-10-01', 1, 1, 1, 1, 59, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-59-11-01', 1, 1, 1, 1, 59, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-59-12-01', 1, 1, 1, 1, 59, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-59-13-01', 1, 1, 1, 1, 59, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-59-14-01', 1, 1, 1, 1, 59, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-59-15-01', 1, 1, 1, 1, 59, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-59-16-01', 1, 1, 1, 1, 59, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-59-17-01', 1, 1, 1, 1, 59, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-59-18-01', 1, 1, 1, 1, 59, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-59-19-01', 1, 1, 1, 1, 59, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-59-20-01', 1, 1, 1, 1, 59, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-59-21-01', 1, 1, 1, 1, 59, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-59-22-01', 1, 1, 1, 1, 59, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-60-01-01', 1, 1, 1, 1, 60, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-60-02-01', 1, 1, 1, 1, 60, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-60-03-01', 1, 1, 1, 1, 60, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-60-04-01', 1, 1, 1, 1, 60, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-60-05-01', 1, 1, 1, 1, 60, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-60-06-01', 1, 1, 1, 1, 60, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-60-07-01', 1, 1, 1, 1, 60, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-60-08-01', 1, 1, 1, 1, 60, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-60-09-01', 1, 1, 1, 1, 60, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-60-10-01', 1, 1, 1, 1, 60, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-60-11-01', 1, 1, 1, 1, 60, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-60-12-01', 1, 1, 1, 1, 60, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-60-13-01', 1, 1, 1, 1, 60, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-60-14-01', 1, 1, 1, 1, 60, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-60-15-01', 1, 1, 1, 1, 60, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-60-16-01', 1, 1, 1, 1, 60, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-60-17-01', 1, 1, 1, 1, 60, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-60-18-01', 1, 1, 1, 1, 60, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-60-19-01', 1, 1, 1, 1, 60, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-60-20-01', 1, 1, 1, 1, 60, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-60-21-01', 1, 1, 1, 1, 60, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-60-22-01', 1, 1, 1, 1, 60, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-61-01-01', 1, 1, 1, 1, 61, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-61-02-01', 1, 1, 1, 1, 61, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-61-03-01', 1, 1, 1, 1, 61, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-61-04-01', 1, 1, 1, 1, 61, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-61-05-01', 1, 1, 1, 1, 61, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-61-06-01', 1, 1, 1, 1, 61, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-61-07-01', 1, 1, 1, 1, 61, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-61-08-01', 1, 1, 1, 1, 61, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-61-09-01', 1, 1, 1, 1, 61, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-61-10-01', 1, 1, 1, 1, 61, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-61-11-01', 1, 1, 1, 1, 61, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-61-12-01', 1, 1, 1, 1, 61, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-61-13-01', 1, 1, 1, 1, 61, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-61-14-01', 1, 1, 1, 1, 61, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-61-15-01', 1, 1, 1, 1, 61, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-61-16-01', 1, 1, 1, 1, 61, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-61-17-01', 1, 1, 1, 1, 61, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-61-18-01', 1, 1, 1, 1, 61, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-61-19-01', 1, 1, 1, 1, 61, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-61-20-01', 1, 1, 1, 1, 61, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-61-21-01', 1, 1, 1, 1, 61, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-61-22-01', 1, 1, 1, 1, 61, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-62-01-01', 1, 1, 1, 1, 62, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-62-02-01', 1, 1, 1, 1, 62, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-62-03-01', 1, 1, 1, 1, 62, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-62-04-01', 1, 1, 1, 1, 62, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-62-05-01', 1, 1, 1, 1, 62, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-62-06-01', 1, 1, 1, 1, 62, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-62-07-01', 1, 1, 1, 1, 62, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-62-08-01', 1, 1, 1, 1, 62, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-62-09-01', 1, 1, 1, 1, 62, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-62-10-01', 1, 1, 1, 1, 62, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-62-11-01', 1, 1, 1, 1, 62, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-62-12-01', 1, 1, 1, 1, 62, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-62-13-01', 1, 1, 1, 1, 62, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-62-14-01', 1, 1, 1, 1, 62, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-62-15-01', 1, 1, 1, 1, 62, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-62-16-01', 1, 1, 1, 1, 62, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-62-17-01', 1, 1, 1, 1, 62, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-62-18-01', 1, 1, 1, 1, 62, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-62-19-01', 1, 1, 1, 1, 62, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-62-20-01', 1, 1, 1, 1, 62, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-62-21-01', 1, 1, 1, 1, 62, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-62-22-01', 1, 1, 1, 1, 62, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-63-01-01', 1, 1, 1, 1, 63, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-63-02-01', 1, 1, 1, 1, 63, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-63-03-01', 1, 1, 1, 1, 63, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-63-04-01', 1, 1, 1, 1, 63, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-63-05-01', 1, 1, 1, 1, 63, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-63-06-01', 1, 1, 1, 1, 63, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-63-07-01', 1, 1, 1, 1, 63, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-63-08-01', 1, 1, 1, 1, 63, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-63-09-01', 1, 1, 1, 1, 63, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-63-10-01', 1, 1, 1, 1, 63, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-63-11-01', 1, 1, 1, 1, 63, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-63-12-01', 1, 1, 1, 1, 63, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-63-13-01', 1, 1, 1, 1, 63, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-63-14-01', 1, 1, 1, 1, 63, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-63-15-01', 1, 1, 1, 1, 63, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-63-16-01', 1, 1, 1, 1, 63, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-63-17-01', 1, 1, 1, 1, 63, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-63-18-01', 1, 1, 1, 1, 63, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-63-19-01', 1, 1, 1, 1, 63, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-63-20-01', 1, 1, 1, 1, 63, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-63-21-01', 1, 1, 1, 1, 63, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-63-22-01', 1, 1, 1, 1, 63, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-64-01-01', 1, 1, 1, 1, 64, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-64-02-01', 1, 1, 1, 1, 64, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-64-03-01', 1, 1, 1, 1, 64, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-64-04-01', 1, 1, 1, 1, 64, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-64-05-01', 1, 1, 1, 1, 64, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-64-06-01', 1, 1, 1, 1, 64, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-64-07-01', 1, 1, 1, 1, 64, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-64-08-01', 1, 1, 1, 1, 64, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-64-09-01', 1, 1, 1, 1, 64, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-64-10-01', 1, 1, 1, 1, 64, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-64-11-01', 1, 1, 1, 1, 64, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-64-12-01', 1, 1, 1, 1, 64, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-64-13-01', 1, 1, 1, 1, 64, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-64-14-01', 1, 1, 1, 1, 64, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-64-15-01', 1, 1, 1, 1, 64, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-64-16-01', 1, 1, 1, 1, 64, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-64-17-01', 1, 1, 1, 1, 64, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-64-18-01', 1, 1, 1, 1, 64, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-64-19-01', 1, 1, 1, 1, 64, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-64-20-01', 1, 1, 1, 1, 64, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-64-21-01', 1, 1, 1, 1, 64, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('01-64-22-01', 1, 1, 1, 1, 64, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-01-01-01', 1, 1, 1, 2, 1, 1, 1, 0, 1, 'ASRS000184'); +INSERT INTO `tbl_app_location` VALUES ('02-01-02-01', 1, 2, 1, 2, 1, 2, 1, 0, 1, 'ASRS000006'); +INSERT INTO `tbl_app_location` VALUES ('02-01-03-01', 1, 1, 1, 2, 1, 3, 1, 0, 1, 'ASRS000138'); +INSERT INTO `tbl_app_location` VALUES ('02-01-04-01', 1, 2, 1, 2, 1, 4, 1, 0, 1, 'ASRS000033'); +INSERT INTO `tbl_app_location` VALUES ('02-01-05-01', 1, 1, 1, 2, 1, 5, 1, 0, 1, 'ASRS000062'); +INSERT INTO `tbl_app_location` VALUES ('02-01-06-01', 1, 2, 1, 2, 1, 6, 1, 0, 1, 'ASRS000015'); +INSERT INTO `tbl_app_location` VALUES ('02-01-07-01', 1, 1, 1, 2, 1, 7, 1, 0, 1, 'ASRS000074'); +INSERT INTO `tbl_app_location` VALUES ('02-01-08-01', 1, 2, 1, 2, 1, 8, 1, 0, 1, 'ASRS000091'); +INSERT INTO `tbl_app_location` VALUES ('02-01-09-01', 1, 1, 1, 2, 1, 9, 1, 0, 1, 'ASRS000118'); +INSERT INTO `tbl_app_location` VALUES ('02-01-10-01', 1, 2, 1, 2, 1, 10, 1, 0, 1, 'ASRS000079'); +INSERT INTO `tbl_app_location` VALUES ('02-01-11-01', 1, 1, 1, 2, 1, 11, 1, 0, 1, 'ASRS000067'); +INSERT INTO `tbl_app_location` VALUES ('02-01-12-01', 1, 2, 1, 2, 1, 12, 1, 0, 0, 'ASRS000028'); +INSERT INTO `tbl_app_location` VALUES ('02-01-13-01', 1, 1, 1, 2, 1, 13, 1, 0, 1, 'ASRS000027'); +INSERT INTO `tbl_app_location` VALUES ('02-01-14-01', 1, 2, 1, 2, 1, 14, 1, 0, 0, 'ASRS000054'); +INSERT INTO `tbl_app_location` VALUES ('02-01-15-01', 1, 1, 1, 2, 1, 15, 1, 0, 1, 'ASRS000081'); +INSERT INTO `tbl_app_location` VALUES ('02-01-16-01', 1, 2, 1, 2, 1, 16, 1, 0, 0, 'ASRS000102'); +INSERT INTO `tbl_app_location` VALUES ('02-01-17-01', 1, 1, 1, 2, 1, 17, 1, 0, 0, 'ASRS000101'); +INSERT INTO `tbl_app_location` VALUES ('02-01-18-01', 1, 2, 1, 2, 1, 18, 1, 0, 1, 'ASRS000192'); +INSERT INTO `tbl_app_location` VALUES ('02-01-19-01', 1, 1, 1, 2, 1, 19, 1, 0, 1, 'ASRS000190'); +INSERT INTO `tbl_app_location` VALUES ('02-01-20-01', 1, 2, 1, 2, 1, 20, 1, 0, 1, 'ASRS000156'); +INSERT INTO `tbl_app_location` VALUES ('02-01-21-01', 1, 1, 1, 2, 1, 21, 1, 0, 1, 'ASRS000157'); +INSERT INTO `tbl_app_location` VALUES ('02-01-22-01', 1, 2, 1, 2, 1, 22, 1, 0, 1, 'ASRS000141'); +INSERT INTO `tbl_app_location` VALUES ('02-02-01-01', 1, 1, 1, 2, 2, 1, 1, 0, 1, 'ASRS000181'); +INSERT INTO `tbl_app_location` VALUES ('02-02-02-01', 1, 2, 1, 2, 2, 2, 1, 0, 1, 'ASRS000095'); +INSERT INTO `tbl_app_location` VALUES ('02-02-03-01', 1, 1, 1, 2, 2, 3, 1, 0, 1, 'ASRS000147'); +INSERT INTO `tbl_app_location` VALUES ('02-02-04-01', 1, 2, 1, 2, 2, 4, 1, 0, 1, 'ASRS000094'); +INSERT INTO `tbl_app_location` VALUES ('02-02-05-01', 1, 1, 1, 2, 2, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-02-06-01', 1, 2, 1, 2, 2, 6, 1, 0, 1, 'ASRS000029'); +INSERT INTO `tbl_app_location` VALUES ('02-02-07-01', 1, 1, 1, 2, 2, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-02-08-01', 1, 2, 1, 2, 2, 8, 1, 0, 1, 'ASRS000048'); +INSERT INTO `tbl_app_location` VALUES ('02-02-09-01', 1, 1, 1, 2, 2, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-02-10-01', 1, 2, 1, 2, 2, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-02-11-01', 1, 1, 1, 2, 2, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-02-12-01', 1, 2, 1, 2, 2, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-02-13-01', 1, 1, 1, 2, 2, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-02-14-01', 1, 2, 1, 2, 2, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-02-15-01', 1, 1, 1, 2, 2, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-02-16-01', 1, 2, 1, 2, 2, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-02-17-01', 1, 1, 1, 2, 2, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-02-18-01', 1, 2, 1, 2, 2, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-02-19-01', 1, 1, 1, 2, 2, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-02-20-01', 1, 2, 1, 2, 2, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-02-21-01', 1, 1, 1, 2, 2, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-02-22-01', 1, 2, 1, 2, 2, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-03-01-01', 1, 1, 1, 2, 3, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-03-02-01', 1, 2, 1, 2, 3, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-03-03-01', 1, 1, 1, 2, 3, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-03-04-01', 1, 2, 1, 2, 3, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-03-05-01', 1, 1, 1, 2, 3, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-03-06-01', 1, 2, 1, 2, 3, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-03-07-01', 1, 1, 1, 2, 3, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-03-08-01', 1, 2, 1, 2, 3, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-03-09-01', 1, 1, 1, 2, 3, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-03-10-01', 1, 2, 1, 2, 3, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-03-11-01', 1, 1, 1, 2, 3, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-03-12-01', 1, 2, 1, 2, 3, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-03-13-01', 1, 1, 1, 2, 3, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-03-14-01', 1, 2, 1, 2, 3, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-03-15-01', 1, 1, 1, 2, 3, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-03-16-01', 1, 2, 1, 2, 3, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-03-17-01', 1, 1, 1, 2, 3, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-03-18-01', 1, 2, 1, 2, 3, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-03-19-01', 1, 1, 1, 2, 3, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-03-20-01', 1, 2, 1, 2, 3, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-03-21-01', 1, 1, 1, 2, 3, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-03-22-01', 1, 2, 1, 2, 3, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-04-01-01', 1, 1, 1, 2, 4, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-04-02-01', 1, 2, 1, 2, 4, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-04-03-01', 1, 1, 1, 2, 4, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-04-04-01', 1, 2, 1, 2, 4, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-04-05-01', 1, 1, 1, 2, 4, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-04-06-01', 1, 2, 1, 2, 4, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-04-07-01', 1, 1, 1, 2, 4, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-04-08-01', 1, 2, 1, 2, 4, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-04-09-01', 1, 1, 1, 2, 4, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-04-10-01', 1, 2, 1, 2, 4, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-04-11-01', 1, 1, 1, 2, 4, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-04-12-01', 1, 2, 1, 2, 4, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-04-13-01', 1, 1, 1, 2, 4, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-04-14-01', 1, 2, 1, 2, 4, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-04-15-01', 1, 1, 1, 2, 4, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-04-16-01', 1, 2, 1, 2, 4, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-04-17-01', 1, 1, 1, 2, 4, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-04-18-01', 1, 2, 1, 2, 4, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-04-19-01', 1, 1, 1, 2, 4, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-04-20-01', 1, 2, 1, 2, 4, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-04-21-01', 1, 1, 1, 2, 4, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-04-22-01', 1, 2, 1, 2, 4, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-05-01-01', 1, 1, 1, 2, 5, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-05-02-01', 1, 2, 1, 2, 5, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-05-03-01', 1, 1, 1, 2, 5, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-05-04-01', 1, 2, 1, 2, 5, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-05-05-01', 1, 1, 1, 2, 5, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-05-06-01', 1, 2, 1, 2, 5, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-05-07-01', 1, 1, 1, 2, 5, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-05-08-01', 1, 2, 1, 2, 5, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-05-09-01', 1, 1, 1, 2, 5, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-05-10-01', 1, 2, 1, 2, 5, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-05-11-01', 1, 1, 1, 2, 5, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-05-12-01', 1, 2, 1, 2, 5, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-05-13-01', 1, 1, 1, 2, 5, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-05-14-01', 1, 2, 1, 2, 5, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-05-15-01', 1, 1, 1, 2, 5, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-05-16-01', 1, 2, 1, 2, 5, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-05-17-01', 1, 1, 1, 2, 5, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-05-18-01', 1, 2, 1, 2, 5, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-05-19-01', 1, 1, 1, 2, 5, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-05-20-01', 1, 2, 1, 2, 5, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-05-21-01', 1, 1, 1, 2, 5, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-05-22-01', 1, 2, 1, 2, 5, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-06-01-01', 1, 1, 1, 2, 6, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-06-02-01', 1, 2, 1, 2, 6, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-06-03-01', 1, 1, 1, 2, 6, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-06-04-01', 1, 2, 1, 2, 6, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-06-05-01', 1, 1, 1, 2, 6, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-06-06-01', 1, 2, 1, 2, 6, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-06-07-01', 1, 1, 1, 2, 6, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-06-08-01', 1, 2, 1, 2, 6, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-06-09-01', 1, 1, 1, 2, 6, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-06-10-01', 1, 2, 1, 2, 6, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-06-11-01', 1, 1, 1, 2, 6, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-06-12-01', 1, 2, 1, 2, 6, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-06-13-01', 1, 1, 1, 2, 6, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-06-14-01', 1, 2, 1, 2, 6, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-06-15-01', 1, 1, 1, 2, 6, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-06-16-01', 1, 2, 1, 2, 6, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-06-17-01', 1, 1, 1, 2, 6, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-06-18-01', 1, 2, 1, 2, 6, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-06-19-01', 1, 1, 1, 2, 6, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-06-20-01', 1, 2, 1, 2, 6, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-06-21-01', 1, 1, 1, 2, 6, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-06-22-01', 1, 2, 1, 2, 6, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-07-01-01', 1, 1, 1, 2, 7, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-07-02-01', 1, 2, 1, 2, 7, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-07-03-01', 1, 1, 1, 2, 7, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-07-04-01', 1, 2, 1, 2, 7, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-07-05-01', 1, 1, 1, 2, 7, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-07-06-01', 1, 2, 1, 2, 7, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-07-07-01', 1, 1, 1, 2, 7, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-07-08-01', 1, 2, 1, 2, 7, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-07-09-01', 1, 1, 1, 2, 7, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-07-10-01', 1, 2, 1, 2, 7, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-07-11-01', 1, 1, 1, 2, 7, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-07-12-01', 1, 2, 1, 2, 7, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-07-13-01', 1, 1, 1, 2, 7, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-07-14-01', 1, 2, 1, 2, 7, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-07-15-01', 1, 1, 1, 2, 7, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-07-16-01', 1, 2, 1, 2, 7, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-07-17-01', 1, 1, 1, 2, 7, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-07-18-01', 1, 2, 1, 2, 7, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-07-19-01', 1, 1, 1, 2, 7, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-07-20-01', 1, 2, 1, 2, 7, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-07-21-01', 1, 1, 1, 2, 7, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-07-22-01', 1, 2, 1, 2, 7, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-08-01-01', 1, 1, 1, 2, 8, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-08-02-01', 1, 2, 1, 2, 8, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-08-03-01', 1, 1, 1, 2, 8, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-08-04-01', 1, 2, 1, 2, 8, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-08-05-01', 1, 1, 1, 2, 8, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-08-06-01', 1, 2, 1, 2, 8, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-08-07-01', 1, 1, 1, 2, 8, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-08-08-01', 1, 2, 1, 2, 8, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-08-09-01', 1, 1, 1, 2, 8, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-08-10-01', 1, 2, 1, 2, 8, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-08-11-01', 1, 1, 1, 2, 8, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-08-12-01', 1, 2, 1, 2, 8, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-08-13-01', 1, 1, 1, 2, 8, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-08-14-01', 1, 2, 1, 2, 8, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-08-15-01', 1, 1, 1, 2, 8, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-08-16-01', 1, 2, 1, 2, 8, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-08-17-01', 1, 1, 1, 2, 8, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-08-18-01', 1, 2, 1, 2, 8, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-08-19-01', 1, 1, 1, 2, 8, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-08-20-01', 1, 2, 1, 2, 8, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-08-21-01', 1, 1, 1, 2, 8, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-08-22-01', 1, 2, 1, 2, 8, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-09-01-01', 1, 1, 1, 2, 9, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-09-02-01', 1, 2, 1, 2, 9, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-09-03-01', 1, 1, 1, 2, 9, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-09-04-01', 1, 2, 1, 2, 9, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-09-05-01', 1, 1, 1, 2, 9, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-09-06-01', 1, 2, 1, 2, 9, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-09-07-01', 1, 1, 1, 2, 9, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-09-08-01', 1, 2, 1, 2, 9, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-09-09-01', 1, 1, 1, 2, 9, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-09-10-01', 1, 2, 1, 2, 9, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-09-11-01', 1, 1, 1, 2, 9, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-09-12-01', 1, 2, 1, 2, 9, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-09-13-01', 1, 1, 1, 2, 9, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-09-14-01', 1, 2, 1, 2, 9, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-09-15-01', 1, 1, 1, 2, 9, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-09-16-01', 1, 2, 1, 2, 9, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-09-17-01', 1, 1, 1, 2, 9, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-09-18-01', 1, 2, 1, 2, 9, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-09-19-01', 1, 1, 1, 2, 9, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-09-20-01', 1, 2, 1, 2, 9, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-09-21-01', 1, 1, 1, 2, 9, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-09-22-01', 1, 2, 1, 2, 9, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-10-01-01', 1, 1, 1, 2, 10, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-10-02-01', 1, 2, 1, 2, 10, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-10-03-01', 1, 1, 1, 2, 10, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-10-04-01', 1, 2, 1, 2, 10, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-10-05-01', 1, 1, 1, 2, 10, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-10-06-01', 1, 2, 1, 2, 10, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-10-07-01', 1, 1, 1, 2, 10, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-10-08-01', 1, 2, 1, 2, 10, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-10-09-01', 1, 1, 1, 2, 10, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-10-10-01', 1, 2, 1, 2, 10, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-10-11-01', 1, 1, 1, 2, 10, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-10-12-01', 1, 2, 1, 2, 10, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-10-13-01', 1, 1, 1, 2, 10, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-10-14-01', 1, 2, 1, 2, 10, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-10-15-01', 1, 1, 1, 2, 10, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-10-16-01', 1, 2, 1, 2, 10, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-10-17-01', 1, 1, 1, 2, 10, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-10-18-01', 1, 2, 1, 2, 10, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-10-19-01', 1, 1, 1, 2, 10, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-10-20-01', 1, 2, 1, 2, 10, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-10-21-01', 1, 1, 1, 2, 10, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-10-22-01', 1, 2, 1, 2, 10, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-11-01-01', 1, 1, 1, 2, 11, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-11-02-01', 1, 2, 1, 2, 11, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-11-03-01', 1, 1, 1, 2, 11, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-11-04-01', 1, 2, 1, 2, 11, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-11-05-01', 1, 1, 1, 2, 11, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-11-06-01', 1, 2, 1, 2, 11, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-11-07-01', 1, 1, 1, 2, 11, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-11-08-01', 1, 2, 1, 2, 11, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-11-09-01', 1, 1, 1, 2, 11, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-11-10-01', 1, 2, 1, 2, 11, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-11-11-01', 1, 1, 1, 2, 11, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-11-12-01', 1, 2, 1, 2, 11, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-11-13-01', 1, 1, 1, 2, 11, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-11-14-01', 1, 2, 1, 2, 11, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-11-15-01', 1, 1, 1, 2, 11, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-11-16-01', 1, 2, 1, 2, 11, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-11-17-01', 1, 1, 1, 2, 11, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-11-18-01', 1, 2, 1, 2, 11, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-11-19-01', 1, 1, 1, 2, 11, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-11-20-01', 1, 2, 1, 2, 11, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-11-21-01', 1, 1, 1, 2, 11, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-11-22-01', 1, 2, 1, 2, 11, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-12-01-01', 1, 1, 1, 2, 12, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-12-02-01', 1, 2, 1, 2, 12, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-12-03-01', 1, 1, 1, 2, 12, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-12-04-01', 1, 2, 1, 2, 12, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-12-05-01', 1, 1, 1, 2, 12, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-12-06-01', 1, 2, 1, 2, 12, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-12-07-01', 1, 1, 1, 2, 12, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-12-08-01', 1, 2, 1, 2, 12, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-12-09-01', 1, 1, 1, 2, 12, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-12-10-01', 1, 2, 1, 2, 12, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-12-11-01', 1, 1, 1, 2, 12, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-12-12-01', 1, 2, 1, 2, 12, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-12-13-01', 1, 1, 1, 2, 12, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-12-14-01', 1, 2, 1, 2, 12, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-12-15-01', 1, 1, 1, 2, 12, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-12-16-01', 1, 2, 1, 2, 12, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-12-17-01', 1, 1, 1, 2, 12, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-12-18-01', 1, 2, 1, 2, 12, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-12-19-01', 1, 1, 1, 2, 12, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-12-20-01', 1, 2, 1, 2, 12, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-12-21-01', 1, 1, 1, 2, 12, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-12-22-01', 1, 2, 1, 2, 12, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-13-01-01', 1, 1, 1, 2, 13, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-13-02-01', 1, 2, 1, 2, 13, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-13-03-01', 1, 1, 1, 2, 13, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-13-04-01', 1, 2, 1, 2, 13, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-13-05-01', 1, 1, 1, 2, 13, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-13-06-01', 1, 2, 1, 2, 13, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-13-07-01', 1, 1, 1, 2, 13, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-13-08-01', 1, 2, 1, 2, 13, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-13-09-01', 1, 1, 1, 2, 13, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-13-10-01', 1, 2, 1, 2, 13, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-13-11-01', 1, 1, 1, 2, 13, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-13-12-01', 1, 2, 1, 2, 13, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-13-13-01', 1, 1, 1, 2, 13, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-13-14-01', 1, 2, 1, 2, 13, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-13-15-01', 1, 1, 1, 2, 13, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-13-16-01', 1, 2, 1, 2, 13, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-13-17-01', 1, 1, 1, 2, 13, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-13-18-01', 1, 2, 1, 2, 13, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-13-19-01', 1, 1, 1, 2, 13, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-13-20-01', 1, 2, 1, 2, 13, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-13-21-01', 1, 1, 1, 2, 13, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-13-22-01', 1, 2, 1, 2, 13, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-14-01-01', 1, 1, 1, 2, 14, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-14-02-01', 1, 2, 1, 2, 14, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-14-03-01', 1, 1, 1, 2, 14, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-14-04-01', 1, 2, 1, 2, 14, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-14-05-01', 1, 1, 1, 2, 14, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-14-06-01', 1, 2, 1, 2, 14, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-14-07-01', 1, 1, 1, 2, 14, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-14-08-01', 1, 2, 1, 2, 14, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-14-09-01', 1, 1, 1, 2, 14, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-14-10-01', 1, 2, 1, 2, 14, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-14-11-01', 1, 1, 1, 2, 14, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-14-12-01', 1, 2, 1, 2, 14, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-14-13-01', 1, 1, 1, 2, 14, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-14-14-01', 1, 2, 1, 2, 14, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-14-15-01', 1, 1, 1, 2, 14, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-14-16-01', 1, 2, 1, 2, 14, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-14-17-01', 1, 1, 1, 2, 14, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-14-18-01', 1, 2, 1, 2, 14, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-14-19-01', 1, 1, 1, 2, 14, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-14-20-01', 1, 2, 1, 2, 14, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-14-21-01', 1, 1, 1, 2, 14, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-14-22-01', 1, 2, 1, 2, 14, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-15-01-01', 1, 1, 1, 2, 15, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-15-02-01', 1, 2, 1, 2, 15, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-15-03-01', 1, 1, 1, 2, 15, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-15-04-01', 1, 2, 1, 2, 15, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-15-05-01', 1, 1, 1, 2, 15, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-15-06-01', 1, 2, 1, 2, 15, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-15-07-01', 1, 1, 1, 2, 15, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-15-08-01', 1, 2, 1, 2, 15, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-15-09-01', 1, 1, 1, 2, 15, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-15-10-01', 1, 2, 1, 2, 15, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-15-11-01', 1, 1, 1, 2, 15, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-15-12-01', 1, 2, 1, 2, 15, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-15-13-01', 1, 1, 1, 2, 15, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-15-14-01', 1, 2, 1, 2, 15, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-15-15-01', 1, 1, 1, 2, 15, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-15-16-01', 1, 2, 1, 2, 15, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-15-17-01', 1, 1, 1, 2, 15, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-15-18-01', 1, 2, 1, 2, 15, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-15-19-01', 1, 1, 1, 2, 15, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-15-20-01', 1, 2, 1, 2, 15, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-15-21-01', 1, 1, 1, 2, 15, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-15-22-01', 1, 2, 1, 2, 15, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-16-01-01', 1, 1, 1, 2, 16, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-16-02-01', 1, 2, 1, 2, 16, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-16-03-01', 1, 1, 1, 2, 16, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-16-04-01', 1, 2, 1, 2, 16, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-16-05-01', 1, 1, 1, 2, 16, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-16-06-01', 1, 2, 1, 2, 16, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-16-07-01', 1, 1, 1, 2, 16, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-16-08-01', 1, 2, 1, 2, 16, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-16-09-01', 1, 1, 1, 2, 16, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-16-10-01', 1, 2, 1, 2, 16, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-16-11-01', 1, 1, 1, 2, 16, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-16-12-01', 1, 2, 1, 2, 16, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-16-13-01', 1, 1, 1, 2, 16, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-16-14-01', 1, 2, 1, 2, 16, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-16-15-01', 1, 1, 1, 2, 16, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-16-16-01', 1, 2, 1, 2, 16, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-16-17-01', 1, 1, 1, 2, 16, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-16-18-01', 1, 2, 1, 2, 16, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-16-19-01', 1, 1, 1, 2, 16, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-16-20-01', 1, 2, 1, 2, 16, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-16-21-01', 1, 1, 1, 2, 16, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-16-22-01', 1, 2, 1, 2, 16, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-17-01-01', 1, 1, 1, 2, 17, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-17-02-01', 1, 2, 1, 2, 17, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-17-03-01', 1, 1, 1, 2, 17, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-17-04-01', 1, 2, 1, 2, 17, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-17-05-01', 1, 1, 1, 2, 17, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-17-06-01', 1, 2, 1, 2, 17, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-17-07-01', 1, 1, 1, 2, 17, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-17-08-01', 1, 2, 1, 2, 17, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-17-09-01', 1, 1, 1, 2, 17, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-17-10-01', 1, 2, 1, 2, 17, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-17-11-01', 1, 1, 1, 2, 17, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-17-12-01', 1, 2, 1, 2, 17, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-17-13-01', 1, 1, 1, 2, 17, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-17-14-01', 1, 2, 1, 2, 17, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-17-15-01', 1, 1, 1, 2, 17, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-17-16-01', 1, 2, 1, 2, 17, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-17-17-01', 1, 1, 1, 2, 17, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-17-18-01', 1, 2, 1, 2, 17, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-17-19-01', 1, 1, 1, 2, 17, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-17-20-01', 1, 2, 1, 2, 17, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-17-21-01', 1, 1, 1, 2, 17, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-17-22-01', 1, 2, 1, 2, 17, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-18-01-01', 1, 1, 1, 2, 18, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-18-02-01', 1, 2, 1, 2, 18, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-18-03-01', 1, 1, 1, 2, 18, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-18-04-01', 1, 2, 1, 2, 18, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-18-05-01', 1, 1, 1, 2, 18, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-18-06-01', 1, 2, 1, 2, 18, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-18-07-01', 1, 1, 1, 2, 18, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-18-08-01', 1, 2, 1, 2, 18, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-18-09-01', 1, 1, 1, 2, 18, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-18-10-01', 1, 2, 1, 2, 18, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-18-11-01', 1, 1, 1, 2, 18, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-18-12-01', 1, 2, 1, 2, 18, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-18-13-01', 1, 1, 1, 2, 18, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-18-14-01', 1, 2, 1, 2, 18, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-18-15-01', 1, 1, 1, 2, 18, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-18-16-01', 1, 2, 1, 2, 18, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-18-17-01', 1, 1, 1, 2, 18, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-18-18-01', 1, 2, 1, 2, 18, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-18-19-01', 1, 1, 1, 2, 18, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-18-20-01', 1, 2, 1, 2, 18, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-18-21-01', 1, 1, 1, 2, 18, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-18-22-01', 1, 2, 1, 2, 18, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-19-01-01', 1, 1, 1, 2, 19, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-19-02-01', 1, 2, 1, 2, 19, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-19-03-01', 1, 1, 1, 2, 19, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-19-04-01', 1, 2, 1, 2, 19, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-19-05-01', 1, 1, 1, 2, 19, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-19-06-01', 1, 2, 1, 2, 19, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-19-07-01', 1, 1, 1, 2, 19, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-19-08-01', 1, 2, 1, 2, 19, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-19-09-01', 1, 1, 1, 2, 19, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-19-10-01', 1, 2, 1, 2, 19, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-19-11-01', 1, 1, 1, 2, 19, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-19-12-01', 1, 2, 1, 2, 19, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-19-13-01', 1, 1, 1, 2, 19, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-19-14-01', 1, 2, 1, 2, 19, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-19-15-01', 1, 1, 1, 2, 19, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-19-16-01', 1, 2, 1, 2, 19, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-19-17-01', 1, 1, 1, 2, 19, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-19-18-01', 1, 2, 1, 2, 19, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-19-19-01', 1, 1, 1, 2, 19, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-19-20-01', 1, 2, 1, 2, 19, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-19-21-01', 1, 1, 1, 2, 19, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-19-22-01', 1, 2, 1, 2, 19, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-20-01-01', 1, 1, 1, 2, 20, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-20-02-01', 1, 2, 1, 2, 20, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-20-03-01', 1, 1, 1, 2, 20, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-20-04-01', 1, 2, 1, 2, 20, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-20-05-01', 1, 1, 1, 2, 20, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-20-06-01', 1, 2, 1, 2, 20, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-20-07-01', 1, 1, 1, 2, 20, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-20-08-01', 1, 2, 1, 2, 20, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-20-09-01', 1, 1, 1, 2, 20, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-20-10-01', 1, 2, 1, 2, 20, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-20-11-01', 1, 1, 1, 2, 20, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-20-12-01', 1, 2, 1, 2, 20, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-20-13-01', 1, 1, 1, 2, 20, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-20-14-01', 1, 2, 1, 2, 20, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-20-15-01', 1, 1, 1, 2, 20, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-20-16-01', 1, 2, 1, 2, 20, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-20-17-01', 1, 1, 1, 2, 20, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-20-18-01', 1, 2, 1, 2, 20, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-20-19-01', 1, 1, 1, 2, 20, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-20-20-01', 1, 2, 1, 2, 20, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-20-21-01', 1, 1, 1, 2, 20, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-20-22-01', 1, 2, 1, 2, 20, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-21-01-01', 1, 1, 1, 2, 21, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-21-02-01', 1, 2, 1, 2, 21, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-21-03-01', 1, 1, 1, 2, 21, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-21-04-01', 1, 2, 1, 2, 21, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-21-05-01', 1, 1, 1, 2, 21, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-21-06-01', 1, 2, 1, 2, 21, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-21-07-01', 1, 1, 1, 2, 21, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-21-08-01', 1, 2, 1, 2, 21, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-21-09-01', 1, 1, 1, 2, 21, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-21-10-01', 1, 2, 1, 2, 21, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-21-11-01', 1, 1, 1, 2, 21, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-21-12-01', 1, 2, 1, 2, 21, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-21-13-01', 1, 1, 1, 2, 21, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-21-14-01', 1, 2, 1, 2, 21, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-21-15-01', 1, 1, 1, 2, 21, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-21-16-01', 1, 2, 1, 2, 21, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-21-17-01', 1, 1, 1, 2, 21, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-21-18-01', 1, 2, 1, 2, 21, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-21-19-01', 1, 1, 1, 2, 21, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-21-20-01', 1, 2, 1, 2, 21, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-21-21-01', 1, 1, 1, 2, 21, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-21-22-01', 1, 2, 1, 2, 21, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-22-01-01', 1, 1, 1, 2, 22, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-22-02-01', 1, 2, 1, 2, 22, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-22-03-01', 1, 1, 1, 2, 22, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-22-04-01', 1, 2, 1, 2, 22, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-22-05-01', 1, 1, 1, 2, 22, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-22-06-01', 1, 2, 1, 2, 22, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-22-07-01', 1, 1, 1, 2, 22, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-22-08-01', 1, 2, 1, 2, 22, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-22-09-01', 1, 1, 1, 2, 22, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-22-10-01', 1, 2, 1, 2, 22, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-22-11-01', 1, 1, 1, 2, 22, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-22-12-01', 1, 2, 1, 2, 22, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-22-13-01', 1, 1, 1, 2, 22, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-22-14-01', 1, 2, 1, 2, 22, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-22-15-01', 1, 1, 1, 2, 22, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-22-16-01', 1, 2, 1, 2, 22, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-22-17-01', 1, 1, 1, 2, 22, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-22-18-01', 1, 2, 1, 2, 22, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-22-19-01', 1, 1, 1, 2, 22, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-22-20-01', 1, 2, 1, 2, 22, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-22-21-01', 1, 1, 1, 2, 22, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-22-22-01', 1, 2, 1, 2, 22, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-23-01-01', 1, 1, 1, 2, 23, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-23-02-01', 1, 2, 1, 2, 23, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-23-03-01', 1, 1, 1, 2, 23, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-23-04-01', 1, 2, 1, 2, 23, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-23-05-01', 1, 1, 1, 2, 23, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-23-06-01', 1, 2, 1, 2, 23, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-23-07-01', 1, 1, 1, 2, 23, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-23-08-01', 1, 2, 1, 2, 23, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-23-09-01', 1, 1, 1, 2, 23, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-23-10-01', 1, 2, 1, 2, 23, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-23-11-01', 1, 1, 1, 2, 23, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-23-12-01', 1, 2, 1, 2, 23, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-23-13-01', 1, 1, 1, 2, 23, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-23-14-01', 1, 2, 1, 2, 23, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-23-15-01', 1, 1, 1, 2, 23, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-23-16-01', 1, 2, 1, 2, 23, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-23-17-01', 1, 1, 1, 2, 23, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-23-18-01', 1, 2, 1, 2, 23, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-23-19-01', 1, 1, 1, 2, 23, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-23-20-01', 1, 2, 1, 2, 23, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-23-21-01', 1, 1, 1, 2, 23, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-23-22-01', 1, 2, 1, 2, 23, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-24-01-01', 1, 1, 1, 2, 24, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-24-02-01', 1, 2, 1, 2, 24, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-24-03-01', 1, 1, 1, 2, 24, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-24-04-01', 1, 2, 1, 2, 24, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-24-05-01', 1, 1, 1, 2, 24, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-24-06-01', 1, 2, 1, 2, 24, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-24-07-01', 1, 1, 1, 2, 24, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-24-08-01', 1, 2, 1, 2, 24, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-24-09-01', 1, 1, 1, 2, 24, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-24-10-01', 1, 2, 1, 2, 24, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-24-11-01', 1, 1, 1, 2, 24, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-24-12-01', 1, 2, 1, 2, 24, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-24-13-01', 1, 1, 1, 2, 24, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-24-14-01', 1, 2, 1, 2, 24, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-24-15-01', 1, 1, 1, 2, 24, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-24-16-01', 1, 2, 1, 2, 24, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-24-17-01', 1, 1, 1, 2, 24, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-24-18-01', 1, 2, 1, 2, 24, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-24-19-01', 1, 1, 1, 2, 24, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-24-20-01', 1, 2, 1, 2, 24, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-24-21-01', 1, 1, 1, 2, 24, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-24-22-01', 1, 2, 1, 2, 24, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-25-01-01', 1, 1, 1, 2, 25, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-25-02-01', 1, 2, 1, 2, 25, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-25-03-01', 1, 1, 1, 2, 25, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-25-04-01', 1, 2, 1, 2, 25, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-25-05-01', 1, 1, 1, 2, 25, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-25-06-01', 1, 2, 1, 2, 25, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-25-07-01', 1, 1, 1, 2, 25, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-25-08-01', 1, 2, 1, 2, 25, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-25-09-01', 1, 1, 1, 2, 25, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-25-10-01', 1, 2, 1, 2, 25, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-25-11-01', 1, 1, 1, 2, 25, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-25-12-01', 1, 2, 1, 2, 25, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-25-13-01', 1, 1, 1, 2, 25, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-25-14-01', 1, 2, 1, 2, 25, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-25-15-01', 1, 1, 1, 2, 25, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-25-16-01', 1, 2, 1, 2, 25, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-25-17-01', 1, 1, 1, 2, 25, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-25-18-01', 1, 2, 1, 2, 25, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-25-19-01', 1, 1, 1, 2, 25, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-25-20-01', 1, 2, 1, 2, 25, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-25-21-01', 1, 1, 1, 2, 25, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-25-22-01', 1, 2, 1, 2, 25, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-26-01-01', 1, 1, 1, 2, 26, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-26-02-01', 1, 2, 1, 2, 26, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-26-03-01', 1, 1, 1, 2, 26, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-26-04-01', 1, 2, 1, 2, 26, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-26-05-01', 1, 1, 1, 2, 26, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-26-06-01', 1, 2, 1, 2, 26, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-26-07-01', 1, 1, 1, 2, 26, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-26-08-01', 1, 2, 1, 2, 26, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-26-09-01', 1, 1, 1, 2, 26, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-26-10-01', 1, 2, 1, 2, 26, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-26-11-01', 1, 1, 1, 2, 26, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-26-12-01', 1, 2, 1, 2, 26, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-26-13-01', 1, 1, 1, 2, 26, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-26-14-01', 1, 2, 1, 2, 26, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-26-15-01', 1, 1, 1, 2, 26, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-26-16-01', 1, 2, 1, 2, 26, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-26-17-01', 1, 1, 1, 2, 26, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-26-18-01', 1, 2, 1, 2, 26, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-26-19-01', 1, 1, 1, 2, 26, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-26-20-01', 1, 2, 1, 2, 26, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-26-21-01', 1, 1, 1, 2, 26, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-26-22-01', 1, 2, 1, 2, 26, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-27-01-01', 1, 1, 1, 2, 27, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-27-02-01', 1, 2, 1, 2, 27, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-27-03-01', 1, 1, 1, 2, 27, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-27-04-01', 1, 2, 1, 2, 27, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-27-05-01', 1, 1, 1, 2, 27, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-27-06-01', 1, 2, 1, 2, 27, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-27-07-01', 1, 1, 1, 2, 27, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-27-08-01', 1, 2, 1, 2, 27, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-27-09-01', 1, 1, 1, 2, 27, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-27-10-01', 1, 2, 1, 2, 27, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-27-11-01', 1, 1, 1, 2, 27, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-27-12-01', 1, 2, 1, 2, 27, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-27-13-01', 1, 1, 1, 2, 27, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-27-14-01', 1, 2, 1, 2, 27, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-27-15-01', 1, 1, 1, 2, 27, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-27-16-01', 1, 2, 1, 2, 27, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-27-17-01', 1, 1, 1, 2, 27, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-27-18-01', 1, 2, 1, 2, 27, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-27-19-01', 1, 1, 1, 2, 27, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-27-20-01', 1, 2, 1, 2, 27, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-27-21-01', 1, 1, 1, 2, 27, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-27-22-01', 1, 2, 1, 2, 27, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-28-01-01', 1, 1, 1, 2, 28, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-28-02-01', 1, 2, 1, 2, 28, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-28-03-01', 1, 1, 1, 2, 28, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-28-04-01', 1, 2, 1, 2, 28, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-28-05-01', 1, 1, 1, 2, 28, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-28-06-01', 1, 2, 1, 2, 28, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-28-07-01', 1, 1, 1, 2, 28, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-28-08-01', 1, 2, 1, 2, 28, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-28-09-01', 1, 1, 1, 2, 28, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-28-10-01', 1, 2, 1, 2, 28, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-28-11-01', 1, 1, 1, 2, 28, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-28-12-01', 1, 2, 1, 2, 28, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-28-13-01', 1, 1, 1, 2, 28, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-28-14-01', 1, 2, 1, 2, 28, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-28-15-01', 1, 1, 1, 2, 28, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-28-16-01', 1, 2, 1, 2, 28, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-28-17-01', 1, 1, 1, 2, 28, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-28-18-01', 1, 2, 1, 2, 28, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-28-19-01', 1, 1, 1, 2, 28, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-28-20-01', 1, 2, 1, 2, 28, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-28-21-01', 1, 1, 1, 2, 28, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-28-22-01', 1, 2, 1, 2, 28, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-29-01-01', 1, 1, 1, 2, 29, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-29-02-01', 1, 2, 1, 2, 29, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-29-03-01', 1, 1, 1, 2, 29, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-29-04-01', 1, 2, 1, 2, 29, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-29-05-01', 1, 1, 1, 2, 29, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-29-06-01', 1, 2, 1, 2, 29, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-29-07-01', 1, 1, 1, 2, 29, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-29-08-01', 1, 2, 1, 2, 29, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-29-09-01', 1, 1, 1, 2, 29, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-29-10-01', 1, 2, 1, 2, 29, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-29-11-01', 1, 1, 1, 2, 29, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-29-12-01', 1, 2, 1, 2, 29, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-29-13-01', 1, 1, 1, 2, 29, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-29-14-01', 1, 2, 1, 2, 29, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-29-15-01', 1, 1, 1, 2, 29, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-29-16-01', 1, 2, 1, 2, 29, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-29-17-01', 1, 1, 1, 2, 29, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-29-18-01', 1, 2, 1, 2, 29, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-29-19-01', 1, 1, 1, 2, 29, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-29-20-01', 1, 2, 1, 2, 29, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-29-21-01', 1, 1, 1, 2, 29, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-29-22-01', 1, 2, 1, 2, 29, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-30-01-01', 1, 1, 1, 2, 30, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-30-02-01', 1, 2, 1, 2, 30, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-30-03-01', 1, 1, 1, 2, 30, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-30-04-01', 1, 2, 1, 2, 30, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-30-05-01', 1, 1, 1, 2, 30, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-30-06-01', 1, 2, 1, 2, 30, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-30-07-01', 1, 1, 1, 2, 30, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-30-08-01', 1, 2, 1, 2, 30, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-30-09-01', 1, 1, 1, 2, 30, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-30-10-01', 1, 2, 1, 2, 30, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-30-11-01', 1, 1, 1, 2, 30, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-30-12-01', 1, 2, 1, 2, 30, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-30-13-01', 1, 1, 1, 2, 30, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-30-14-01', 1, 2, 1, 2, 30, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-30-15-01', 1, 1, 1, 2, 30, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-30-16-01', 1, 2, 1, 2, 30, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-30-17-01', 1, 1, 1, 2, 30, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-30-18-01', 1, 2, 1, 2, 30, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-30-19-01', 1, 1, 1, 2, 30, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-30-20-01', 1, 2, 1, 2, 30, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-30-21-01', 1, 1, 1, 2, 30, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-30-22-01', 1, 2, 1, 2, 30, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-31-01-01', 1, 1, 1, 2, 31, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-31-02-01', 1, 2, 1, 2, 31, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-31-03-01', 1, 1, 1, 2, 31, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-31-04-01', 1, 2, 1, 2, 31, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-31-05-01', 1, 1, 1, 2, 31, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-31-06-01', 1, 2, 1, 2, 31, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-31-07-01', 1, 1, 1, 2, 31, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-31-08-01', 1, 2, 1, 2, 31, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-31-09-01', 1, 1, 1, 2, 31, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-31-10-01', 1, 2, 1, 2, 31, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-31-11-01', 1, 1, 1, 2, 31, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-31-12-01', 1, 2, 1, 2, 31, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-31-13-01', 1, 1, 1, 2, 31, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-31-14-01', 1, 2, 1, 2, 31, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-31-15-01', 1, 1, 1, 2, 31, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-31-16-01', 1, 2, 1, 2, 31, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-31-17-01', 1, 1, 1, 2, 31, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-31-18-01', 1, 2, 1, 2, 31, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-31-19-01', 1, 1, 1, 2, 31, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-31-20-01', 1, 2, 1, 2, 31, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-31-21-01', 1, 1, 1, 2, 31, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-31-22-01', 1, 2, 1, 2, 31, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-32-01-01', 1, 1, 1, 2, 32, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-32-02-01', 1, 2, 1, 2, 32, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-32-03-01', 1, 1, 1, 2, 32, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-32-04-01', 1, 2, 1, 2, 32, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-32-05-01', 1, 1, 1, 2, 32, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-32-06-01', 1, 2, 1, 2, 32, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-32-07-01', 1, 1, 1, 2, 32, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-32-08-01', 1, 2, 1, 2, 32, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-32-09-01', 1, 1, 1, 2, 32, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-32-10-01', 1, 2, 1, 2, 32, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-32-11-01', 1, 1, 1, 2, 32, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-32-12-01', 1, 2, 1, 2, 32, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-32-13-01', 1, 1, 1, 2, 32, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-32-14-01', 1, 2, 1, 2, 32, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-32-15-01', 1, 1, 1, 2, 32, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-32-16-01', 1, 2, 1, 2, 32, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-32-17-01', 1, 1, 1, 2, 32, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-32-18-01', 1, 2, 1, 2, 32, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-32-19-01', 1, 1, 1, 2, 32, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-32-20-01', 1, 2, 1, 2, 32, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-32-21-01', 1, 1, 1, 2, 32, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-32-22-01', 1, 2, 1, 2, 32, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-33-01-01', 1, 1, 1, 2, 33, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-33-02-01', 1, 2, 1, 2, 33, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-33-03-01', 1, 1, 1, 2, 33, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-33-04-01', 1, 2, 1, 2, 33, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-33-05-01', 1, 1, 1, 2, 33, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-33-06-01', 1, 2, 1, 2, 33, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-33-07-01', 1, 1, 1, 2, 33, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-33-08-01', 1, 2, 1, 2, 33, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-33-09-01', 1, 1, 1, 2, 33, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-33-10-01', 1, 2, 1, 2, 33, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-33-11-01', 1, 1, 1, 2, 33, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-33-12-01', 1, 2, 1, 2, 33, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-33-13-01', 1, 1, 1, 2, 33, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-33-14-01', 1, 2, 1, 2, 33, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-33-15-01', 1, 1, 1, 2, 33, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-33-16-01', 1, 2, 1, 2, 33, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-33-17-01', 1, 1, 1, 2, 33, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-33-18-01', 1, 2, 1, 2, 33, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-33-19-01', 1, 1, 1, 2, 33, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-33-20-01', 1, 2, 1, 2, 33, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-33-21-01', 1, 1, 1, 2, 33, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-33-22-01', 1, 2, 1, 2, 33, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-34-01-01', 1, 1, 1, 2, 34, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-34-02-01', 1, 2, 1, 2, 34, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-34-03-01', 1, 1, 1, 2, 34, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-34-04-01', 1, 2, 1, 2, 34, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-34-05-01', 1, 1, 1, 2, 34, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-34-06-01', 1, 2, 1, 2, 34, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-34-07-01', 1, 1, 1, 2, 34, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-34-08-01', 1, 2, 1, 2, 34, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-34-09-01', 1, 1, 1, 2, 34, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-34-10-01', 1, 2, 1, 2, 34, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-34-11-01', 1, 1, 1, 2, 34, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-34-12-01', 1, 2, 1, 2, 34, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-34-13-01', 1, 1, 1, 2, 34, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-34-14-01', 1, 2, 1, 2, 34, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-34-15-01', 1, 1, 1, 2, 34, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-34-16-01', 1, 2, 1, 2, 34, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-34-17-01', 1, 1, 1, 2, 34, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-34-18-01', 1, 2, 1, 2, 34, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-34-19-01', 1, 1, 1, 2, 34, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-34-20-01', 1, 2, 1, 2, 34, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-34-21-01', 1, 1, 1, 2, 34, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-34-22-01', 1, 2, 1, 2, 34, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-35-01-01', 1, 1, 1, 2, 35, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-35-02-01', 1, 2, 1, 2, 35, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-35-03-01', 1, 1, 1, 2, 35, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-35-04-01', 1, 2, 1, 2, 35, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-35-05-01', 1, 1, 1, 2, 35, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-35-06-01', 1, 2, 1, 2, 35, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-35-07-01', 1, 1, 1, 2, 35, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-35-08-01', 1, 2, 1, 2, 35, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-35-09-01', 1, 1, 1, 2, 35, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-35-10-01', 1, 2, 1, 2, 35, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-35-11-01', 1, 1, 1, 2, 35, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-35-12-01', 1, 2, 1, 2, 35, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-35-13-01', 1, 1, 1, 2, 35, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-35-14-01', 1, 2, 1, 2, 35, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-35-15-01', 1, 1, 1, 2, 35, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-35-16-01', 1, 2, 1, 2, 35, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-35-17-01', 1, 1, 1, 2, 35, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-35-18-01', 1, 2, 1, 2, 35, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-35-19-01', 1, 1, 1, 2, 35, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-35-20-01', 1, 2, 1, 2, 35, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-35-21-01', 1, 1, 1, 2, 35, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-35-22-01', 1, 2, 1, 2, 35, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-36-01-01', 1, 1, 1, 2, 36, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-36-02-01', 1, 2, 1, 2, 36, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-36-03-01', 1, 1, 1, 2, 36, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-36-04-01', 1, 2, 1, 2, 36, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-36-05-01', 1, 1, 1, 2, 36, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-36-06-01', 1, 2, 1, 2, 36, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-36-07-01', 1, 1, 1, 2, 36, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-36-08-01', 1, 2, 1, 2, 36, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-36-09-01', 1, 1, 1, 2, 36, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-36-10-01', 1, 2, 1, 2, 36, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-36-11-01', 1, 1, 1, 2, 36, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-36-12-01', 1, 2, 1, 2, 36, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-36-13-01', 1, 1, 1, 2, 36, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-36-14-01', 1, 2, 1, 2, 36, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-36-15-01', 1, 1, 1, 2, 36, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-36-16-01', 1, 2, 1, 2, 36, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-36-17-01', 1, 1, 1, 2, 36, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-36-18-01', 1, 2, 1, 2, 36, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-36-19-01', 1, 1, 1, 2, 36, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-36-20-01', 1, 2, 1, 2, 36, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-36-21-01', 1, 1, 1, 2, 36, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-36-22-01', 1, 2, 1, 2, 36, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-37-01-01', 1, 1, 1, 2, 37, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-37-02-01', 1, 2, 1, 2, 37, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-37-03-01', 1, 1, 1, 2, 37, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-37-04-01', 1, 2, 1, 2, 37, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-37-05-01', 1, 1, 1, 2, 37, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-37-06-01', 1, 2, 1, 2, 37, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-37-07-01', 1, 1, 1, 2, 37, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-37-08-01', 1, 2, 1, 2, 37, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-37-09-01', 1, 1, 1, 2, 37, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-37-10-01', 1, 2, 1, 2, 37, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-37-11-01', 1, 1, 1, 2, 37, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-37-12-01', 1, 2, 1, 2, 37, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-37-13-01', 1, 1, 1, 2, 37, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-37-14-01', 1, 2, 1, 2, 37, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-37-15-01', 1, 1, 1, 2, 37, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-37-16-01', 1, 2, 1, 2, 37, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-37-17-01', 1, 1, 1, 2, 37, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-37-18-01', 1, 2, 1, 2, 37, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-37-19-01', 1, 1, 1, 2, 37, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-37-20-01', 1, 2, 1, 2, 37, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-37-21-01', 1, 1, 1, 2, 37, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-37-22-01', 1, 2, 1, 2, 37, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-38-01-01', 1, 1, 1, 2, 38, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-38-02-01', 1, 2, 1, 2, 38, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-38-03-01', 1, 1, 1, 2, 38, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-38-04-01', 1, 2, 1, 2, 38, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-38-05-01', 1, 1, 1, 2, 38, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-38-06-01', 1, 2, 1, 2, 38, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-38-07-01', 1, 1, 1, 2, 38, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-38-08-01', 1, 2, 1, 2, 38, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-38-09-01', 1, 1, 1, 2, 38, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-38-10-01', 1, 2, 1, 2, 38, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-38-11-01', 1, 1, 1, 2, 38, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-38-12-01', 1, 2, 1, 2, 38, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-38-13-01', 1, 1, 1, 2, 38, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-38-14-01', 1, 2, 1, 2, 38, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-38-15-01', 1, 1, 1, 2, 38, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-38-16-01', 1, 2, 1, 2, 38, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-38-17-01', 1, 1, 1, 2, 38, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-38-18-01', 1, 2, 1, 2, 38, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-38-19-01', 1, 1, 1, 2, 38, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-38-20-01', 1, 2, 1, 2, 38, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-38-21-01', 1, 1, 1, 2, 38, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-38-22-01', 1, 2, 1, 2, 38, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-39-01-01', 1, 1, 1, 2, 39, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-39-02-01', 1, 2, 1, 2, 39, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-39-03-01', 1, 1, 1, 2, 39, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-39-04-01', 1, 2, 1, 2, 39, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-39-05-01', 1, 1, 1, 2, 39, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-39-06-01', 1, 2, 1, 2, 39, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-39-07-01', 1, 1, 1, 2, 39, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-39-08-01', 1, 2, 1, 2, 39, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-39-09-01', 1, 1, 1, 2, 39, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-39-10-01', 1, 2, 1, 2, 39, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-39-11-01', 1, 1, 1, 2, 39, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-39-12-01', 1, 2, 1, 2, 39, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-39-13-01', 1, 1, 1, 2, 39, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-39-14-01', 1, 2, 1, 2, 39, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-39-15-01', 1, 1, 1, 2, 39, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-39-16-01', 1, 2, 1, 2, 39, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-39-17-01', 1, 1, 1, 2, 39, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-39-18-01', 1, 2, 1, 2, 39, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-39-19-01', 1, 1, 1, 2, 39, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-39-20-01', 1, 2, 1, 2, 39, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-39-21-01', 1, 1, 1, 2, 39, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-39-22-01', 1, 2, 1, 2, 39, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-40-01-01', 1, 1, 1, 2, 40, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-40-02-01', 1, 2, 1, 2, 40, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-40-03-01', 1, 1, 1, 2, 40, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-40-04-01', 1, 2, 1, 2, 40, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-40-05-01', 1, 1, 1, 2, 40, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-40-06-01', 1, 2, 1, 2, 40, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-40-07-01', 1, 1, 1, 2, 40, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-40-08-01', 1, 2, 1, 2, 40, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-40-09-01', 1, 1, 1, 2, 40, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-40-10-01', 1, 2, 1, 2, 40, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-40-11-01', 1, 1, 1, 2, 40, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-40-12-01', 1, 2, 1, 2, 40, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-40-13-01', 1, 1, 1, 2, 40, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-40-14-01', 1, 2, 1, 2, 40, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-40-15-01', 1, 1, 1, 2, 40, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-40-16-01', 1, 2, 1, 2, 40, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-40-17-01', 1, 1, 1, 2, 40, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-40-18-01', 1, 2, 1, 2, 40, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-40-19-01', 1, 1, 1, 2, 40, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-40-20-01', 1, 2, 1, 2, 40, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-40-21-01', 1, 1, 1, 2, 40, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-40-22-01', 1, 2, 1, 2, 40, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-41-01-01', 1, 1, 1, 2, 41, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-41-02-01', 1, 2, 1, 2, 41, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-41-03-01', 1, 1, 1, 2, 41, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-41-04-01', 1, 2, 1, 2, 41, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-41-05-01', 1, 1, 1, 2, 41, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-41-06-01', 1, 2, 1, 2, 41, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-41-07-01', 1, 1, 1, 2, 41, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-41-08-01', 1, 2, 1, 2, 41, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-41-09-01', 1, 1, 1, 2, 41, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-41-10-01', 1, 2, 1, 2, 41, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-41-11-01', 1, 1, 1, 2, 41, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-41-12-01', 1, 2, 1, 2, 41, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-41-13-01', 1, 1, 1, 2, 41, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-41-14-01', 1, 2, 1, 2, 41, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-41-15-01', 1, 1, 1, 2, 41, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-41-16-01', 1, 2, 1, 2, 41, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-41-17-01', 1, 1, 1, 2, 41, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-41-18-01', 1, 2, 1, 2, 41, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-41-19-01', 1, 1, 1, 2, 41, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-41-20-01', 1, 2, 1, 2, 41, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-41-21-01', 1, 1, 1, 2, 41, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-41-22-01', 1, 2, 1, 2, 41, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-42-01-01', 1, 1, 1, 2, 42, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-42-02-01', 1, 2, 1, 2, 42, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-42-03-01', 1, 1, 1, 2, 42, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-42-04-01', 1, 2, 1, 2, 42, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-42-05-01', 1, 1, 1, 2, 42, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-42-06-01', 1, 2, 1, 2, 42, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-42-07-01', 1, 1, 1, 2, 42, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-42-08-01', 1, 2, 1, 2, 42, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-42-09-01', 1, 1, 1, 2, 42, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-42-10-01', 1, 2, 1, 2, 42, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-42-11-01', 1, 1, 1, 2, 42, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-42-12-01', 1, 2, 1, 2, 42, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-42-13-01', 1, 1, 1, 2, 42, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-42-14-01', 1, 2, 1, 2, 42, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-42-15-01', 1, 1, 1, 2, 42, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-42-16-01', 1, 2, 1, 2, 42, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-42-17-01', 1, 1, 1, 2, 42, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-42-18-01', 1, 2, 1, 2, 42, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-42-19-01', 1, 1, 1, 2, 42, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-42-20-01', 1, 2, 1, 2, 42, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-42-21-01', 1, 1, 1, 2, 42, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-42-22-01', 1, 2, 1, 2, 42, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-43-01-01', 1, 1, 1, 2, 43, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-43-02-01', 1, 2, 1, 2, 43, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-43-03-01', 1, 1, 1, 2, 43, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-43-04-01', 1, 2, 1, 2, 43, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-43-05-01', 1, 1, 1, 2, 43, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-43-06-01', 1, 2, 1, 2, 43, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-43-07-01', 1, 1, 1, 2, 43, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-43-08-01', 1, 2, 1, 2, 43, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-43-09-01', 1, 1, 1, 2, 43, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-43-10-01', 1, 2, 1, 2, 43, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-43-11-01', 1, 1, 1, 2, 43, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-43-12-01', 1, 2, 1, 2, 43, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-43-13-01', 1, 1, 1, 2, 43, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-43-14-01', 1, 2, 1, 2, 43, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-43-15-01', 1, 1, 1, 2, 43, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-43-16-01', 1, 2, 1, 2, 43, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-43-17-01', 1, 1, 1, 2, 43, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-43-18-01', 1, 2, 1, 2, 43, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-43-19-01', 1, 1, 1, 2, 43, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-43-20-01', 1, 2, 1, 2, 43, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-43-21-01', 1, 1, 1, 2, 43, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-43-22-01', 1, 2, 1, 2, 43, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-44-01-01', 1, 1, 1, 2, 44, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-44-02-01', 1, 2, 1, 2, 44, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-44-03-01', 1, 1, 1, 2, 44, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-44-04-01', 1, 2, 1, 2, 44, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-44-05-01', 1, 1, 1, 2, 44, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-44-06-01', 1, 2, 1, 2, 44, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-44-07-01', 1, 1, 1, 2, 44, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-44-08-01', 1, 2, 1, 2, 44, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-44-09-01', 1, 1, 1, 2, 44, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-44-10-01', 1, 2, 1, 2, 44, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-44-11-01', 1, 1, 1, 2, 44, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-44-12-01', 1, 2, 1, 2, 44, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-44-13-01', 1, 1, 1, 2, 44, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-44-14-01', 1, 2, 1, 2, 44, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-44-15-01', 1, 1, 1, 2, 44, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-44-16-01', 1, 2, 1, 2, 44, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-44-17-01', 1, 1, 1, 2, 44, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-44-18-01', 1, 2, 1, 2, 44, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-44-19-01', 1, 1, 1, 2, 44, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-44-20-01', 1, 2, 1, 2, 44, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-44-21-01', 1, 1, 1, 2, 44, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-44-22-01', 1, 2, 1, 2, 44, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-45-01-01', 1, 1, 1, 2, 45, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-45-02-01', 1, 2, 1, 2, 45, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-45-03-01', 1, 1, 1, 2, 45, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-45-04-01', 1, 2, 1, 2, 45, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-45-05-01', 1, 1, 1, 2, 45, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-45-06-01', 1, 2, 1, 2, 45, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-45-07-01', 1, 1, 1, 2, 45, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-45-08-01', 1, 2, 1, 2, 45, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-45-09-01', 1, 1, 1, 2, 45, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-45-10-01', 1, 2, 1, 2, 45, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-45-11-01', 1, 1, 1, 2, 45, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-45-12-01', 1, 2, 1, 2, 45, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-45-13-01', 1, 1, 1, 2, 45, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-45-14-01', 1, 2, 1, 2, 45, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-45-15-01', 1, 1, 1, 2, 45, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-45-16-01', 1, 2, 1, 2, 45, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-45-17-01', 1, 1, 1, 2, 45, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-45-18-01', 1, 2, 1, 2, 45, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-45-19-01', 1, 1, 1, 2, 45, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-45-20-01', 1, 2, 1, 2, 45, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-45-21-01', 1, 1, 1, 2, 45, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-45-22-01', 1, 2, 1, 2, 45, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-46-01-01', 1, 1, 1, 2, 46, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-46-02-01', 1, 2, 1, 2, 46, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-46-03-01', 1, 1, 1, 2, 46, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-46-04-01', 1, 2, 1, 2, 46, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-46-05-01', 1, 1, 1, 2, 46, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-46-06-01', 1, 2, 1, 2, 46, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-46-07-01', 1, 1, 1, 2, 46, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-46-08-01', 1, 2, 1, 2, 46, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-46-09-01', 1, 1, 1, 2, 46, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-46-10-01', 1, 2, 1, 2, 46, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-46-11-01', 1, 1, 1, 2, 46, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-46-12-01', 1, 2, 1, 2, 46, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-46-13-01', 1, 1, 1, 2, 46, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-46-14-01', 1, 2, 1, 2, 46, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-46-15-01', 1, 1, 1, 2, 46, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-46-16-01', 1, 2, 1, 2, 46, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-46-17-01', 1, 1, 1, 2, 46, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-46-18-01', 1, 2, 1, 2, 46, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-46-19-01', 1, 1, 1, 2, 46, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-46-20-01', 1, 2, 1, 2, 46, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-46-21-01', 1, 1, 1, 2, 46, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-46-22-01', 1, 2, 1, 2, 46, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-47-01-01', 1, 1, 1, 2, 47, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-47-02-01', 1, 2, 1, 2, 47, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-47-03-01', 1, 1, 1, 2, 47, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-47-04-01', 1, 2, 1, 2, 47, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-47-05-01', 1, 1, 1, 2, 47, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-47-06-01', 1, 2, 1, 2, 47, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-47-07-01', 1, 1, 1, 2, 47, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-47-08-01', 1, 2, 1, 2, 47, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-47-09-01', 1, 1, 1, 2, 47, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-47-10-01', 1, 2, 1, 2, 47, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-47-11-01', 1, 1, 1, 2, 47, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-47-12-01', 1, 2, 1, 2, 47, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-47-13-01', 1, 1, 1, 2, 47, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-47-14-01', 1, 2, 1, 2, 47, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-47-15-01', 1, 1, 1, 2, 47, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-47-16-01', 1, 2, 1, 2, 47, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-47-17-01', 1, 1, 1, 2, 47, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-47-18-01', 1, 2, 1, 2, 47, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-47-19-01', 1, 1, 1, 2, 47, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-47-20-01', 1, 2, 1, 2, 47, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-47-21-01', 1, 1, 1, 2, 47, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-47-22-01', 1, 2, 1, 2, 47, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-48-01-01', 1, 1, 1, 2, 48, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-48-02-01', 1, 2, 1, 2, 48, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-48-03-01', 1, 1, 1, 2, 48, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-48-04-01', 1, 2, 1, 2, 48, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-48-05-01', 1, 1, 1, 2, 48, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-48-06-01', 1, 2, 1, 2, 48, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-48-07-01', 1, 1, 1, 2, 48, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-48-08-01', 1, 2, 1, 2, 48, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-48-09-01', 1, 1, 1, 2, 48, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-48-10-01', 1, 2, 1, 2, 48, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-48-11-01', 1, 1, 1, 2, 48, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-48-12-01', 1, 2, 1, 2, 48, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-48-13-01', 1, 1, 1, 2, 48, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-48-14-01', 1, 2, 1, 2, 48, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-48-15-01', 1, 1, 1, 2, 48, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-48-16-01', 1, 2, 1, 2, 48, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-48-17-01', 1, 1, 1, 2, 48, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-48-18-01', 1, 2, 1, 2, 48, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-48-19-01', 1, 1, 1, 2, 48, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-48-20-01', 1, 2, 1, 2, 48, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-48-21-01', 1, 1, 1, 2, 48, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-48-22-01', 1, 2, 1, 2, 48, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-49-01-01', 1, 1, 1, 2, 49, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-49-02-01', 1, 2, 1, 2, 49, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-49-03-01', 1, 1, 1, 2, 49, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-49-04-01', 1, 2, 1, 2, 49, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-49-05-01', 1, 1, 1, 2, 49, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-49-06-01', 1, 2, 1, 2, 49, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-49-07-01', 1, 1, 1, 2, 49, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-49-08-01', 1, 2, 1, 2, 49, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-49-09-01', 1, 1, 1, 2, 49, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-49-10-01', 1, 2, 1, 2, 49, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-49-11-01', 1, 1, 1, 2, 49, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-49-12-01', 1, 2, 1, 2, 49, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-49-13-01', 1, 1, 1, 2, 49, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-49-14-01', 1, 2, 1, 2, 49, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-49-15-01', 1, 1, 1, 2, 49, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-49-16-01', 1, 2, 1, 2, 49, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-49-17-01', 1, 1, 1, 2, 49, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-49-18-01', 1, 2, 1, 2, 49, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-49-19-01', 1, 1, 1, 2, 49, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-49-20-01', 1, 2, 1, 2, 49, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-49-21-01', 1, 1, 1, 2, 49, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-49-22-01', 1, 2, 1, 2, 49, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-50-01-01', 1, 1, 1, 2, 50, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-50-02-01', 1, 2, 1, 2, 50, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-50-03-01', 1, 1, 1, 2, 50, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-50-04-01', 1, 2, 1, 2, 50, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-50-05-01', 1, 1, 1, 2, 50, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-50-06-01', 1, 2, 1, 2, 50, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-50-07-01', 1, 1, 1, 2, 50, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-50-08-01', 1, 2, 1, 2, 50, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-50-09-01', 1, 1, 1, 2, 50, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-50-10-01', 1, 2, 1, 2, 50, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-50-11-01', 1, 1, 1, 2, 50, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-50-12-01', 1, 2, 1, 2, 50, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-50-13-01', 1, 1, 1, 2, 50, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-50-14-01', 1, 2, 1, 2, 50, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-50-15-01', 1, 1, 1, 2, 50, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-50-16-01', 1, 2, 1, 2, 50, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-50-17-01', 1, 1, 1, 2, 50, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-50-18-01', 1, 2, 1, 2, 50, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-50-19-01', 1, 1, 1, 2, 50, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-50-20-01', 1, 2, 1, 2, 50, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-50-21-01', 1, 1, 1, 2, 50, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-50-22-01', 1, 2, 1, 2, 50, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-51-01-01', 1, 1, 1, 2, 51, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-51-02-01', 1, 2, 1, 2, 51, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-51-03-01', 1, 1, 1, 2, 51, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-51-04-01', 1, 2, 1, 2, 51, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-51-05-01', 1, 1, 1, 2, 51, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-51-06-01', 1, 2, 1, 2, 51, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-51-07-01', 1, 1, 1, 2, 51, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-51-08-01', 1, 2, 1, 2, 51, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-51-09-01', 1, 1, 1, 2, 51, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-51-10-01', 1, 2, 1, 2, 51, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-51-11-01', 1, 1, 1, 2, 51, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-51-12-01', 1, 2, 1, 2, 51, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-51-13-01', 1, 1, 1, 2, 51, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-51-14-01', 1, 2, 1, 2, 51, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-51-15-01', 1, 1, 1, 2, 51, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-51-16-01', 1, 2, 1, 2, 51, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-51-17-01', 1, 1, 1, 2, 51, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-51-18-01', 1, 2, 1, 2, 51, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-51-19-01', 1, 1, 1, 2, 51, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-51-20-01', 1, 2, 1, 2, 51, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-51-21-01', 1, 1, 1, 2, 51, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-51-22-01', 1, 2, 1, 2, 51, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-52-01-01', 1, 1, 1, 2, 52, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-52-02-01', 1, 2, 1, 2, 52, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-52-03-01', 1, 1, 1, 2, 52, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-52-04-01', 1, 2, 1, 2, 52, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-52-05-01', 1, 1, 1, 2, 52, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-52-06-01', 1, 2, 1, 2, 52, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-52-07-01', 1, 1, 1, 2, 52, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-52-08-01', 1, 2, 1, 2, 52, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-52-09-01', 1, 1, 1, 2, 52, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-52-10-01', 1, 2, 1, 2, 52, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-52-11-01', 1, 1, 1, 2, 52, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-52-12-01', 1, 2, 1, 2, 52, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-52-13-01', 1, 1, 1, 2, 52, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-52-14-01', 1, 2, 1, 2, 52, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-52-15-01', 1, 1, 1, 2, 52, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-52-16-01', 1, 2, 1, 2, 52, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-52-17-01', 1, 1, 1, 2, 52, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-52-18-01', 1, 2, 1, 2, 52, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-52-19-01', 1, 1, 1, 2, 52, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-52-20-01', 1, 2, 1, 2, 52, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-52-21-01', 1, 1, 1, 2, 52, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-52-22-01', 1, 2, 1, 2, 52, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-53-01-01', 1, 1, 1, 2, 53, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-53-02-01', 1, 2, 1, 2, 53, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-53-03-01', 1, 1, 1, 2, 53, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-53-04-01', 1, 2, 1, 2, 53, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-53-05-01', 1, 1, 1, 2, 53, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-53-06-01', 1, 2, 1, 2, 53, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-53-07-01', 1, 1, 1, 2, 53, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-53-08-01', 1, 2, 1, 2, 53, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-53-09-01', 1, 1, 1, 2, 53, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-53-10-01', 1, 2, 1, 2, 53, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-53-11-01', 1, 1, 1, 2, 53, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-53-12-01', 1, 2, 1, 2, 53, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-53-13-01', 1, 1, 1, 2, 53, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-53-14-01', 1, 2, 1, 2, 53, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-53-15-01', 1, 1, 1, 2, 53, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-53-16-01', 1, 2, 1, 2, 53, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-53-17-01', 1, 1, 1, 2, 53, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-53-18-01', 1, 2, 1, 2, 53, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-53-19-01', 1, 1, 1, 2, 53, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-53-20-01', 1, 2, 1, 2, 53, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-53-21-01', 1, 1, 1, 2, 53, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-53-22-01', 1, 2, 1, 2, 53, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-54-01-01', 1, 1, 1, 2, 54, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-54-02-01', 1, 2, 1, 2, 54, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-54-03-01', 1, 1, 1, 2, 54, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-54-04-01', 1, 2, 1, 2, 54, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-54-05-01', 1, 1, 1, 2, 54, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-54-06-01', 1, 2, 1, 2, 54, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-54-07-01', 1, 1, 1, 2, 54, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-54-08-01', 1, 2, 1, 2, 54, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-54-09-01', 1, 1, 1, 2, 54, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-54-10-01', 1, 2, 1, 2, 54, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-54-11-01', 1, 1, 1, 2, 54, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-54-12-01', 1, 2, 1, 2, 54, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-54-13-01', 1, 1, 1, 2, 54, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-54-14-01', 1, 2, 1, 2, 54, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-54-15-01', 1, 1, 1, 2, 54, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-54-16-01', 1, 2, 1, 2, 54, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-54-17-01', 1, 1, 1, 2, 54, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-54-18-01', 1, 2, 1, 2, 54, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-54-19-01', 1, 1, 1, 2, 54, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-54-20-01', 1, 2, 1, 2, 54, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-54-21-01', 1, 1, 1, 2, 54, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-54-22-01', 1, 2, 1, 2, 54, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-55-01-01', 1, 1, 1, 2, 55, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-55-02-01', 1, 2, 1, 2, 55, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-55-03-01', 1, 1, 1, 2, 55, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-55-04-01', 1, 2, 1, 2, 55, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-55-05-01', 1, 1, 1, 2, 55, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-55-06-01', 1, 2, 1, 2, 55, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-55-07-01', 1, 1, 1, 2, 55, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-55-08-01', 1, 2, 1, 2, 55, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-55-09-01', 1, 1, 1, 2, 55, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-55-10-01', 1, 2, 1, 2, 55, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-55-11-01', 1, 1, 1, 2, 55, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-55-12-01', 1, 2, 1, 2, 55, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-55-13-01', 1, 1, 1, 2, 55, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-55-14-01', 1, 2, 1, 2, 55, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-55-15-01', 1, 1, 1, 2, 55, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-55-16-01', 1, 2, 1, 2, 55, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-55-17-01', 1, 1, 1, 2, 55, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-55-18-01', 1, 2, 1, 2, 55, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-55-19-01', 1, 1, 1, 2, 55, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-55-20-01', 1, 2, 1, 2, 55, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-55-21-01', 1, 1, 1, 2, 55, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-55-22-01', 1, 2, 1, 2, 55, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-56-01-01', 1, 1, 1, 2, 56, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-56-02-01', 1, 2, 1, 2, 56, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-56-03-01', 1, 1, 1, 2, 56, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-56-04-01', 1, 2, 1, 2, 56, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-56-05-01', 1, 1, 1, 2, 56, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-56-06-01', 1, 2, 1, 2, 56, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-56-07-01', 1, 1, 1, 2, 56, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-56-08-01', 1, 2, 1, 2, 56, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-56-09-01', 1, 1, 1, 2, 56, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-56-10-01', 1, 2, 1, 2, 56, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-56-11-01', 1, 1, 1, 2, 56, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-56-12-01', 1, 2, 1, 2, 56, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-56-13-01', 1, 1, 1, 2, 56, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-56-14-01', 1, 2, 1, 2, 56, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-56-15-01', 1, 1, 1, 2, 56, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-56-16-01', 1, 2, 1, 2, 56, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-56-17-01', 1, 1, 1, 2, 56, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-56-18-01', 1, 2, 1, 2, 56, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-56-19-01', 1, 1, 1, 2, 56, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-56-20-01', 1, 2, 1, 2, 56, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-56-21-01', 1, 1, 1, 2, 56, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-56-22-01', 1, 2, 1, 2, 56, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-57-01-01', 1, 1, 1, 2, 57, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-57-02-01', 1, 2, 1, 2, 57, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-57-03-01', 1, 1, 1, 2, 57, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-57-04-01', 1, 2, 1, 2, 57, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-57-05-01', 1, 1, 1, 2, 57, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-57-06-01', 1, 2, 1, 2, 57, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-57-07-01', 1, 1, 1, 2, 57, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-57-08-01', 1, 2, 1, 2, 57, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-57-09-01', 1, 1, 1, 2, 57, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-57-10-01', 1, 2, 1, 2, 57, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-57-11-01', 1, 1, 1, 2, 57, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-57-12-01', 1, 2, 1, 2, 57, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-57-13-01', 1, 1, 1, 2, 57, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-57-14-01', 1, 2, 1, 2, 57, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-57-15-01', 1, 1, 1, 2, 57, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-57-16-01', 1, 2, 1, 2, 57, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-57-17-01', 1, 1, 1, 2, 57, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-57-18-01', 1, 2, 1, 2, 57, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-57-19-01', 1, 1, 1, 2, 57, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-57-20-01', 1, 2, 1, 2, 57, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-57-21-01', 1, 1, 1, 2, 57, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-57-22-01', 1, 2, 1, 2, 57, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-58-01-01', 1, 1, 1, 2, 58, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-58-02-01', 1, 2, 1, 2, 58, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-58-03-01', 1, 1, 1, 2, 58, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-58-04-01', 1, 2, 1, 2, 58, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-58-05-01', 1, 1, 1, 2, 58, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-58-06-01', 1, 2, 1, 2, 58, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-58-07-01', 1, 1, 1, 2, 58, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-58-08-01', 1, 2, 1, 2, 58, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-58-09-01', 1, 1, 1, 2, 58, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-58-10-01', 1, 2, 1, 2, 58, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-58-11-01', 1, 1, 1, 2, 58, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-58-12-01', 1, 2, 1, 2, 58, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-58-13-01', 1, 1, 1, 2, 58, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-58-14-01', 1, 2, 1, 2, 58, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-58-15-01', 1, 1, 1, 2, 58, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-58-16-01', 1, 2, 1, 2, 58, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-58-17-01', 1, 1, 1, 2, 58, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-58-18-01', 1, 2, 1, 2, 58, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-58-19-01', 1, 1, 1, 2, 58, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-58-20-01', 1, 2, 1, 2, 58, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-58-21-01', 1, 1, 1, 2, 58, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-58-22-01', 1, 2, 1, 2, 58, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-59-01-01', 1, 1, 1, 2, 59, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-59-02-01', 1, 2, 1, 2, 59, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-59-03-01', 1, 1, 1, 2, 59, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-59-04-01', 1, 2, 1, 2, 59, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-59-05-01', 1, 1, 1, 2, 59, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-59-06-01', 1, 2, 1, 2, 59, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-59-07-01', 1, 1, 1, 2, 59, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-59-08-01', 1, 2, 1, 2, 59, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-59-09-01', 1, 1, 1, 2, 59, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-59-10-01', 1, 2, 1, 2, 59, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-59-11-01', 1, 1, 1, 2, 59, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-59-12-01', 1, 2, 1, 2, 59, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-59-13-01', 1, 1, 1, 2, 59, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-59-14-01', 1, 2, 1, 2, 59, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-59-15-01', 1, 1, 1, 2, 59, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-59-16-01', 1, 2, 1, 2, 59, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-59-17-01', 1, 1, 1, 2, 59, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-59-18-01', 1, 2, 1, 2, 59, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-59-19-01', 1, 1, 1, 2, 59, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-59-20-01', 1, 2, 1, 2, 59, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-59-21-01', 1, 1, 1, 2, 59, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-59-22-01', 1, 2, 1, 2, 59, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-60-01-01', 1, 1, 1, 2, 60, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-60-02-01', 1, 2, 1, 2, 60, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-60-03-01', 1, 1, 1, 2, 60, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-60-04-01', 1, 2, 1, 2, 60, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-60-05-01', 1, 1, 1, 2, 60, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-60-06-01', 1, 2, 1, 2, 60, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-60-07-01', 1, 1, 1, 2, 60, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-60-08-01', 1, 2, 1, 2, 60, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-60-09-01', 1, 1, 1, 2, 60, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-60-10-01', 1, 2, 1, 2, 60, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-60-11-01', 1, 1, 1, 2, 60, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-60-12-01', 1, 2, 1, 2, 60, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-60-13-01', 1, 1, 1, 2, 60, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-60-14-01', 1, 2, 1, 2, 60, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-60-15-01', 1, 1, 1, 2, 60, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-60-16-01', 1, 2, 1, 2, 60, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-60-17-01', 1, 1, 1, 2, 60, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-60-18-01', 1, 2, 1, 2, 60, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-60-19-01', 1, 1, 1, 2, 60, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-60-20-01', 1, 2, 1, 2, 60, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-60-21-01', 1, 1, 1, 2, 60, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-60-22-01', 1, 2, 1, 2, 60, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-61-01-01', 1, 1, 1, 2, 61, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-61-02-01', 1, 2, 1, 2, 61, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-61-03-01', 1, 1, 1, 2, 61, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-61-04-01', 1, 2, 1, 2, 61, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-61-05-01', 1, 1, 1, 2, 61, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-61-06-01', 1, 2, 1, 2, 61, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-61-07-01', 1, 1, 1, 2, 61, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-61-08-01', 1, 2, 1, 2, 61, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-61-09-01', 1, 1, 1, 2, 61, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-61-10-01', 1, 2, 1, 2, 61, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-61-11-01', 1, 1, 1, 2, 61, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-61-12-01', 1, 2, 1, 2, 61, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-61-13-01', 1, 1, 1, 2, 61, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-61-14-01', 1, 2, 1, 2, 61, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-61-15-01', 1, 1, 1, 2, 61, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-61-16-01', 1, 2, 1, 2, 61, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-61-17-01', 1, 1, 1, 2, 61, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-61-18-01', 1, 2, 1, 2, 61, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-61-19-01', 1, 1, 1, 2, 61, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-61-20-01', 1, 2, 1, 2, 61, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-61-21-01', 1, 1, 1, 2, 61, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-61-22-01', 1, 2, 1, 2, 61, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-62-01-01', 1, 1, 1, 2, 62, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-62-02-01', 1, 2, 1, 2, 62, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-62-03-01', 1, 1, 1, 2, 62, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-62-04-01', 1, 2, 1, 2, 62, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-62-05-01', 1, 1, 1, 2, 62, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-62-06-01', 1, 2, 1, 2, 62, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-62-07-01', 1, 1, 1, 2, 62, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-62-08-01', 1, 2, 1, 2, 62, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-62-09-01', 1, 1, 1, 2, 62, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-62-10-01', 1, 2, 1, 2, 62, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-62-11-01', 1, 1, 1, 2, 62, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-62-12-01', 1, 2, 1, 2, 62, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-62-13-01', 1, 1, 1, 2, 62, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-62-14-01', 1, 2, 1, 2, 62, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-62-15-01', 1, 1, 1, 2, 62, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-62-16-01', 1, 2, 1, 2, 62, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-62-17-01', 1, 1, 1, 2, 62, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-62-18-01', 1, 2, 1, 2, 62, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-62-19-01', 1, 1, 1, 2, 62, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-62-20-01', 1, 2, 1, 2, 62, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-62-21-01', 1, 1, 1, 2, 62, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-62-22-01', 1, 2, 1, 2, 62, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-63-01-01', 1, 1, 1, 2, 63, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-63-02-01', 1, 2, 1, 2, 63, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-63-03-01', 1, 1, 1, 2, 63, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-63-04-01', 1, 2, 1, 2, 63, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-63-05-01', 1, 1, 1, 2, 63, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-63-06-01', 1, 2, 1, 2, 63, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-63-07-01', 1, 1, 1, 2, 63, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-63-08-01', 1, 2, 1, 2, 63, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-63-09-01', 1, 1, 1, 2, 63, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-63-10-01', 1, 2, 1, 2, 63, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-63-11-01', 1, 1, 1, 2, 63, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-63-12-01', 1, 2, 1, 2, 63, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-63-13-01', 1, 1, 1, 2, 63, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-63-14-01', 1, 2, 1, 2, 63, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-63-15-01', 1, 1, 1, 2, 63, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-63-16-01', 1, 2, 1, 2, 63, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-63-17-01', 1, 1, 1, 2, 63, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-63-18-01', 1, 2, 1, 2, 63, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-63-19-01', 1, 1, 1, 2, 63, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-63-20-01', 1, 2, 1, 2, 63, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-63-21-01', 1, 1, 1, 2, 63, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-63-22-01', 1, 2, 1, 2, 63, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-64-01-01', 1, 1, 1, 2, 64, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-64-02-01', 1, 2, 1, 2, 64, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-64-03-01', 1, 1, 1, 2, 64, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-64-04-01', 1, 2, 1, 2, 64, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-64-05-01', 1, 1, 1, 2, 64, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-64-06-01', 1, 2, 1, 2, 64, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-64-07-01', 1, 1, 1, 2, 64, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-64-08-01', 1, 2, 1, 2, 64, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-64-09-01', 1, 1, 1, 2, 64, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-64-10-01', 1, 2, 1, 2, 64, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-64-11-01', 1, 1, 1, 2, 64, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-64-12-01', 1, 2, 1, 2, 64, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-64-13-01', 1, 1, 1, 2, 64, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-64-14-01', 1, 2, 1, 2, 64, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-64-15-01', 1, 1, 1, 2, 64, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-64-16-01', 1, 2, 1, 2, 64, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-64-17-01', 1, 1, 1, 2, 64, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-64-18-01', 1, 2, 1, 2, 64, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-64-19-01', 1, 1, 1, 2, 64, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-64-20-01', 1, 2, 1, 2, 64, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-64-21-01', 1, 1, 1, 2, 64, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('02-64-22-01', 1, 2, 1, 2, 64, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-01-01-01', 1, 2, 1, 3, 1, 1, 1, 0, 1, 'ASRS000179'); +INSERT INTO `tbl_app_location` VALUES ('03-01-02-01', 1, 2, 1, 3, 1, 2, 1, 0, 1, 'ASRS000021'); +INSERT INTO `tbl_app_location` VALUES ('03-01-03-01', 1, 2, 1, 3, 1, 3, 1, 0, 1, 'ASRS000093'); +INSERT INTO `tbl_app_location` VALUES ('03-01-04-01', 1, 2, 1, 3, 1, 4, 1, 0, 1, 'ASRS000016'); +INSERT INTO `tbl_app_location` VALUES ('03-01-05-01', 1, 2, 1, 3, 1, 5, 1, 0, 1, 'ASRS000069'); +INSERT INTO `tbl_app_location` VALUES ('03-01-06-01', 1, 2, 1, 3, 1, 6, 1, 0, 1, 'ASRS000102'); +INSERT INTO `tbl_app_location` VALUES ('03-01-07-01', 1, 2, 1, 3, 1, 7, 1, 0, 1, 'ASRS000091'); +INSERT INTO `tbl_app_location` VALUES ('03-01-08-01', 1, 2, 1, 3, 1, 8, 1, 0, 1, 'ASRS000148'); +INSERT INTO `tbl_app_location` VALUES ('03-01-09-01', 1, 2, 1, 3, 1, 9, 1, 0, 0, 'ASRS000075'); +INSERT INTO `tbl_app_location` VALUES ('03-01-10-01', 1, 2, 1, 3, 1, 10, 1, 0, 0, 'ASRS000069'); +INSERT INTO `tbl_app_location` VALUES ('03-01-11-01', 1, 2, 1, 3, 1, 11, 1, 0, 0, 'ASRS000027'); +INSERT INTO `tbl_app_location` VALUES ('03-01-12-01', 1, 2, 1, 3, 1, 12, 1, 0, 0, 'ASRS000197'); +INSERT INTO `tbl_app_location` VALUES ('03-01-13-01', 1, 2, 1, 3, 1, 13, 1, 0, 0, 'ASRS000078'); +INSERT INTO `tbl_app_location` VALUES ('03-01-14-01', 1, 2, 1, 3, 1, 14, 1, 0, 1, 'ASRS000046'); +INSERT INTO `tbl_app_location` VALUES ('03-01-15-01', 1, 2, 1, 3, 1, 15, 1, 0, 0, 'ASRS000107'); +INSERT INTO `tbl_app_location` VALUES ('03-01-16-01', 1, 2, 1, 3, 1, 16, 1, 0, 1, 'ASRS000167'); +INSERT INTO `tbl_app_location` VALUES ('03-01-17-01', 1, 2, 1, 3, 1, 17, 1, 0, 1, 'ASRS000155'); +INSERT INTO `tbl_app_location` VALUES ('03-01-18-01', 1, 2, 1, 3, 1, 18, 1, 0, 1, 'ASRS000111'); +INSERT INTO `tbl_app_location` VALUES ('03-01-19-01', 1, 2, 1, 3, 1, 19, 1, 0, 1, 'ASRS000153'); +INSERT INTO `tbl_app_location` VALUES ('03-01-20-01', 1, 2, 1, 3, 1, 20, 1, 0, 1, 'ASRS000185'); +INSERT INTO `tbl_app_location` VALUES ('03-01-21-01', 1, 2, 1, 3, 1, 21, 1, 0, 1, 'ASRS000145'); +INSERT INTO `tbl_app_location` VALUES ('03-01-22-01', 1, 2, 1, 3, 1, 22, 1, 0, 1, 'ASRS000128'); +INSERT INTO `tbl_app_location` VALUES ('03-02-01-01', 1, 2, 1, 3, 2, 1, 1, 0, 1, 'ASRS000122'); +INSERT INTO `tbl_app_location` VALUES ('03-02-02-01', 1, 2, 1, 3, 2, 2, 1, 0, 1, 'ASRS000005'); +INSERT INTO `tbl_app_location` VALUES ('03-02-03-01', 1, 2, 1, 3, 2, 3, 1, 0, 1, 'ASRS000014'); +INSERT INTO `tbl_app_location` VALUES ('03-02-04-01', 1, 2, 1, 3, 2, 4, 1, 0, 1, 'ASRS000050'); +INSERT INTO `tbl_app_location` VALUES ('03-02-05-01', 1, 2, 1, 3, 2, 5, 1, 0, 1, 'ASRS000052'); +INSERT INTO `tbl_app_location` VALUES ('03-02-06-01', 1, 2, 1, 3, 2, 6, 1, 0, 1, 'ASRS000085'); +INSERT INTO `tbl_app_location` VALUES ('03-02-07-01', 1, 2, 1, 3, 2, 7, 1, 0, 1, 'ASRS000077'); +INSERT INTO `tbl_app_location` VALUES ('03-02-08-01', 1, 2, 1, 3, 2, 8, 1, 0, 1, 'ASRS000056'); +INSERT INTO `tbl_app_location` VALUES ('03-02-09-01', 1, 2, 1, 3, 2, 9, 1, 0, 1, 'ASRS000068'); +INSERT INTO `tbl_app_location` VALUES ('03-02-10-01', 1, 2, 1, 3, 2, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-02-11-01', 1, 2, 1, 3, 2, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-02-12-01', 1, 2, 1, 3, 2, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-02-13-01', 1, 2, 1, 3, 2, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-02-14-01', 1, 2, 1, 3, 2, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-02-15-01', 1, 2, 1, 3, 2, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-02-16-01', 1, 2, 1, 3, 2, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-02-17-01', 1, 2, 1, 3, 2, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-02-18-01', 1, 2, 1, 3, 2, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-02-19-01', 1, 2, 1, 3, 2, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-02-20-01', 1, 2, 1, 3, 2, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-02-21-01', 1, 2, 1, 3, 2, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-02-22-01', 1, 2, 1, 3, 2, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-03-01-01', 1, 2, 1, 3, 3, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-03-02-01', 1, 2, 1, 3, 3, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-03-03-01', 1, 2, 1, 3, 3, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-03-04-01', 1, 2, 1, 3, 3, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-03-05-01', 1, 2, 1, 3, 3, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-03-06-01', 1, 2, 1, 3, 3, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-03-07-01', 1, 2, 1, 3, 3, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-03-08-01', 1, 2, 1, 3, 3, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-03-09-01', 1, 2, 1, 3, 3, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-03-10-01', 1, 2, 1, 3, 3, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-03-11-01', 1, 2, 1, 3, 3, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-03-12-01', 1, 2, 1, 3, 3, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-03-13-01', 1, 2, 1, 3, 3, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-03-14-01', 1, 2, 1, 3, 3, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-03-15-01', 1, 2, 1, 3, 3, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-03-16-01', 1, 2, 1, 3, 3, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-03-17-01', 1, 2, 1, 3, 3, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-03-18-01', 1, 2, 1, 3, 3, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-03-19-01', 1, 2, 1, 3, 3, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-03-20-01', 1, 2, 1, 3, 3, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-03-21-01', 1, 2, 1, 3, 3, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-03-22-01', 1, 2, 1, 3, 3, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-04-01-01', 1, 2, 1, 3, 4, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-04-02-01', 1, 2, 1, 3, 4, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-04-03-01', 1, 2, 1, 3, 4, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-04-04-01', 1, 2, 1, 3, 4, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-04-05-01', 1, 2, 1, 3, 4, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-04-06-01', 1, 2, 1, 3, 4, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-04-07-01', 1, 2, 1, 3, 4, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-04-08-01', 1, 2, 1, 3, 4, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-04-09-01', 1, 2, 1, 3, 4, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-04-10-01', 1, 2, 1, 3, 4, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-04-11-01', 1, 2, 1, 3, 4, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-04-12-01', 1, 2, 1, 3, 4, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-04-13-01', 1, 2, 1, 3, 4, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-04-14-01', 1, 2, 1, 3, 4, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-04-15-01', 1, 2, 1, 3, 4, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-04-16-01', 1, 2, 1, 3, 4, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-04-17-01', 1, 2, 1, 3, 4, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-04-18-01', 1, 2, 1, 3, 4, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-04-19-01', 1, 2, 1, 3, 4, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-04-20-01', 1, 2, 1, 3, 4, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-04-21-01', 1, 2, 1, 3, 4, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-04-22-01', 1, 2, 1, 3, 4, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-05-01-01', 1, 2, 1, 3, 5, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-05-02-01', 1, 2, 1, 3, 5, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-05-03-01', 1, 2, 1, 3, 5, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-05-04-01', 1, 2, 1, 3, 5, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-05-05-01', 1, 2, 1, 3, 5, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-05-06-01', 1, 2, 1, 3, 5, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-05-07-01', 1, 2, 1, 3, 5, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-05-08-01', 1, 2, 1, 3, 5, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-05-09-01', 1, 2, 1, 3, 5, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-05-10-01', 1, 2, 1, 3, 5, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-05-11-01', 1, 2, 1, 3, 5, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-05-12-01', 1, 2, 1, 3, 5, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-05-13-01', 1, 2, 1, 3, 5, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-05-14-01', 1, 2, 1, 3, 5, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-05-15-01', 1, 2, 1, 3, 5, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-05-16-01', 1, 2, 1, 3, 5, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-05-17-01', 1, 2, 1, 3, 5, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-05-18-01', 1, 2, 1, 3, 5, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-05-19-01', 1, 2, 1, 3, 5, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-05-20-01', 1, 2, 1, 3, 5, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-05-21-01', 1, 2, 1, 3, 5, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-05-22-01', 1, 2, 1, 3, 5, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-06-01-01', 1, 2, 1, 3, 6, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-06-02-01', 1, 2, 1, 3, 6, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-06-03-01', 1, 2, 1, 3, 6, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-06-04-01', 1, 2, 1, 3, 6, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-06-05-01', 1, 2, 1, 3, 6, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-06-06-01', 1, 2, 1, 3, 6, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-06-07-01', 1, 2, 1, 3, 6, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-06-08-01', 1, 2, 1, 3, 6, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-06-09-01', 1, 2, 1, 3, 6, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-06-10-01', 1, 2, 1, 3, 6, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-06-11-01', 1, 2, 1, 3, 6, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-06-12-01', 1, 2, 1, 3, 6, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-06-13-01', 1, 2, 1, 3, 6, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-06-14-01', 1, 2, 1, 3, 6, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-06-15-01', 1, 2, 1, 3, 6, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-06-16-01', 1, 2, 1, 3, 6, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-06-17-01', 1, 2, 1, 3, 6, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-06-18-01', 1, 2, 1, 3, 6, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-06-19-01', 1, 2, 1, 3, 6, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-06-20-01', 1, 2, 1, 3, 6, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-06-21-01', 1, 2, 1, 3, 6, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-06-22-01', 1, 2, 1, 3, 6, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-07-01-01', 1, 2, 1, 3, 7, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-07-02-01', 1, 2, 1, 3, 7, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-07-03-01', 1, 2, 1, 3, 7, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-07-04-01', 1, 2, 1, 3, 7, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-07-05-01', 1, 2, 1, 3, 7, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-07-06-01', 1, 2, 1, 3, 7, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-07-07-01', 1, 2, 1, 3, 7, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-07-08-01', 1, 2, 1, 3, 7, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-07-09-01', 1, 2, 1, 3, 7, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-07-10-01', 1, 2, 1, 3, 7, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-07-11-01', 1, 2, 1, 3, 7, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-07-12-01', 1, 2, 1, 3, 7, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-07-13-01', 1, 2, 1, 3, 7, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-07-14-01', 1, 2, 1, 3, 7, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-07-15-01', 1, 2, 1, 3, 7, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-07-16-01', 1, 2, 1, 3, 7, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-07-17-01', 1, 2, 1, 3, 7, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-07-18-01', 1, 2, 1, 3, 7, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-07-19-01', 1, 2, 1, 3, 7, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-07-20-01', 1, 2, 1, 3, 7, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-07-21-01', 1, 2, 1, 3, 7, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-07-22-01', 1, 2, 1, 3, 7, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-08-01-01', 1, 2, 1, 3, 8, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-08-02-01', 1, 2, 1, 3, 8, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-08-03-01', 1, 2, 1, 3, 8, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-08-04-01', 1, 2, 1, 3, 8, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-08-05-01', 1, 2, 1, 3, 8, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-08-06-01', 1, 2, 1, 3, 8, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-08-07-01', 1, 2, 1, 3, 8, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-08-08-01', 1, 2, 1, 3, 8, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-08-09-01', 1, 2, 1, 3, 8, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-08-10-01', 1, 2, 1, 3, 8, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-08-11-01', 1, 2, 1, 3, 8, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-08-12-01', 1, 2, 1, 3, 8, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-08-13-01', 1, 2, 1, 3, 8, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-08-14-01', 1, 2, 1, 3, 8, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-08-15-01', 1, 2, 1, 3, 8, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-08-16-01', 1, 2, 1, 3, 8, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-08-17-01', 1, 2, 1, 3, 8, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-08-18-01', 1, 2, 1, 3, 8, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-08-19-01', 1, 2, 1, 3, 8, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-08-20-01', 1, 2, 1, 3, 8, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-08-21-01', 1, 2, 1, 3, 8, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-08-22-01', 1, 2, 1, 3, 8, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-09-01-01', 1, 2, 1, 3, 9, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-09-02-01', 1, 2, 1, 3, 9, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-09-03-01', 1, 2, 1, 3, 9, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-09-04-01', 1, 2, 1, 3, 9, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-09-05-01', 1, 2, 1, 3, 9, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-09-06-01', 1, 2, 1, 3, 9, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-09-07-01', 1, 2, 1, 3, 9, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-09-08-01', 1, 2, 1, 3, 9, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-09-09-01', 1, 2, 1, 3, 9, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-09-10-01', 1, 2, 1, 3, 9, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-09-11-01', 1, 2, 1, 3, 9, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-09-12-01', 1, 2, 1, 3, 9, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-09-13-01', 1, 2, 1, 3, 9, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-09-14-01', 1, 2, 1, 3, 9, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-09-15-01', 1, 2, 1, 3, 9, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-09-16-01', 1, 2, 1, 3, 9, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-09-17-01', 1, 2, 1, 3, 9, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-09-18-01', 1, 2, 1, 3, 9, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-09-19-01', 1, 2, 1, 3, 9, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-09-20-01', 1, 2, 1, 3, 9, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-09-21-01', 1, 2, 1, 3, 9, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-09-22-01', 1, 2, 1, 3, 9, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-10-01-01', 1, 2, 1, 3, 10, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-10-02-01', 1, 2, 1, 3, 10, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-10-03-01', 1, 2, 1, 3, 10, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-10-04-01', 1, 2, 1, 3, 10, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-10-05-01', 1, 2, 1, 3, 10, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-10-06-01', 1, 2, 1, 3, 10, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-10-07-01', 1, 2, 1, 3, 10, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-10-08-01', 1, 2, 1, 3, 10, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-10-09-01', 1, 2, 1, 3, 10, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-10-10-01', 1, 2, 1, 3, 10, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-10-11-01', 1, 2, 1, 3, 10, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-10-12-01', 1, 2, 1, 3, 10, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-10-13-01', 1, 2, 1, 3, 10, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-10-14-01', 1, 2, 1, 3, 10, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-10-15-01', 1, 2, 1, 3, 10, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-10-16-01', 1, 2, 1, 3, 10, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-10-17-01', 1, 2, 1, 3, 10, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-10-18-01', 1, 2, 1, 3, 10, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-10-19-01', 1, 2, 1, 3, 10, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-10-20-01', 1, 2, 1, 3, 10, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-10-21-01', 1, 2, 1, 3, 10, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-10-22-01', 1, 2, 1, 3, 10, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-11-01-01', 1, 2, 1, 3, 11, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-11-02-01', 1, 2, 1, 3, 11, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-11-03-01', 1, 2, 1, 3, 11, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-11-04-01', 1, 2, 1, 3, 11, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-11-05-01', 1, 2, 1, 3, 11, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-11-06-01', 1, 2, 1, 3, 11, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-11-07-01', 1, 2, 1, 3, 11, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-11-08-01', 1, 2, 1, 3, 11, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-11-09-01', 1, 2, 1, 3, 11, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-11-10-01', 1, 2, 1, 3, 11, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-11-11-01', 1, 2, 1, 3, 11, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-11-12-01', 1, 2, 1, 3, 11, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-11-13-01', 1, 2, 1, 3, 11, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-11-14-01', 1, 2, 1, 3, 11, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-11-15-01', 1, 2, 1, 3, 11, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-11-16-01', 1, 2, 1, 3, 11, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-11-17-01', 1, 2, 1, 3, 11, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-11-18-01', 1, 2, 1, 3, 11, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-11-19-01', 1, 2, 1, 3, 11, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-11-20-01', 1, 2, 1, 3, 11, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-11-21-01', 1, 2, 1, 3, 11, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-11-22-01', 1, 2, 1, 3, 11, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-12-01-01', 1, 2, 1, 3, 12, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-12-02-01', 1, 2, 1, 3, 12, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-12-03-01', 1, 2, 1, 3, 12, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-12-04-01', 1, 2, 1, 3, 12, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-12-05-01', 1, 2, 1, 3, 12, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-12-06-01', 1, 2, 1, 3, 12, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-12-07-01', 1, 2, 1, 3, 12, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-12-08-01', 1, 2, 1, 3, 12, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-12-09-01', 1, 2, 1, 3, 12, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-12-10-01', 1, 2, 1, 3, 12, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-12-11-01', 1, 2, 1, 3, 12, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-12-12-01', 1, 2, 1, 3, 12, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-12-13-01', 1, 2, 1, 3, 12, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-12-14-01', 1, 2, 1, 3, 12, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-12-15-01', 1, 2, 1, 3, 12, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-12-16-01', 1, 2, 1, 3, 12, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-12-17-01', 1, 2, 1, 3, 12, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-12-18-01', 1, 2, 1, 3, 12, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-12-19-01', 1, 2, 1, 3, 12, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-12-20-01', 1, 2, 1, 3, 12, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-12-21-01', 1, 2, 1, 3, 12, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-12-22-01', 1, 2, 1, 3, 12, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-13-01-01', 1, 2, 1, 3, 13, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-13-02-01', 1, 2, 1, 3, 13, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-13-03-01', 1, 2, 1, 3, 13, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-13-04-01', 1, 2, 1, 3, 13, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-13-05-01', 1, 2, 1, 3, 13, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-13-06-01', 1, 2, 1, 3, 13, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-13-07-01', 1, 2, 1, 3, 13, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-13-08-01', 1, 2, 1, 3, 13, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-13-09-01', 1, 2, 1, 3, 13, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-13-10-01', 1, 2, 1, 3, 13, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-13-11-01', 1, 2, 1, 3, 13, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-13-12-01', 1, 2, 1, 3, 13, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-13-13-01', 1, 2, 1, 3, 13, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-13-14-01', 1, 2, 1, 3, 13, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-13-15-01', 1, 2, 1, 3, 13, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-13-16-01', 1, 2, 1, 3, 13, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-13-17-01', 1, 2, 1, 3, 13, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-13-18-01', 1, 2, 1, 3, 13, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-13-19-01', 1, 2, 1, 3, 13, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-13-20-01', 1, 2, 1, 3, 13, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-13-21-01', 1, 2, 1, 3, 13, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-13-22-01', 1, 2, 1, 3, 13, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-14-01-01', 1, 2, 1, 3, 14, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-14-02-01', 1, 2, 1, 3, 14, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-14-03-01', 1, 2, 1, 3, 14, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-14-04-01', 1, 2, 1, 3, 14, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-14-05-01', 1, 2, 1, 3, 14, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-14-06-01', 1, 2, 1, 3, 14, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-14-07-01', 1, 2, 1, 3, 14, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-14-08-01', 1, 2, 1, 3, 14, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-14-09-01', 1, 2, 1, 3, 14, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-14-10-01', 1, 2, 1, 3, 14, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-14-11-01', 1, 2, 1, 3, 14, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-14-12-01', 1, 2, 1, 3, 14, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-14-13-01', 1, 2, 1, 3, 14, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-14-14-01', 1, 2, 1, 3, 14, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-14-15-01', 1, 2, 1, 3, 14, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-14-16-01', 1, 2, 1, 3, 14, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-14-17-01', 1, 2, 1, 3, 14, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-14-18-01', 1, 2, 1, 3, 14, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-14-19-01', 1, 2, 1, 3, 14, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-14-20-01', 1, 2, 1, 3, 14, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-14-21-01', 1, 2, 1, 3, 14, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-14-22-01', 1, 2, 1, 3, 14, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-15-01-01', 1, 2, 1, 3, 15, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-15-02-01', 1, 2, 1, 3, 15, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-15-03-01', 1, 2, 1, 3, 15, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-15-04-01', 1, 2, 1, 3, 15, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-15-05-01', 1, 2, 1, 3, 15, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-15-06-01', 1, 2, 1, 3, 15, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-15-07-01', 1, 2, 1, 3, 15, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-15-08-01', 1, 2, 1, 3, 15, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-15-09-01', 1, 2, 1, 3, 15, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-15-10-01', 1, 2, 1, 3, 15, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-15-11-01', 1, 2, 1, 3, 15, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-15-12-01', 1, 2, 1, 3, 15, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-15-13-01', 1, 2, 1, 3, 15, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-15-14-01', 1, 2, 1, 3, 15, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-15-15-01', 1, 2, 1, 3, 15, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-15-16-01', 1, 2, 1, 3, 15, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-15-17-01', 1, 2, 1, 3, 15, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-15-18-01', 1, 2, 1, 3, 15, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-15-19-01', 1, 2, 1, 3, 15, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-15-20-01', 1, 2, 1, 3, 15, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-15-21-01', 1, 2, 1, 3, 15, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-15-22-01', 1, 2, 1, 3, 15, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-16-01-01', 1, 2, 1, 3, 16, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-16-02-01', 1, 2, 1, 3, 16, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-16-03-01', 1, 2, 1, 3, 16, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-16-04-01', 1, 2, 1, 3, 16, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-16-05-01', 1, 2, 1, 3, 16, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-16-06-01', 1, 2, 1, 3, 16, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-16-07-01', 1, 2, 1, 3, 16, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-16-08-01', 1, 2, 1, 3, 16, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-16-09-01', 1, 2, 1, 3, 16, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-16-10-01', 1, 2, 1, 3, 16, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-16-11-01', 1, 2, 1, 3, 16, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-16-12-01', 1, 2, 1, 3, 16, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-16-13-01', 1, 2, 1, 3, 16, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-16-14-01', 1, 2, 1, 3, 16, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-16-15-01', 1, 2, 1, 3, 16, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-16-16-01', 1, 2, 1, 3, 16, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-16-17-01', 1, 2, 1, 3, 16, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-16-18-01', 1, 2, 1, 3, 16, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-16-19-01', 1, 2, 1, 3, 16, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-16-20-01', 1, 2, 1, 3, 16, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-16-21-01', 1, 2, 1, 3, 16, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-16-22-01', 1, 2, 1, 3, 16, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-17-01-01', 1, 2, 1, 3, 17, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-17-02-01', 1, 2, 1, 3, 17, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-17-03-01', 1, 2, 1, 3, 17, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-17-04-01', 1, 2, 1, 3, 17, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-17-05-01', 1, 2, 1, 3, 17, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-17-06-01', 1, 2, 1, 3, 17, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-17-07-01', 1, 2, 1, 3, 17, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-17-08-01', 1, 2, 1, 3, 17, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-17-09-01', 1, 2, 1, 3, 17, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-17-10-01', 1, 2, 1, 3, 17, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-17-11-01', 1, 2, 1, 3, 17, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-17-12-01', 1, 2, 1, 3, 17, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-17-13-01', 1, 2, 1, 3, 17, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-17-14-01', 1, 2, 1, 3, 17, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-17-15-01', 1, 2, 1, 3, 17, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-17-16-01', 1, 2, 1, 3, 17, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-17-17-01', 1, 2, 1, 3, 17, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-17-18-01', 1, 2, 1, 3, 17, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-17-19-01', 1, 2, 1, 3, 17, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-17-20-01', 1, 2, 1, 3, 17, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-17-21-01', 1, 2, 1, 3, 17, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-17-22-01', 1, 2, 1, 3, 17, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-18-01-01', 1, 2, 1, 3, 18, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-18-02-01', 1, 2, 1, 3, 18, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-18-03-01', 1, 2, 1, 3, 18, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-18-04-01', 1, 2, 1, 3, 18, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-18-05-01', 1, 2, 1, 3, 18, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-18-06-01', 1, 2, 1, 3, 18, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-18-07-01', 1, 2, 1, 3, 18, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-18-08-01', 1, 2, 1, 3, 18, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-18-09-01', 1, 2, 1, 3, 18, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-18-10-01', 1, 2, 1, 3, 18, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-18-11-01', 1, 2, 1, 3, 18, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-18-12-01', 1, 2, 1, 3, 18, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-18-13-01', 1, 2, 1, 3, 18, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-18-14-01', 1, 2, 1, 3, 18, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-18-15-01', 1, 2, 1, 3, 18, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-18-16-01', 1, 2, 1, 3, 18, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-18-17-01', 1, 2, 1, 3, 18, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-18-18-01', 1, 2, 1, 3, 18, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-18-19-01', 1, 2, 1, 3, 18, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-18-20-01', 1, 2, 1, 3, 18, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-18-21-01', 1, 2, 1, 3, 18, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-18-22-01', 1, 2, 1, 3, 18, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-19-01-01', 1, 2, 1, 3, 19, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-19-02-01', 1, 2, 1, 3, 19, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-19-03-01', 1, 2, 1, 3, 19, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-19-04-01', 1, 2, 1, 3, 19, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-19-05-01', 1, 2, 1, 3, 19, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-19-06-01', 1, 2, 1, 3, 19, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-19-07-01', 1, 2, 1, 3, 19, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-19-08-01', 1, 2, 1, 3, 19, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-19-09-01', 1, 2, 1, 3, 19, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-19-10-01', 1, 2, 1, 3, 19, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-19-11-01', 1, 2, 1, 3, 19, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-19-12-01', 1, 2, 1, 3, 19, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-19-13-01', 1, 2, 1, 3, 19, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-19-14-01', 1, 2, 1, 3, 19, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-19-15-01', 1, 2, 1, 3, 19, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-19-16-01', 1, 2, 1, 3, 19, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-19-17-01', 1, 2, 1, 3, 19, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-19-18-01', 1, 2, 1, 3, 19, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-19-19-01', 1, 2, 1, 3, 19, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-19-20-01', 1, 2, 1, 3, 19, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-19-21-01', 1, 2, 1, 3, 19, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-19-22-01', 1, 2, 1, 3, 19, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-20-01-01', 1, 2, 1, 3, 20, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-20-02-01', 1, 2, 1, 3, 20, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-20-03-01', 1, 2, 1, 3, 20, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-20-04-01', 1, 2, 1, 3, 20, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-20-05-01', 1, 2, 1, 3, 20, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-20-06-01', 1, 2, 1, 3, 20, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-20-07-01', 1, 2, 1, 3, 20, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-20-08-01', 1, 2, 1, 3, 20, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-20-09-01', 1, 2, 1, 3, 20, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-20-10-01', 1, 2, 1, 3, 20, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-20-11-01', 1, 2, 1, 3, 20, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-20-12-01', 1, 2, 1, 3, 20, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-20-13-01', 1, 2, 1, 3, 20, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-20-14-01', 1, 2, 1, 3, 20, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-20-15-01', 1, 2, 1, 3, 20, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-20-16-01', 1, 2, 1, 3, 20, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-20-17-01', 1, 2, 1, 3, 20, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-20-18-01', 1, 2, 1, 3, 20, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-20-19-01', 1, 2, 1, 3, 20, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-20-20-01', 1, 2, 1, 3, 20, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-20-21-01', 1, 2, 1, 3, 20, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-20-22-01', 1, 2, 1, 3, 20, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-21-01-01', 1, 2, 1, 3, 21, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-21-02-01', 1, 2, 1, 3, 21, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-21-03-01', 1, 2, 1, 3, 21, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-21-04-01', 1, 2, 1, 3, 21, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-21-05-01', 1, 2, 1, 3, 21, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-21-06-01', 1, 2, 1, 3, 21, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-21-07-01', 1, 2, 1, 3, 21, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-21-08-01', 1, 2, 1, 3, 21, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-21-09-01', 1, 2, 1, 3, 21, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-21-10-01', 1, 2, 1, 3, 21, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-21-11-01', 1, 2, 1, 3, 21, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-21-12-01', 1, 2, 1, 3, 21, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-21-13-01', 1, 2, 1, 3, 21, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-21-14-01', 1, 2, 1, 3, 21, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-21-15-01', 1, 2, 1, 3, 21, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-21-16-01', 1, 2, 1, 3, 21, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-21-17-01', 1, 2, 1, 3, 21, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-21-18-01', 1, 2, 1, 3, 21, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-21-19-01', 1, 2, 1, 3, 21, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-21-20-01', 1, 2, 1, 3, 21, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-21-21-01', 1, 2, 1, 3, 21, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-21-22-01', 1, 2, 1, 3, 21, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-22-01-01', 1, 2, 1, 3, 22, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-22-02-01', 1, 2, 1, 3, 22, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-22-03-01', 1, 2, 1, 3, 22, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-22-04-01', 1, 2, 1, 3, 22, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-22-05-01', 1, 2, 1, 3, 22, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-22-06-01', 1, 2, 1, 3, 22, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-22-07-01', 1, 2, 1, 3, 22, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-22-08-01', 1, 2, 1, 3, 22, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-22-09-01', 1, 2, 1, 3, 22, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-22-10-01', 1, 2, 1, 3, 22, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-22-11-01', 1, 2, 1, 3, 22, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-22-12-01', 1, 2, 1, 3, 22, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-22-13-01', 1, 2, 1, 3, 22, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-22-14-01', 1, 2, 1, 3, 22, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-22-15-01', 1, 2, 1, 3, 22, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-22-16-01', 1, 2, 1, 3, 22, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-22-17-01', 1, 2, 1, 3, 22, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-22-18-01', 1, 2, 1, 3, 22, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-22-19-01', 1, 2, 1, 3, 22, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-22-20-01', 1, 2, 1, 3, 22, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-22-21-01', 1, 2, 1, 3, 22, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-22-22-01', 1, 2, 1, 3, 22, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-23-01-01', 1, 2, 1, 3, 23, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-23-02-01', 1, 2, 1, 3, 23, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-23-03-01', 1, 2, 1, 3, 23, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-23-04-01', 1, 2, 1, 3, 23, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-23-05-01', 1, 2, 1, 3, 23, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-23-06-01', 1, 2, 1, 3, 23, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-23-07-01', 1, 2, 1, 3, 23, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-23-08-01', 1, 2, 1, 3, 23, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-23-09-01', 1, 2, 1, 3, 23, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-23-10-01', 1, 2, 1, 3, 23, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-23-11-01', 1, 2, 1, 3, 23, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-23-12-01', 1, 2, 1, 3, 23, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-23-13-01', 1, 2, 1, 3, 23, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-23-14-01', 1, 2, 1, 3, 23, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-23-15-01', 1, 2, 1, 3, 23, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-23-16-01', 1, 2, 1, 3, 23, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-23-17-01', 1, 2, 1, 3, 23, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-23-18-01', 1, 2, 1, 3, 23, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-23-19-01', 1, 2, 1, 3, 23, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-23-20-01', 1, 2, 1, 3, 23, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-23-21-01', 1, 2, 1, 3, 23, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-23-22-01', 1, 2, 1, 3, 23, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-24-01-01', 1, 2, 1, 3, 24, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-24-02-01', 1, 2, 1, 3, 24, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-24-03-01', 1, 2, 1, 3, 24, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-24-04-01', 1, 2, 1, 3, 24, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-24-05-01', 1, 2, 1, 3, 24, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-24-06-01', 1, 2, 1, 3, 24, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-24-07-01', 1, 2, 1, 3, 24, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-24-08-01', 1, 2, 1, 3, 24, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-24-09-01', 1, 2, 1, 3, 24, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-24-10-01', 1, 2, 1, 3, 24, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-24-11-01', 1, 2, 1, 3, 24, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-24-12-01', 1, 2, 1, 3, 24, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-24-13-01', 1, 2, 1, 3, 24, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-24-14-01', 1, 2, 1, 3, 24, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-24-15-01', 1, 2, 1, 3, 24, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-24-16-01', 1, 2, 1, 3, 24, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-24-17-01', 1, 2, 1, 3, 24, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-24-18-01', 1, 2, 1, 3, 24, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-24-19-01', 1, 2, 1, 3, 24, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-24-20-01', 1, 2, 1, 3, 24, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-24-21-01', 1, 2, 1, 3, 24, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-24-22-01', 1, 2, 1, 3, 24, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-25-01-01', 1, 2, 1, 3, 25, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-25-02-01', 1, 2, 1, 3, 25, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-25-03-01', 1, 2, 1, 3, 25, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-25-04-01', 1, 2, 1, 3, 25, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-25-05-01', 1, 2, 1, 3, 25, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-25-06-01', 1, 2, 1, 3, 25, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-25-07-01', 1, 2, 1, 3, 25, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-25-08-01', 1, 2, 1, 3, 25, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-25-09-01', 1, 2, 1, 3, 25, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-25-10-01', 1, 2, 1, 3, 25, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-25-11-01', 1, 2, 1, 3, 25, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-25-12-01', 1, 2, 1, 3, 25, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-25-13-01', 1, 2, 1, 3, 25, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-25-14-01', 1, 2, 1, 3, 25, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-25-15-01', 1, 2, 1, 3, 25, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-25-16-01', 1, 2, 1, 3, 25, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-25-17-01', 1, 2, 1, 3, 25, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-25-18-01', 1, 2, 1, 3, 25, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-25-19-01', 1, 2, 1, 3, 25, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-25-20-01', 1, 2, 1, 3, 25, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-25-21-01', 1, 2, 1, 3, 25, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-25-22-01', 1, 2, 1, 3, 25, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-26-01-01', 1, 2, 1, 3, 26, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-26-02-01', 1, 2, 1, 3, 26, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-26-03-01', 1, 2, 1, 3, 26, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-26-04-01', 1, 2, 1, 3, 26, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-26-05-01', 1, 2, 1, 3, 26, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-26-06-01', 1, 2, 1, 3, 26, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-26-07-01', 1, 2, 1, 3, 26, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-26-08-01', 1, 2, 1, 3, 26, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-26-09-01', 1, 2, 1, 3, 26, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-26-10-01', 1, 2, 1, 3, 26, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-26-11-01', 1, 2, 1, 3, 26, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-26-12-01', 1, 2, 1, 3, 26, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-26-13-01', 1, 2, 1, 3, 26, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-26-14-01', 1, 2, 1, 3, 26, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-26-15-01', 1, 2, 1, 3, 26, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-26-16-01', 1, 2, 1, 3, 26, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-26-17-01', 1, 2, 1, 3, 26, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-26-18-01', 1, 2, 1, 3, 26, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-26-19-01', 1, 2, 1, 3, 26, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-26-20-01', 1, 2, 1, 3, 26, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-26-21-01', 1, 2, 1, 3, 26, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-26-22-01', 1, 2, 1, 3, 26, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-27-01-01', 1, 2, 1, 3, 27, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-27-02-01', 1, 2, 1, 3, 27, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-27-03-01', 1, 2, 1, 3, 27, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-27-04-01', 1, 2, 1, 3, 27, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-27-05-01', 1, 2, 1, 3, 27, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-27-06-01', 1, 2, 1, 3, 27, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-27-07-01', 1, 2, 1, 3, 27, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-27-08-01', 1, 2, 1, 3, 27, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-27-09-01', 1, 2, 1, 3, 27, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-27-10-01', 1, 2, 1, 3, 27, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-27-11-01', 1, 2, 1, 3, 27, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-27-12-01', 1, 2, 1, 3, 27, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-27-13-01', 1, 2, 1, 3, 27, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-27-14-01', 1, 2, 1, 3, 27, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-27-15-01', 1, 2, 1, 3, 27, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-27-16-01', 1, 2, 1, 3, 27, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-27-17-01', 1, 2, 1, 3, 27, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-27-18-01', 1, 2, 1, 3, 27, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-27-19-01', 1, 2, 1, 3, 27, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-27-20-01', 1, 2, 1, 3, 27, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-27-21-01', 1, 2, 1, 3, 27, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-27-22-01', 1, 2, 1, 3, 27, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-28-01-01', 1, 2, 1, 3, 28, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-28-02-01', 1, 2, 1, 3, 28, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-28-03-01', 1, 2, 1, 3, 28, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-28-04-01', 1, 2, 1, 3, 28, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-28-05-01', 1, 2, 1, 3, 28, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-28-06-01', 1, 2, 1, 3, 28, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-28-07-01', 1, 2, 1, 3, 28, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-28-08-01', 1, 2, 1, 3, 28, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-28-09-01', 1, 2, 1, 3, 28, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-28-10-01', 1, 2, 1, 3, 28, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-28-11-01', 1, 2, 1, 3, 28, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-28-12-01', 1, 2, 1, 3, 28, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-28-13-01', 1, 2, 1, 3, 28, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-28-14-01', 1, 2, 1, 3, 28, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-28-15-01', 1, 2, 1, 3, 28, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-28-16-01', 1, 2, 1, 3, 28, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-28-17-01', 1, 2, 1, 3, 28, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-28-18-01', 1, 2, 1, 3, 28, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-28-19-01', 1, 2, 1, 3, 28, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-28-20-01', 1, 2, 1, 3, 28, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-28-21-01', 1, 2, 1, 3, 28, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-28-22-01', 1, 2, 1, 3, 28, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-29-01-01', 1, 2, 1, 3, 29, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-29-02-01', 1, 2, 1, 3, 29, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-29-03-01', 1, 2, 1, 3, 29, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-29-04-01', 1, 2, 1, 3, 29, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-29-05-01', 1, 2, 1, 3, 29, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-29-06-01', 1, 2, 1, 3, 29, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-29-07-01', 1, 2, 1, 3, 29, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-29-08-01', 1, 2, 1, 3, 29, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-29-09-01', 1, 2, 1, 3, 29, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-29-10-01', 1, 2, 1, 3, 29, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-29-11-01', 1, 2, 1, 3, 29, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-29-12-01', 1, 2, 1, 3, 29, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-29-13-01', 1, 2, 1, 3, 29, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-29-14-01', 1, 2, 1, 3, 29, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-29-15-01', 1, 2, 1, 3, 29, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-29-16-01', 1, 2, 1, 3, 29, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-29-17-01', 1, 2, 1, 3, 29, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-29-18-01', 1, 2, 1, 3, 29, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-29-19-01', 1, 2, 1, 3, 29, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-29-20-01', 1, 2, 1, 3, 29, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-29-21-01', 1, 2, 1, 3, 29, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-29-22-01', 1, 2, 1, 3, 29, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-30-01-01', 1, 2, 1, 3, 30, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-30-02-01', 1, 2, 1, 3, 30, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-30-03-01', 1, 2, 1, 3, 30, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-30-04-01', 1, 2, 1, 3, 30, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-30-05-01', 1, 2, 1, 3, 30, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-30-06-01', 1, 2, 1, 3, 30, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-30-07-01', 1, 2, 1, 3, 30, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-30-08-01', 1, 2, 1, 3, 30, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-30-09-01', 1, 2, 1, 3, 30, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-30-10-01', 1, 2, 1, 3, 30, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-30-11-01', 1, 2, 1, 3, 30, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-30-12-01', 1, 2, 1, 3, 30, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-30-13-01', 1, 2, 1, 3, 30, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-30-14-01', 1, 2, 1, 3, 30, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-30-15-01', 1, 2, 1, 3, 30, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-30-16-01', 1, 2, 1, 3, 30, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-30-17-01', 1, 2, 1, 3, 30, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-30-18-01', 1, 2, 1, 3, 30, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-30-19-01', 1, 2, 1, 3, 30, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-30-20-01', 1, 2, 1, 3, 30, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-30-21-01', 1, 2, 1, 3, 30, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-30-22-01', 1, 2, 1, 3, 30, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-31-01-01', 1, 2, 1, 3, 31, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-31-02-01', 1, 2, 1, 3, 31, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-31-03-01', 1, 2, 1, 3, 31, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-31-04-01', 1, 2, 1, 3, 31, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-31-05-01', 1, 2, 1, 3, 31, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-31-06-01', 1, 2, 1, 3, 31, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-31-07-01', 1, 2, 1, 3, 31, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-31-08-01', 1, 2, 1, 3, 31, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-31-09-01', 1, 2, 1, 3, 31, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-31-10-01', 1, 2, 1, 3, 31, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-31-11-01', 1, 2, 1, 3, 31, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-31-12-01', 1, 2, 1, 3, 31, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-31-13-01', 1, 2, 1, 3, 31, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-31-14-01', 1, 2, 1, 3, 31, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-31-15-01', 1, 2, 1, 3, 31, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-31-16-01', 1, 2, 1, 3, 31, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-31-17-01', 1, 2, 1, 3, 31, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-31-18-01', 1, 2, 1, 3, 31, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-31-19-01', 1, 2, 1, 3, 31, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-31-20-01', 1, 2, 1, 3, 31, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-31-21-01', 1, 2, 1, 3, 31, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-31-22-01', 1, 2, 1, 3, 31, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-32-01-01', 1, 2, 1, 3, 32, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-32-02-01', 1, 2, 1, 3, 32, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-32-03-01', 1, 2, 1, 3, 32, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-32-04-01', 1, 2, 1, 3, 32, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-32-05-01', 1, 2, 1, 3, 32, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-32-06-01', 1, 2, 1, 3, 32, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-32-07-01', 1, 2, 1, 3, 32, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-32-08-01', 1, 2, 1, 3, 32, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-32-09-01', 1, 2, 1, 3, 32, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-32-10-01', 1, 2, 1, 3, 32, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-32-11-01', 1, 2, 1, 3, 32, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-32-12-01', 1, 2, 1, 3, 32, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-32-13-01', 1, 2, 1, 3, 32, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-32-14-01', 1, 2, 1, 3, 32, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-32-15-01', 1, 2, 1, 3, 32, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-32-16-01', 1, 2, 1, 3, 32, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-32-17-01', 1, 2, 1, 3, 32, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-32-18-01', 1, 2, 1, 3, 32, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-32-19-01', 1, 2, 1, 3, 32, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-32-20-01', 1, 2, 1, 3, 32, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-32-21-01', 1, 2, 1, 3, 32, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-32-22-01', 1, 2, 1, 3, 32, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-33-01-01', 1, 2, 1, 3, 33, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-33-02-01', 1, 2, 1, 3, 33, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-33-03-01', 1, 2, 1, 3, 33, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-33-04-01', 1, 2, 1, 3, 33, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-33-05-01', 1, 2, 1, 3, 33, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-33-06-01', 1, 2, 1, 3, 33, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-33-07-01', 1, 2, 1, 3, 33, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-33-08-01', 1, 2, 1, 3, 33, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-33-09-01', 1, 2, 1, 3, 33, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-33-10-01', 1, 2, 1, 3, 33, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-33-11-01', 1, 2, 1, 3, 33, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-33-12-01', 1, 2, 1, 3, 33, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-33-13-01', 1, 2, 1, 3, 33, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-33-14-01', 1, 2, 1, 3, 33, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-33-15-01', 1, 2, 1, 3, 33, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-33-16-01', 1, 2, 1, 3, 33, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-33-17-01', 1, 2, 1, 3, 33, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-33-18-01', 1, 2, 1, 3, 33, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-33-19-01', 1, 2, 1, 3, 33, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-33-20-01', 1, 2, 1, 3, 33, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-33-21-01', 1, 2, 1, 3, 33, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-33-22-01', 1, 2, 1, 3, 33, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-34-01-01', 1, 2, 1, 3, 34, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-34-02-01', 1, 2, 1, 3, 34, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-34-03-01', 1, 2, 1, 3, 34, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-34-04-01', 1, 2, 1, 3, 34, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-34-05-01', 1, 2, 1, 3, 34, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-34-06-01', 1, 2, 1, 3, 34, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-34-07-01', 1, 2, 1, 3, 34, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-34-08-01', 1, 2, 1, 3, 34, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-34-09-01', 1, 2, 1, 3, 34, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-34-10-01', 1, 2, 1, 3, 34, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-34-11-01', 1, 2, 1, 3, 34, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-34-12-01', 1, 2, 1, 3, 34, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-34-13-01', 1, 2, 1, 3, 34, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-34-14-01', 1, 2, 1, 3, 34, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-34-15-01', 1, 2, 1, 3, 34, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-34-16-01', 1, 2, 1, 3, 34, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-34-17-01', 1, 2, 1, 3, 34, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-34-18-01', 1, 2, 1, 3, 34, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-34-19-01', 1, 2, 1, 3, 34, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-34-20-01', 1, 2, 1, 3, 34, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-34-21-01', 1, 2, 1, 3, 34, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-34-22-01', 1, 2, 1, 3, 34, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-35-01-01', 1, 2, 1, 3, 35, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-35-02-01', 1, 2, 1, 3, 35, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-35-03-01', 1, 2, 1, 3, 35, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-35-04-01', 1, 2, 1, 3, 35, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-35-05-01', 1, 2, 1, 3, 35, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-35-06-01', 1, 2, 1, 3, 35, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-35-07-01', 1, 2, 1, 3, 35, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-35-08-01', 1, 2, 1, 3, 35, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-35-09-01', 1, 2, 1, 3, 35, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-35-10-01', 1, 2, 1, 3, 35, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-35-11-01', 1, 2, 1, 3, 35, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-35-12-01', 1, 2, 1, 3, 35, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-35-13-01', 1, 2, 1, 3, 35, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-35-14-01', 1, 2, 1, 3, 35, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-35-15-01', 1, 2, 1, 3, 35, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-35-16-01', 1, 2, 1, 3, 35, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-35-17-01', 1, 2, 1, 3, 35, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-35-18-01', 1, 2, 1, 3, 35, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-35-19-01', 1, 2, 1, 3, 35, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-35-20-01', 1, 2, 1, 3, 35, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-35-21-01', 1, 2, 1, 3, 35, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-35-22-01', 1, 2, 1, 3, 35, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-36-01-01', 1, 2, 1, 3, 36, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-36-02-01', 1, 2, 1, 3, 36, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-36-03-01', 1, 2, 1, 3, 36, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-36-04-01', 1, 2, 1, 3, 36, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-36-05-01', 1, 2, 1, 3, 36, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-36-06-01', 1, 2, 1, 3, 36, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-36-07-01', 1, 2, 1, 3, 36, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-36-08-01', 1, 2, 1, 3, 36, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-36-09-01', 1, 2, 1, 3, 36, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-36-10-01', 1, 2, 1, 3, 36, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-36-11-01', 1, 2, 1, 3, 36, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-36-12-01', 1, 2, 1, 3, 36, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-36-13-01', 1, 2, 1, 3, 36, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-36-14-01', 1, 2, 1, 3, 36, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-36-15-01', 1, 2, 1, 3, 36, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-36-16-01', 1, 2, 1, 3, 36, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-36-17-01', 1, 2, 1, 3, 36, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-36-18-01', 1, 2, 1, 3, 36, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-36-19-01', 1, 2, 1, 3, 36, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-36-20-01', 1, 2, 1, 3, 36, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-36-21-01', 1, 2, 1, 3, 36, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-36-22-01', 1, 2, 1, 3, 36, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-37-01-01', 1, 2, 1, 3, 37, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-37-02-01', 1, 2, 1, 3, 37, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-37-03-01', 1, 2, 1, 3, 37, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-37-04-01', 1, 2, 1, 3, 37, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-37-05-01', 1, 2, 1, 3, 37, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-37-06-01', 1, 2, 1, 3, 37, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-37-07-01', 1, 2, 1, 3, 37, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-37-08-01', 1, 2, 1, 3, 37, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-37-09-01', 1, 2, 1, 3, 37, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-37-10-01', 1, 2, 1, 3, 37, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-37-11-01', 1, 2, 1, 3, 37, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-37-12-01', 1, 2, 1, 3, 37, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-37-13-01', 1, 2, 1, 3, 37, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-37-14-01', 1, 2, 1, 3, 37, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-37-15-01', 1, 2, 1, 3, 37, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-37-16-01', 1, 2, 1, 3, 37, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-37-17-01', 1, 2, 1, 3, 37, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-37-18-01', 1, 2, 1, 3, 37, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-37-19-01', 1, 2, 1, 3, 37, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-37-20-01', 1, 2, 1, 3, 37, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-37-21-01', 1, 2, 1, 3, 37, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-37-22-01', 1, 2, 1, 3, 37, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-38-01-01', 1, 2, 1, 3, 38, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-38-02-01', 1, 2, 1, 3, 38, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-38-03-01', 1, 2, 1, 3, 38, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-38-04-01', 1, 2, 1, 3, 38, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-38-05-01', 1, 2, 1, 3, 38, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-38-06-01', 1, 2, 1, 3, 38, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-38-07-01', 1, 2, 1, 3, 38, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-38-08-01', 1, 2, 1, 3, 38, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-38-09-01', 1, 2, 1, 3, 38, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-38-10-01', 1, 2, 1, 3, 38, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-38-11-01', 1, 2, 1, 3, 38, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-38-12-01', 1, 2, 1, 3, 38, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-38-13-01', 1, 2, 1, 3, 38, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-38-14-01', 1, 2, 1, 3, 38, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-38-15-01', 1, 2, 1, 3, 38, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-38-16-01', 1, 2, 1, 3, 38, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-38-17-01', 1, 2, 1, 3, 38, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-38-18-01', 1, 2, 1, 3, 38, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-38-19-01', 1, 2, 1, 3, 38, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-38-20-01', 1, 2, 1, 3, 38, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-38-21-01', 1, 2, 1, 3, 38, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-38-22-01', 1, 2, 1, 3, 38, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-39-01-01', 1, 2, 1, 3, 39, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-39-02-01', 1, 2, 1, 3, 39, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-39-03-01', 1, 2, 1, 3, 39, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-39-04-01', 1, 2, 1, 3, 39, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-39-05-01', 1, 2, 1, 3, 39, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-39-06-01', 1, 2, 1, 3, 39, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-39-07-01', 1, 2, 1, 3, 39, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-39-08-01', 1, 2, 1, 3, 39, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-39-09-01', 1, 2, 1, 3, 39, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-39-10-01', 1, 2, 1, 3, 39, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-39-11-01', 1, 2, 1, 3, 39, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-39-12-01', 1, 2, 1, 3, 39, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-39-13-01', 1, 2, 1, 3, 39, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-39-14-01', 1, 2, 1, 3, 39, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-39-15-01', 1, 2, 1, 3, 39, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-39-16-01', 1, 2, 1, 3, 39, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-39-17-01', 1, 2, 1, 3, 39, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-39-18-01', 1, 2, 1, 3, 39, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-39-19-01', 1, 2, 1, 3, 39, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-39-20-01', 1, 2, 1, 3, 39, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-39-21-01', 1, 2, 1, 3, 39, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-39-22-01', 1, 2, 1, 3, 39, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-40-01-01', 1, 2, 1, 3, 40, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-40-02-01', 1, 2, 1, 3, 40, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-40-03-01', 1, 2, 1, 3, 40, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-40-04-01', 1, 2, 1, 3, 40, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-40-05-01', 1, 2, 1, 3, 40, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-40-06-01', 1, 2, 1, 3, 40, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-40-07-01', 1, 2, 1, 3, 40, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-40-08-01', 1, 2, 1, 3, 40, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-40-09-01', 1, 2, 1, 3, 40, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-40-10-01', 1, 2, 1, 3, 40, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-40-11-01', 1, 2, 1, 3, 40, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-40-12-01', 1, 2, 1, 3, 40, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-40-13-01', 1, 2, 1, 3, 40, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-40-14-01', 1, 2, 1, 3, 40, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-40-15-01', 1, 2, 1, 3, 40, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-40-16-01', 1, 2, 1, 3, 40, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-40-17-01', 1, 2, 1, 3, 40, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-40-18-01', 1, 2, 1, 3, 40, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-40-19-01', 1, 2, 1, 3, 40, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-40-20-01', 1, 2, 1, 3, 40, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-40-21-01', 1, 2, 1, 3, 40, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-40-22-01', 1, 2, 1, 3, 40, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-41-01-01', 1, 2, 1, 3, 41, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-41-02-01', 1, 2, 1, 3, 41, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-41-03-01', 1, 2, 1, 3, 41, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-41-04-01', 1, 2, 1, 3, 41, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-41-05-01', 1, 2, 1, 3, 41, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-41-06-01', 1, 2, 1, 3, 41, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-41-07-01', 1, 2, 1, 3, 41, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-41-08-01', 1, 2, 1, 3, 41, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-41-09-01', 1, 2, 1, 3, 41, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-41-10-01', 1, 2, 1, 3, 41, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-41-11-01', 1, 2, 1, 3, 41, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-41-12-01', 1, 2, 1, 3, 41, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-41-13-01', 1, 2, 1, 3, 41, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-41-14-01', 1, 2, 1, 3, 41, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-41-15-01', 1, 2, 1, 3, 41, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-41-16-01', 1, 2, 1, 3, 41, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-41-17-01', 1, 2, 1, 3, 41, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-41-18-01', 1, 2, 1, 3, 41, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-41-19-01', 1, 2, 1, 3, 41, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-41-20-01', 1, 2, 1, 3, 41, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-41-21-01', 1, 2, 1, 3, 41, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-41-22-01', 1, 2, 1, 3, 41, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-42-01-01', 1, 2, 1, 3, 42, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-42-02-01', 1, 2, 1, 3, 42, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-42-03-01', 1, 2, 1, 3, 42, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-42-04-01', 1, 2, 1, 3, 42, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-42-05-01', 1, 2, 1, 3, 42, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-42-06-01', 1, 2, 1, 3, 42, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-42-07-01', 1, 2, 1, 3, 42, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-42-08-01', 1, 2, 1, 3, 42, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-42-09-01', 1, 2, 1, 3, 42, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-42-10-01', 1, 2, 1, 3, 42, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-42-11-01', 1, 2, 1, 3, 42, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-42-12-01', 1, 2, 1, 3, 42, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-42-13-01', 1, 2, 1, 3, 42, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-42-14-01', 1, 2, 1, 3, 42, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-42-15-01', 1, 2, 1, 3, 42, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-42-16-01', 1, 2, 1, 3, 42, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-42-17-01', 1, 2, 1, 3, 42, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-42-18-01', 1, 2, 1, 3, 42, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-42-19-01', 1, 2, 1, 3, 42, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-42-20-01', 1, 2, 1, 3, 42, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-42-21-01', 1, 2, 1, 3, 42, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-42-22-01', 1, 2, 1, 3, 42, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-43-01-01', 1, 2, 1, 3, 43, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-43-02-01', 1, 2, 1, 3, 43, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-43-03-01', 1, 2, 1, 3, 43, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-43-04-01', 1, 2, 1, 3, 43, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-43-05-01', 1, 2, 1, 3, 43, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-43-06-01', 1, 2, 1, 3, 43, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-43-07-01', 1, 2, 1, 3, 43, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-43-08-01', 1, 2, 1, 3, 43, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-43-09-01', 1, 2, 1, 3, 43, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-43-10-01', 1, 2, 1, 3, 43, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-43-11-01', 1, 2, 1, 3, 43, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-43-12-01', 1, 2, 1, 3, 43, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-43-13-01', 1, 2, 1, 3, 43, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-43-14-01', 1, 2, 1, 3, 43, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-43-15-01', 1, 2, 1, 3, 43, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-43-16-01', 1, 2, 1, 3, 43, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-43-17-01', 1, 2, 1, 3, 43, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-43-18-01', 1, 2, 1, 3, 43, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-43-19-01', 1, 2, 1, 3, 43, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-43-20-01', 1, 2, 1, 3, 43, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-43-21-01', 1, 2, 1, 3, 43, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-43-22-01', 1, 2, 1, 3, 43, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-44-01-01', 1, 2, 1, 3, 44, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-44-02-01', 1, 2, 1, 3, 44, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-44-03-01', 1, 2, 1, 3, 44, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-44-04-01', 1, 2, 1, 3, 44, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-44-05-01', 1, 2, 1, 3, 44, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-44-06-01', 1, 2, 1, 3, 44, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-44-07-01', 1, 2, 1, 3, 44, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-44-08-01', 1, 2, 1, 3, 44, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-44-09-01', 1, 2, 1, 3, 44, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-44-10-01', 1, 2, 1, 3, 44, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-44-11-01', 1, 2, 1, 3, 44, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-44-12-01', 1, 2, 1, 3, 44, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-44-13-01', 1, 2, 1, 3, 44, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-44-14-01', 1, 2, 1, 3, 44, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-44-15-01', 1, 2, 1, 3, 44, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-44-16-01', 1, 2, 1, 3, 44, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-44-17-01', 1, 2, 1, 3, 44, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-44-18-01', 1, 2, 1, 3, 44, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-44-19-01', 1, 2, 1, 3, 44, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-44-20-01', 1, 2, 1, 3, 44, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-44-21-01', 1, 2, 1, 3, 44, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-44-22-01', 1, 2, 1, 3, 44, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-45-01-01', 1, 2, 1, 3, 45, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-45-02-01', 1, 2, 1, 3, 45, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-45-03-01', 1, 2, 1, 3, 45, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-45-04-01', 1, 2, 1, 3, 45, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-45-05-01', 1, 2, 1, 3, 45, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-45-06-01', 1, 2, 1, 3, 45, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-45-07-01', 1, 2, 1, 3, 45, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-45-08-01', 1, 2, 1, 3, 45, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-45-09-01', 1, 2, 1, 3, 45, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-45-10-01', 1, 2, 1, 3, 45, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-45-11-01', 1, 2, 1, 3, 45, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-45-12-01', 1, 2, 1, 3, 45, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-45-13-01', 1, 2, 1, 3, 45, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-45-14-01', 1, 2, 1, 3, 45, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-45-15-01', 1, 2, 1, 3, 45, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-45-16-01', 1, 2, 1, 3, 45, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-45-17-01', 1, 2, 1, 3, 45, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-45-18-01', 1, 2, 1, 3, 45, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-45-19-01', 1, 2, 1, 3, 45, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-45-20-01', 1, 2, 1, 3, 45, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-45-21-01', 1, 2, 1, 3, 45, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-45-22-01', 1, 2, 1, 3, 45, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-46-01-01', 1, 2, 1, 3, 46, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-46-02-01', 1, 2, 1, 3, 46, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-46-03-01', 1, 2, 1, 3, 46, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-46-04-01', 1, 2, 1, 3, 46, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-46-05-01', 1, 2, 1, 3, 46, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-46-06-01', 1, 2, 1, 3, 46, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-46-07-01', 1, 2, 1, 3, 46, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-46-08-01', 1, 2, 1, 3, 46, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-46-09-01', 1, 2, 1, 3, 46, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-46-10-01', 1, 2, 1, 3, 46, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-46-11-01', 1, 2, 1, 3, 46, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-46-12-01', 1, 2, 1, 3, 46, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-46-13-01', 1, 2, 1, 3, 46, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-46-14-01', 1, 2, 1, 3, 46, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-46-15-01', 1, 2, 1, 3, 46, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-46-16-01', 1, 2, 1, 3, 46, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-46-17-01', 1, 2, 1, 3, 46, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-46-18-01', 1, 2, 1, 3, 46, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-46-19-01', 1, 2, 1, 3, 46, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-46-20-01', 1, 2, 1, 3, 46, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-46-21-01', 1, 2, 1, 3, 46, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-46-22-01', 1, 2, 1, 3, 46, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-47-01-01', 1, 2, 1, 3, 47, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-47-02-01', 1, 2, 1, 3, 47, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-47-03-01', 1, 2, 1, 3, 47, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-47-04-01', 1, 2, 1, 3, 47, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-47-05-01', 1, 2, 1, 3, 47, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-47-06-01', 1, 2, 1, 3, 47, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-47-07-01', 1, 2, 1, 3, 47, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-47-08-01', 1, 2, 1, 3, 47, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-47-09-01', 1, 2, 1, 3, 47, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-47-10-01', 1, 2, 1, 3, 47, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-47-11-01', 1, 2, 1, 3, 47, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-47-12-01', 1, 2, 1, 3, 47, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-47-13-01', 1, 2, 1, 3, 47, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-47-14-01', 1, 2, 1, 3, 47, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-47-15-01', 1, 2, 1, 3, 47, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-47-16-01', 1, 2, 1, 3, 47, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-47-17-01', 1, 2, 1, 3, 47, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-47-18-01', 1, 2, 1, 3, 47, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-47-19-01', 1, 2, 1, 3, 47, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-47-20-01', 1, 2, 1, 3, 47, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-47-21-01', 1, 2, 1, 3, 47, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-47-22-01', 1, 2, 1, 3, 47, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-48-01-01', 1, 2, 1, 3, 48, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-48-02-01', 1, 2, 1, 3, 48, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-48-03-01', 1, 2, 1, 3, 48, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-48-04-01', 1, 2, 1, 3, 48, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-48-05-01', 1, 2, 1, 3, 48, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-48-06-01', 1, 2, 1, 3, 48, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-48-07-01', 1, 2, 1, 3, 48, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-48-08-01', 1, 2, 1, 3, 48, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-48-09-01', 1, 2, 1, 3, 48, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-48-10-01', 1, 2, 1, 3, 48, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-48-11-01', 1, 2, 1, 3, 48, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-48-12-01', 1, 2, 1, 3, 48, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-48-13-01', 1, 2, 1, 3, 48, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-48-14-01', 1, 2, 1, 3, 48, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-48-15-01', 1, 2, 1, 3, 48, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-48-16-01', 1, 2, 1, 3, 48, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-48-17-01', 1, 2, 1, 3, 48, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-48-18-01', 1, 2, 1, 3, 48, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-48-19-01', 1, 2, 1, 3, 48, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-48-20-01', 1, 2, 1, 3, 48, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-48-21-01', 1, 2, 1, 3, 48, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-48-22-01', 1, 2, 1, 3, 48, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-49-01-01', 1, 2, 1, 3, 49, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-49-02-01', 1, 2, 1, 3, 49, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-49-03-01', 1, 2, 1, 3, 49, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-49-04-01', 1, 2, 1, 3, 49, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-49-05-01', 1, 2, 1, 3, 49, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-49-06-01', 1, 2, 1, 3, 49, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-49-07-01', 1, 2, 1, 3, 49, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-49-08-01', 1, 2, 1, 3, 49, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-49-09-01', 1, 2, 1, 3, 49, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-49-10-01', 1, 2, 1, 3, 49, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-49-11-01', 1, 2, 1, 3, 49, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-49-12-01', 1, 2, 1, 3, 49, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-49-13-01', 1, 2, 1, 3, 49, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-49-14-01', 1, 2, 1, 3, 49, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-49-15-01', 1, 2, 1, 3, 49, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-49-16-01', 1, 2, 1, 3, 49, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-49-17-01', 1, 2, 1, 3, 49, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-49-18-01', 1, 2, 1, 3, 49, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-49-19-01', 1, 2, 1, 3, 49, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-49-20-01', 1, 2, 1, 3, 49, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-49-21-01', 1, 2, 1, 3, 49, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-49-22-01', 1, 2, 1, 3, 49, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-50-01-01', 1, 2, 1, 3, 50, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-50-02-01', 1, 2, 1, 3, 50, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-50-03-01', 1, 2, 1, 3, 50, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-50-04-01', 1, 2, 1, 3, 50, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-50-05-01', 1, 2, 1, 3, 50, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-50-06-01', 1, 2, 1, 3, 50, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-50-07-01', 1, 2, 1, 3, 50, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-50-08-01', 1, 2, 1, 3, 50, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-50-09-01', 1, 2, 1, 3, 50, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-50-10-01', 1, 2, 1, 3, 50, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-50-11-01', 1, 2, 1, 3, 50, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-50-12-01', 1, 2, 1, 3, 50, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-50-13-01', 1, 2, 1, 3, 50, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-50-14-01', 1, 2, 1, 3, 50, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-50-15-01', 1, 2, 1, 3, 50, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-50-16-01', 1, 2, 1, 3, 50, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-50-17-01', 1, 2, 1, 3, 50, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-50-18-01', 1, 2, 1, 3, 50, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-50-19-01', 1, 2, 1, 3, 50, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-50-20-01', 1, 2, 1, 3, 50, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-50-21-01', 1, 2, 1, 3, 50, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-50-22-01', 1, 2, 1, 3, 50, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-51-01-01', 1, 2, 1, 3, 51, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-51-02-01', 1, 2, 1, 3, 51, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-51-03-01', 1, 2, 1, 3, 51, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-51-04-01', 1, 2, 1, 3, 51, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-51-05-01', 1, 2, 1, 3, 51, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-51-06-01', 1, 2, 1, 3, 51, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-51-07-01', 1, 2, 1, 3, 51, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-51-08-01', 1, 2, 1, 3, 51, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-51-09-01', 1, 2, 1, 3, 51, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-51-10-01', 1, 2, 1, 3, 51, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-51-11-01', 1, 2, 1, 3, 51, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-51-12-01', 1, 2, 1, 3, 51, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-51-13-01', 1, 2, 1, 3, 51, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-51-14-01', 1, 2, 1, 3, 51, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-51-15-01', 1, 2, 1, 3, 51, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-51-16-01', 1, 2, 1, 3, 51, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-51-17-01', 1, 2, 1, 3, 51, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-51-18-01', 1, 2, 1, 3, 51, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-51-19-01', 1, 2, 1, 3, 51, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-51-20-01', 1, 2, 1, 3, 51, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-51-21-01', 1, 2, 1, 3, 51, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-51-22-01', 1, 2, 1, 3, 51, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-52-01-01', 1, 2, 1, 3, 52, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-52-02-01', 1, 2, 1, 3, 52, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-52-03-01', 1, 2, 1, 3, 52, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-52-04-01', 1, 2, 1, 3, 52, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-52-05-01', 1, 2, 1, 3, 52, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-52-06-01', 1, 2, 1, 3, 52, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-52-07-01', 1, 2, 1, 3, 52, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-52-08-01', 1, 2, 1, 3, 52, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-52-09-01', 1, 2, 1, 3, 52, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-52-10-01', 1, 2, 1, 3, 52, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-52-11-01', 1, 2, 1, 3, 52, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-52-12-01', 1, 2, 1, 3, 52, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-52-13-01', 1, 2, 1, 3, 52, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-52-14-01', 1, 2, 1, 3, 52, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-52-15-01', 1, 2, 1, 3, 52, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-52-16-01', 1, 2, 1, 3, 52, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-52-17-01', 1, 2, 1, 3, 52, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-52-18-01', 1, 2, 1, 3, 52, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-52-19-01', 1, 2, 1, 3, 52, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-52-20-01', 1, 2, 1, 3, 52, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-52-21-01', 1, 2, 1, 3, 52, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-52-22-01', 1, 2, 1, 3, 52, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-53-01-01', 1, 2, 1, 3, 53, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-53-02-01', 1, 2, 1, 3, 53, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-53-03-01', 1, 2, 1, 3, 53, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-53-04-01', 1, 2, 1, 3, 53, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-53-05-01', 1, 2, 1, 3, 53, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-53-06-01', 1, 2, 1, 3, 53, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-53-07-01', 1, 2, 1, 3, 53, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-53-08-01', 1, 2, 1, 3, 53, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-53-09-01', 1, 2, 1, 3, 53, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-53-10-01', 1, 2, 1, 3, 53, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-53-11-01', 1, 2, 1, 3, 53, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-53-12-01', 1, 2, 1, 3, 53, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-53-13-01', 1, 2, 1, 3, 53, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-53-14-01', 1, 2, 1, 3, 53, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-53-15-01', 1, 2, 1, 3, 53, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-53-16-01', 1, 2, 1, 3, 53, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-53-17-01', 1, 2, 1, 3, 53, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-53-18-01', 1, 2, 1, 3, 53, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-53-19-01', 1, 2, 1, 3, 53, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-53-20-01', 1, 2, 1, 3, 53, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-53-21-01', 1, 2, 1, 3, 53, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-53-22-01', 1, 2, 1, 3, 53, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-54-01-01', 1, 2, 1, 3, 54, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-54-02-01', 1, 2, 1, 3, 54, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-54-03-01', 1, 2, 1, 3, 54, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-54-04-01', 1, 2, 1, 3, 54, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-54-05-01', 1, 2, 1, 3, 54, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-54-06-01', 1, 2, 1, 3, 54, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-54-07-01', 1, 2, 1, 3, 54, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-54-08-01', 1, 2, 1, 3, 54, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-54-09-01', 1, 2, 1, 3, 54, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-54-10-01', 1, 2, 1, 3, 54, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-54-11-01', 1, 2, 1, 3, 54, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-54-12-01', 1, 2, 1, 3, 54, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-54-13-01', 1, 2, 1, 3, 54, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-54-14-01', 1, 2, 1, 3, 54, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-54-15-01', 1, 2, 1, 3, 54, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-54-16-01', 1, 2, 1, 3, 54, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-54-17-01', 1, 2, 1, 3, 54, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-54-18-01', 1, 2, 1, 3, 54, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-54-19-01', 1, 2, 1, 3, 54, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-54-20-01', 1, 2, 1, 3, 54, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-54-21-01', 1, 2, 1, 3, 54, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-54-22-01', 1, 2, 1, 3, 54, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-55-01-01', 1, 2, 1, 3, 55, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-55-02-01', 1, 2, 1, 3, 55, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-55-03-01', 1, 2, 1, 3, 55, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-55-04-01', 1, 2, 1, 3, 55, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-55-05-01', 1, 2, 1, 3, 55, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-55-06-01', 1, 2, 1, 3, 55, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-55-07-01', 1, 2, 1, 3, 55, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-55-08-01', 1, 2, 1, 3, 55, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-55-09-01', 1, 2, 1, 3, 55, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-55-10-01', 1, 2, 1, 3, 55, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-55-11-01', 1, 2, 1, 3, 55, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-55-12-01', 1, 2, 1, 3, 55, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-55-13-01', 1, 2, 1, 3, 55, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-55-14-01', 1, 2, 1, 3, 55, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-55-15-01', 1, 2, 1, 3, 55, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-55-16-01', 1, 2, 1, 3, 55, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-55-17-01', 1, 2, 1, 3, 55, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-55-18-01', 1, 2, 1, 3, 55, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-55-19-01', 1, 2, 1, 3, 55, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-55-20-01', 1, 2, 1, 3, 55, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-55-21-01', 1, 2, 1, 3, 55, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-55-22-01', 1, 2, 1, 3, 55, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-56-01-01', 1, 2, 1, 3, 56, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-56-02-01', 1, 2, 1, 3, 56, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-56-03-01', 1, 2, 1, 3, 56, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-56-04-01', 1, 2, 1, 3, 56, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-56-05-01', 1, 2, 1, 3, 56, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-56-06-01', 1, 2, 1, 3, 56, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-56-07-01', 1, 2, 1, 3, 56, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-56-08-01', 1, 2, 1, 3, 56, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-56-09-01', 1, 2, 1, 3, 56, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-56-10-01', 1, 2, 1, 3, 56, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-56-11-01', 1, 2, 1, 3, 56, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-56-12-01', 1, 2, 1, 3, 56, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-56-13-01', 1, 2, 1, 3, 56, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-56-14-01', 1, 2, 1, 3, 56, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-56-15-01', 1, 2, 1, 3, 56, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-56-16-01', 1, 2, 1, 3, 56, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-56-17-01', 1, 2, 1, 3, 56, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-56-18-01', 1, 2, 1, 3, 56, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-56-19-01', 1, 2, 1, 3, 56, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-56-20-01', 1, 2, 1, 3, 56, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-56-21-01', 1, 2, 1, 3, 56, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-56-22-01', 1, 2, 1, 3, 56, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-57-01-01', 1, 2, 1, 3, 57, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-57-02-01', 1, 2, 1, 3, 57, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-57-03-01', 1, 2, 1, 3, 57, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-57-04-01', 1, 2, 1, 3, 57, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-57-05-01', 1, 2, 1, 3, 57, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-57-06-01', 1, 2, 1, 3, 57, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-57-07-01', 1, 2, 1, 3, 57, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-57-08-01', 1, 2, 1, 3, 57, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-57-09-01', 1, 2, 1, 3, 57, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-57-10-01', 1, 2, 1, 3, 57, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-57-11-01', 1, 2, 1, 3, 57, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-57-12-01', 1, 2, 1, 3, 57, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-57-13-01', 1, 2, 1, 3, 57, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-57-14-01', 1, 2, 1, 3, 57, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-57-15-01', 1, 2, 1, 3, 57, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-57-16-01', 1, 2, 1, 3, 57, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-57-17-01', 1, 2, 1, 3, 57, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-57-18-01', 1, 2, 1, 3, 57, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-57-19-01', 1, 2, 1, 3, 57, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-57-20-01', 1, 2, 1, 3, 57, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-57-21-01', 1, 2, 1, 3, 57, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-57-22-01', 1, 2, 1, 3, 57, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-58-01-01', 1, 2, 1, 3, 58, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-58-02-01', 1, 2, 1, 3, 58, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-58-03-01', 1, 2, 1, 3, 58, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-58-04-01', 1, 2, 1, 3, 58, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-58-05-01', 1, 2, 1, 3, 58, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-58-06-01', 1, 2, 1, 3, 58, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-58-07-01', 1, 2, 1, 3, 58, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-58-08-01', 1, 2, 1, 3, 58, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-58-09-01', 1, 2, 1, 3, 58, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-58-10-01', 1, 2, 1, 3, 58, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-58-11-01', 1, 2, 1, 3, 58, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-58-12-01', 1, 2, 1, 3, 58, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-58-13-01', 1, 2, 1, 3, 58, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-58-14-01', 1, 2, 1, 3, 58, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-58-15-01', 1, 2, 1, 3, 58, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-58-16-01', 1, 2, 1, 3, 58, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-58-17-01', 1, 2, 1, 3, 58, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-58-18-01', 1, 2, 1, 3, 58, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-58-19-01', 1, 2, 1, 3, 58, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-58-20-01', 1, 2, 1, 3, 58, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-58-21-01', 1, 2, 1, 3, 58, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-58-22-01', 1, 2, 1, 3, 58, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-59-01-01', 1, 2, 1, 3, 59, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-59-02-01', 1, 2, 1, 3, 59, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-59-03-01', 1, 2, 1, 3, 59, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-59-04-01', 1, 2, 1, 3, 59, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-59-05-01', 1, 2, 1, 3, 59, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-59-06-01', 1, 2, 1, 3, 59, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-59-07-01', 1, 2, 1, 3, 59, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-59-08-01', 1, 2, 1, 3, 59, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-59-09-01', 1, 2, 1, 3, 59, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-59-10-01', 1, 2, 1, 3, 59, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-59-11-01', 1, 2, 1, 3, 59, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-59-12-01', 1, 2, 1, 3, 59, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-59-13-01', 1, 2, 1, 3, 59, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-59-14-01', 1, 2, 1, 3, 59, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-59-15-01', 1, 2, 1, 3, 59, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-59-16-01', 1, 2, 1, 3, 59, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-59-17-01', 1, 2, 1, 3, 59, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-59-18-01', 1, 2, 1, 3, 59, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-59-19-01', 1, 2, 1, 3, 59, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-59-20-01', 1, 2, 1, 3, 59, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-59-21-01', 1, 2, 1, 3, 59, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-59-22-01', 1, 2, 1, 3, 59, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-60-01-01', 1, 2, 1, 3, 60, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-60-02-01', 1, 2, 1, 3, 60, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-60-03-01', 1, 2, 1, 3, 60, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-60-04-01', 1, 2, 1, 3, 60, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-60-05-01', 1, 2, 1, 3, 60, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-60-06-01', 1, 2, 1, 3, 60, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-60-07-01', 1, 2, 1, 3, 60, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-60-08-01', 1, 2, 1, 3, 60, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-60-09-01', 1, 2, 1, 3, 60, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-60-10-01', 1, 2, 1, 3, 60, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-60-11-01', 1, 2, 1, 3, 60, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-60-12-01', 1, 2, 1, 3, 60, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-60-13-01', 1, 2, 1, 3, 60, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-60-14-01', 1, 2, 1, 3, 60, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-60-15-01', 1, 2, 1, 3, 60, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-60-16-01', 1, 2, 1, 3, 60, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-60-17-01', 1, 2, 1, 3, 60, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-60-18-01', 1, 2, 1, 3, 60, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-60-19-01', 1, 2, 1, 3, 60, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-60-20-01', 1, 2, 1, 3, 60, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-60-21-01', 1, 2, 1, 3, 60, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-60-22-01', 1, 2, 1, 3, 60, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-61-01-01', 1, 2, 1, 3, 61, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-61-02-01', 1, 2, 1, 3, 61, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-61-03-01', 1, 2, 1, 3, 61, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-61-04-01', 1, 2, 1, 3, 61, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-61-05-01', 1, 2, 1, 3, 61, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-61-06-01', 1, 2, 1, 3, 61, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-61-07-01', 1, 2, 1, 3, 61, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-61-08-01', 1, 2, 1, 3, 61, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-61-09-01', 1, 2, 1, 3, 61, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-61-10-01', 1, 2, 1, 3, 61, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-61-11-01', 1, 2, 1, 3, 61, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-61-12-01', 1, 2, 1, 3, 61, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-61-13-01', 1, 2, 1, 3, 61, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-61-14-01', 1, 2, 1, 3, 61, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-61-15-01', 1, 2, 1, 3, 61, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-61-16-01', 1, 2, 1, 3, 61, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-61-17-01', 1, 2, 1, 3, 61, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-61-18-01', 1, 2, 1, 3, 61, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-61-19-01', 1, 2, 1, 3, 61, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-61-20-01', 1, 2, 1, 3, 61, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-61-21-01', 1, 2, 1, 3, 61, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-61-22-01', 1, 2, 1, 3, 61, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-62-01-01', 1, 2, 1, 3, 62, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-62-02-01', 1, 2, 1, 3, 62, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-62-03-01', 1, 2, 1, 3, 62, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-62-04-01', 1, 2, 1, 3, 62, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-62-05-01', 1, 2, 1, 3, 62, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-62-06-01', 1, 2, 1, 3, 62, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-62-07-01', 1, 2, 1, 3, 62, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-62-08-01', 1, 2, 1, 3, 62, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-62-09-01', 1, 2, 1, 3, 62, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-62-10-01', 1, 2, 1, 3, 62, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-62-11-01', 1, 2, 1, 3, 62, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-62-12-01', 1, 2, 1, 3, 62, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-62-13-01', 1, 2, 1, 3, 62, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-62-14-01', 1, 2, 1, 3, 62, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-62-15-01', 1, 2, 1, 3, 62, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-62-16-01', 1, 2, 1, 3, 62, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-62-17-01', 1, 2, 1, 3, 62, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-62-18-01', 1, 2, 1, 3, 62, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-62-19-01', 1, 2, 1, 3, 62, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-62-20-01', 1, 2, 1, 3, 62, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-62-21-01', 1, 2, 1, 3, 62, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-62-22-01', 1, 2, 1, 3, 62, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-63-01-01', 1, 2, 1, 3, 63, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-63-02-01', 1, 2, 1, 3, 63, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-63-03-01', 1, 2, 1, 3, 63, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-63-04-01', 1, 2, 1, 3, 63, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-63-05-01', 1, 2, 1, 3, 63, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-63-06-01', 1, 2, 1, 3, 63, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-63-07-01', 1, 2, 1, 3, 63, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-63-08-01', 1, 2, 1, 3, 63, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-63-09-01', 1, 2, 1, 3, 63, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-63-10-01', 1, 2, 1, 3, 63, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-63-11-01', 1, 2, 1, 3, 63, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-63-12-01', 1, 2, 1, 3, 63, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-63-13-01', 1, 2, 1, 3, 63, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-63-14-01', 1, 2, 1, 3, 63, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-63-15-01', 1, 2, 1, 3, 63, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-63-16-01', 1, 2, 1, 3, 63, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-63-17-01', 1, 2, 1, 3, 63, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-63-18-01', 1, 2, 1, 3, 63, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-63-19-01', 1, 2, 1, 3, 63, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-63-20-01', 1, 2, 1, 3, 63, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-63-21-01', 1, 2, 1, 3, 63, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-63-22-01', 1, 2, 1, 3, 63, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-64-01-01', 1, 2, 1, 3, 64, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-64-02-01', 1, 2, 1, 3, 64, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-64-03-01', 1, 2, 1, 3, 64, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-64-04-01', 1, 2, 1, 3, 64, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-64-05-01', 1, 2, 1, 3, 64, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-64-06-01', 1, 2, 1, 3, 64, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-64-07-01', 1, 2, 1, 3, 64, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-64-08-01', 1, 2, 1, 3, 64, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-64-09-01', 1, 2, 1, 3, 64, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-64-10-01', 1, 2, 1, 3, 64, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-64-11-01', 1, 2, 1, 3, 64, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-64-12-01', 1, 2, 1, 3, 64, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-64-13-01', 1, 2, 1, 3, 64, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-64-14-01', 1, 2, 1, 3, 64, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-64-15-01', 1, 2, 1, 3, 64, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-64-16-01', 1, 2, 1, 3, 64, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-64-17-01', 1, 2, 1, 3, 64, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-64-18-01', 1, 2, 1, 3, 64, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-64-19-01', 1, 2, 1, 3, 64, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-64-20-01', 1, 2, 1, 3, 64, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-64-21-01', 1, 2, 1, 3, 64, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('03-64-22-01', 1, 2, 1, 3, 64, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-01-01-01', 1, 3, 1, 4, 1, 1, 1, 0, 1, 'ASRS000001'); +INSERT INTO `tbl_app_location` VALUES ('04-01-02-01', 1, 3, 1, 4, 1, 2, 1, 0, 1, 'ASRS000087'); +INSERT INTO `tbl_app_location` VALUES ('04-01-03-01', 1, 3, 1, 4, 1, 3, 1, 0, 1, 'ASRS000097'); +INSERT INTO `tbl_app_location` VALUES ('04-01-04-01', 1, 3, 1, 4, 1, 4, 1, 0, 1, 'ASRS000099'); +INSERT INTO `tbl_app_location` VALUES ('04-01-05-01', 1, 3, 1, 4, 1, 5, 1, 0, 1, 'ASRS000055'); +INSERT INTO `tbl_app_location` VALUES ('04-01-06-01', 1, 3, 1, 4, 1, 6, 1, 0, 1, 'ASRS000073'); +INSERT INTO `tbl_app_location` VALUES ('04-01-07-01', 1, 3, 1, 4, 1, 7, 1, 0, 1, 'ASRS000041'); +INSERT INTO `tbl_app_location` VALUES ('04-01-08-01', 1, 3, 1, 4, 1, 8, 1, 0, 1, 'ASRS000047'); +INSERT INTO `tbl_app_location` VALUES ('04-01-09-01', 1, 3, 1, 4, 1, 9, 1, 0, 1, 'ASRS000193'); +INSERT INTO `tbl_app_location` VALUES ('04-01-10-01', 1, 3, 1, 4, 1, 10, 1, 0, 1, 'ASRS000028'); +INSERT INTO `tbl_app_location` VALUES ('04-01-11-01', 1, 3, 1, 4, 1, 11, 1, 0, 1, 'ASRS000197'); +INSERT INTO `tbl_app_location` VALUES ('04-01-12-01', 1, 3, 1, 4, 1, 12, 1, 0, 1, 'ASRS000075'); +INSERT INTO `tbl_app_location` VALUES ('04-01-13-01', 1, 3, 1, 4, 1, 13, 1, 0, 1, 'ASRS000120'); +INSERT INTO `tbl_app_location` VALUES ('04-01-14-01', 1, 3, 1, 4, 1, 14, 1, 0, 1, 'ASRS000109'); +INSERT INTO `tbl_app_location` VALUES ('04-01-15-01', 1, 3, 1, 4, 1, 15, 1, 0, 1, 'ASRS000110'); +INSERT INTO `tbl_app_location` VALUES ('04-01-16-01', 1, 3, 1, 4, 1, 16, 1, 0, 1, 'ASRS000178'); +INSERT INTO `tbl_app_location` VALUES ('04-01-17-01', 1, 3, 1, 4, 1, 17, 1, 0, 1, 'ASRS000182'); +INSERT INTO `tbl_app_location` VALUES ('04-01-18-01', 1, 3, 1, 4, 1, 18, 1, 0, 1, 'ASRS000142'); +INSERT INTO `tbl_app_location` VALUES ('04-01-19-01', 1, 3, 1, 4, 1, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-01-20-01', 1, 3, 1, 4, 1, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-01-21-01', 1, 3, 1, 4, 1, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-01-22-01', 1, 3, 1, 4, 1, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-02-01-01', 1, 3, 1, 4, 2, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-02-02-01', 1, 3, 1, 4, 2, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-02-03-01', 1, 3, 1, 4, 2, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-02-04-01', 1, 3, 1, 4, 2, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-02-05-01', 1, 3, 1, 4, 2, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-02-06-01', 1, 3, 1, 4, 2, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-02-07-01', 1, 3, 1, 4, 2, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-02-08-01', 1, 3, 1, 4, 2, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-02-09-01', 1, 3, 1, 4, 2, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-02-10-01', 1, 3, 1, 4, 2, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-02-11-01', 1, 3, 1, 4, 2, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-02-12-01', 1, 3, 1, 4, 2, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-02-13-01', 1, 3, 1, 4, 2, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-02-14-01', 1, 3, 1, 4, 2, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-02-15-01', 1, 3, 1, 4, 2, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-02-16-01', 1, 3, 1, 4, 2, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-02-17-01', 1, 3, 1, 4, 2, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-02-18-01', 1, 3, 1, 4, 2, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-02-19-01', 1, 3, 1, 4, 2, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-02-20-01', 1, 3, 1, 4, 2, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-02-21-01', 1, 3, 1, 4, 2, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-02-22-01', 1, 3, 1, 4, 2, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-03-01-01', 1, 3, 1, 4, 3, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-03-02-01', 1, 3, 1, 4, 3, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-03-03-01', 1, 3, 1, 4, 3, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-03-04-01', 1, 3, 1, 4, 3, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-03-05-01', 1, 3, 1, 4, 3, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-03-06-01', 1, 3, 1, 4, 3, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-03-07-01', 1, 3, 1, 4, 3, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-03-08-01', 1, 3, 1, 4, 3, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-03-09-01', 1, 3, 1, 4, 3, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-03-10-01', 1, 3, 1, 4, 3, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-03-11-01', 1, 3, 1, 4, 3, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-03-12-01', 1, 3, 1, 4, 3, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-03-13-01', 1, 3, 1, 4, 3, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-03-14-01', 1, 3, 1, 4, 3, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-03-15-01', 1, 3, 1, 4, 3, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-03-16-01', 1, 3, 1, 4, 3, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-03-17-01', 1, 3, 1, 4, 3, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-03-18-01', 1, 3, 1, 4, 3, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-03-19-01', 1, 3, 1, 4, 3, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-03-20-01', 1, 3, 1, 4, 3, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-03-21-01', 1, 3, 1, 4, 3, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-03-22-01', 1, 3, 1, 4, 3, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-04-01-01', 1, 3, 1, 4, 4, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-04-02-01', 1, 3, 1, 4, 4, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-04-03-01', 1, 3, 1, 4, 4, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-04-04-01', 1, 3, 1, 4, 4, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-04-05-01', 1, 3, 1, 4, 4, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-04-06-01', 1, 3, 1, 4, 4, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-04-07-01', 1, 3, 1, 4, 4, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-04-08-01', 1, 3, 1, 4, 4, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-04-09-01', 1, 3, 1, 4, 4, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-04-10-01', 1, 3, 1, 4, 4, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-04-11-01', 1, 3, 1, 4, 4, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-04-12-01', 1, 3, 1, 4, 4, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-04-13-01', 1, 3, 1, 4, 4, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-04-14-01', 1, 3, 1, 4, 4, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-04-15-01', 1, 3, 1, 4, 4, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-04-16-01', 1, 3, 1, 4, 4, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-04-17-01', 1, 3, 1, 4, 4, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-04-18-01', 1, 3, 1, 4, 4, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-04-19-01', 1, 3, 1, 4, 4, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-04-20-01', 1, 3, 1, 4, 4, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-04-21-01', 1, 3, 1, 4, 4, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-04-22-01', 1, 3, 1, 4, 4, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-05-01-01', 1, 3, 1, 4, 5, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-05-02-01', 1, 3, 1, 4, 5, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-05-03-01', 1, 3, 1, 4, 5, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-05-04-01', 1, 3, 1, 4, 5, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-05-05-01', 1, 3, 1, 4, 5, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-05-06-01', 1, 3, 1, 4, 5, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-05-07-01', 1, 3, 1, 4, 5, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-05-08-01', 1, 3, 1, 4, 5, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-05-09-01', 1, 3, 1, 4, 5, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-05-10-01', 1, 3, 1, 4, 5, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-05-11-01', 1, 3, 1, 4, 5, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-05-12-01', 1, 3, 1, 4, 5, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-05-13-01', 1, 3, 1, 4, 5, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-05-14-01', 1, 3, 1, 4, 5, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-05-15-01', 1, 3, 1, 4, 5, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-05-16-01', 1, 3, 1, 4, 5, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-05-17-01', 1, 3, 1, 4, 5, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-05-18-01', 1, 3, 1, 4, 5, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-05-19-01', 1, 3, 1, 4, 5, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-05-20-01', 1, 3, 1, 4, 5, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-05-21-01', 1, 3, 1, 4, 5, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-05-22-01', 1, 3, 1, 4, 5, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-06-01-01', 1, 3, 1, 4, 6, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-06-02-01', 1, 3, 1, 4, 6, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-06-03-01', 1, 3, 1, 4, 6, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-06-04-01', 1, 3, 1, 4, 6, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-06-05-01', 1, 3, 1, 4, 6, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-06-06-01', 1, 3, 1, 4, 6, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-06-07-01', 1, 3, 1, 4, 6, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-06-08-01', 1, 3, 1, 4, 6, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-06-09-01', 1, 3, 1, 4, 6, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-06-10-01', 1, 3, 1, 4, 6, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-06-11-01', 1, 3, 1, 4, 6, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-06-12-01', 1, 3, 1, 4, 6, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-06-13-01', 1, 3, 1, 4, 6, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-06-14-01', 1, 3, 1, 4, 6, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-06-15-01', 1, 3, 1, 4, 6, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-06-16-01', 1, 3, 1, 4, 6, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-06-17-01', 1, 3, 1, 4, 6, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-06-18-01', 1, 3, 1, 4, 6, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-06-19-01', 1, 3, 1, 4, 6, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-06-20-01', 1, 3, 1, 4, 6, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-06-21-01', 1, 3, 1, 4, 6, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-06-22-01', 1, 3, 1, 4, 6, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-07-01-01', 1, 3, 1, 4, 7, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-07-02-01', 1, 3, 1, 4, 7, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-07-03-01', 1, 3, 1, 4, 7, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-07-04-01', 1, 3, 1, 4, 7, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-07-05-01', 1, 3, 1, 4, 7, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-07-06-01', 1, 3, 1, 4, 7, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-07-07-01', 1, 3, 1, 4, 7, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-07-08-01', 1, 3, 1, 4, 7, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-07-09-01', 1, 3, 1, 4, 7, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-07-10-01', 1, 3, 1, 4, 7, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-07-11-01', 1, 3, 1, 4, 7, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-07-12-01', 1, 3, 1, 4, 7, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-07-13-01', 1, 3, 1, 4, 7, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-07-14-01', 1, 3, 1, 4, 7, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-07-15-01', 1, 3, 1, 4, 7, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-07-16-01', 1, 3, 1, 4, 7, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-07-17-01', 1, 3, 1, 4, 7, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-07-18-01', 1, 3, 1, 4, 7, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-07-19-01', 1, 3, 1, 4, 7, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-07-20-01', 1, 3, 1, 4, 7, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-07-21-01', 1, 3, 1, 4, 7, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-07-22-01', 1, 3, 1, 4, 7, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-08-01-01', 1, 3, 1, 4, 8, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-08-02-01', 1, 3, 1, 4, 8, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-08-03-01', 1, 3, 1, 4, 8, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-08-04-01', 1, 3, 1, 4, 8, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-08-05-01', 1, 3, 1, 4, 8, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-08-06-01', 1, 3, 1, 4, 8, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-08-07-01', 1, 3, 1, 4, 8, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-08-08-01', 1, 3, 1, 4, 8, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-08-09-01', 1, 3, 1, 4, 8, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-08-10-01', 1, 3, 1, 4, 8, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-08-11-01', 1, 3, 1, 4, 8, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-08-12-01', 1, 3, 1, 4, 8, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-08-13-01', 1, 3, 1, 4, 8, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-08-14-01', 1, 3, 1, 4, 8, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-08-15-01', 1, 3, 1, 4, 8, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-08-16-01', 1, 3, 1, 4, 8, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-08-17-01', 1, 3, 1, 4, 8, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-08-18-01', 1, 3, 1, 4, 8, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-08-19-01', 1, 3, 1, 4, 8, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-08-20-01', 1, 3, 1, 4, 8, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-08-21-01', 1, 3, 1, 4, 8, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-08-22-01', 1, 3, 1, 4, 8, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-09-01-01', 1, 3, 1, 4, 9, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-09-02-01', 1, 3, 1, 4, 9, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-09-03-01', 1, 3, 1, 4, 9, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-09-04-01', 1, 3, 1, 4, 9, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-09-05-01', 1, 3, 1, 4, 9, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-09-06-01', 1, 3, 1, 4, 9, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-09-07-01', 1, 3, 1, 4, 9, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-09-08-01', 1, 3, 1, 4, 9, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-09-09-01', 1, 3, 1, 4, 9, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-09-10-01', 1, 3, 1, 4, 9, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-09-11-01', 1, 3, 1, 4, 9, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-09-12-01', 1, 3, 1, 4, 9, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-09-13-01', 1, 3, 1, 4, 9, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-09-14-01', 1, 3, 1, 4, 9, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-09-15-01', 1, 3, 1, 4, 9, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-09-16-01', 1, 3, 1, 4, 9, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-09-17-01', 1, 3, 1, 4, 9, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-09-18-01', 1, 3, 1, 4, 9, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-09-19-01', 1, 3, 1, 4, 9, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-09-20-01', 1, 3, 1, 4, 9, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-09-21-01', 1, 3, 1, 4, 9, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-09-22-01', 1, 3, 1, 4, 9, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-10-01-01', 1, 3, 1, 4, 10, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-10-02-01', 1, 3, 1, 4, 10, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-10-03-01', 1, 3, 1, 4, 10, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-10-04-01', 1, 3, 1, 4, 10, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-10-05-01', 1, 3, 1, 4, 10, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-10-06-01', 1, 3, 1, 4, 10, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-10-07-01', 1, 3, 1, 4, 10, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-10-08-01', 1, 3, 1, 4, 10, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-10-09-01', 1, 3, 1, 4, 10, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-10-10-01', 1, 3, 1, 4, 10, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-10-11-01', 1, 3, 1, 4, 10, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-10-12-01', 1, 3, 1, 4, 10, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-10-13-01', 1, 3, 1, 4, 10, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-10-14-01', 1, 3, 1, 4, 10, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-10-15-01', 1, 3, 1, 4, 10, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-10-16-01', 1, 3, 1, 4, 10, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-10-17-01', 1, 3, 1, 4, 10, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-10-18-01', 1, 3, 1, 4, 10, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-10-19-01', 1, 3, 1, 4, 10, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-10-20-01', 1, 3, 1, 4, 10, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-10-21-01', 1, 3, 1, 4, 10, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-10-22-01', 1, 3, 1, 4, 10, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-11-01-01', 1, 3, 1, 4, 11, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-11-02-01', 1, 3, 1, 4, 11, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-11-03-01', 1, 3, 1, 4, 11, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-11-04-01', 1, 3, 1, 4, 11, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-11-05-01', 1, 3, 1, 4, 11, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-11-06-01', 1, 3, 1, 4, 11, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-11-07-01', 1, 3, 1, 4, 11, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-11-08-01', 1, 3, 1, 4, 11, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-11-09-01', 1, 3, 1, 4, 11, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-11-10-01', 1, 3, 1, 4, 11, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-11-11-01', 1, 3, 1, 4, 11, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-11-12-01', 1, 3, 1, 4, 11, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-11-13-01', 1, 3, 1, 4, 11, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-11-14-01', 1, 3, 1, 4, 11, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-11-15-01', 1, 3, 1, 4, 11, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-11-16-01', 1, 3, 1, 4, 11, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-11-17-01', 1, 3, 1, 4, 11, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-11-18-01', 1, 3, 1, 4, 11, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-11-19-01', 1, 3, 1, 4, 11, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-11-20-01', 1, 3, 1, 4, 11, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-11-21-01', 1, 3, 1, 4, 11, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-11-22-01', 1, 3, 1, 4, 11, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-12-01-01', 1, 3, 1, 4, 12, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-12-02-01', 1, 3, 1, 4, 12, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-12-03-01', 1, 3, 1, 4, 12, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-12-04-01', 1, 3, 1, 4, 12, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-12-05-01', 1, 3, 1, 4, 12, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-12-06-01', 1, 3, 1, 4, 12, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-12-07-01', 1, 3, 1, 4, 12, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-12-08-01', 1, 3, 1, 4, 12, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-12-09-01', 1, 3, 1, 4, 12, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-12-10-01', 1, 3, 1, 4, 12, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-12-11-01', 1, 3, 1, 4, 12, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-12-12-01', 1, 3, 1, 4, 12, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-12-13-01', 1, 3, 1, 4, 12, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-12-14-01', 1, 3, 1, 4, 12, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-12-15-01', 1, 3, 1, 4, 12, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-12-16-01', 1, 3, 1, 4, 12, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-12-17-01', 1, 3, 1, 4, 12, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-12-18-01', 1, 3, 1, 4, 12, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-12-19-01', 1, 3, 1, 4, 12, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-12-20-01', 1, 3, 1, 4, 12, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-12-21-01', 1, 3, 1, 4, 12, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-12-22-01', 1, 3, 1, 4, 12, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-13-01-01', 1, 3, 1, 4, 13, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-13-02-01', 1, 3, 1, 4, 13, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-13-03-01', 1, 3, 1, 4, 13, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-13-04-01', 1, 3, 1, 4, 13, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-13-05-01', 1, 3, 1, 4, 13, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-13-06-01', 1, 3, 1, 4, 13, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-13-07-01', 1, 3, 1, 4, 13, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-13-08-01', 1, 3, 1, 4, 13, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-13-09-01', 1, 3, 1, 4, 13, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-13-10-01', 1, 3, 1, 4, 13, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-13-11-01', 1, 3, 1, 4, 13, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-13-12-01', 1, 3, 1, 4, 13, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-13-13-01', 1, 3, 1, 4, 13, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-13-14-01', 1, 3, 1, 4, 13, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-13-15-01', 1, 3, 1, 4, 13, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-13-16-01', 1, 3, 1, 4, 13, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-13-17-01', 1, 3, 1, 4, 13, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-13-18-01', 1, 3, 1, 4, 13, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-13-19-01', 1, 3, 1, 4, 13, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-13-20-01', 1, 3, 1, 4, 13, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-13-21-01', 1, 3, 1, 4, 13, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-13-22-01', 1, 3, 1, 4, 13, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-14-01-01', 1, 3, 1, 4, 14, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-14-02-01', 1, 3, 1, 4, 14, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-14-03-01', 1, 3, 1, 4, 14, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-14-04-01', 1, 3, 1, 4, 14, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-14-05-01', 1, 3, 1, 4, 14, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-14-06-01', 1, 3, 1, 4, 14, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-14-07-01', 1, 3, 1, 4, 14, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-14-08-01', 1, 3, 1, 4, 14, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-14-09-01', 1, 3, 1, 4, 14, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-14-10-01', 1, 3, 1, 4, 14, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-14-11-01', 1, 3, 1, 4, 14, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-14-12-01', 1, 3, 1, 4, 14, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-14-13-01', 1, 3, 1, 4, 14, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-14-14-01', 1, 3, 1, 4, 14, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-14-15-01', 1, 3, 1, 4, 14, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-14-16-01', 1, 3, 1, 4, 14, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-14-17-01', 1, 3, 1, 4, 14, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-14-18-01', 1, 3, 1, 4, 14, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-14-19-01', 1, 3, 1, 4, 14, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-14-20-01', 1, 3, 1, 4, 14, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-14-21-01', 1, 3, 1, 4, 14, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-14-22-01', 1, 3, 1, 4, 14, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-15-01-01', 1, 3, 1, 4, 15, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-15-02-01', 1, 3, 1, 4, 15, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-15-03-01', 1, 3, 1, 4, 15, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-15-04-01', 1, 3, 1, 4, 15, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-15-05-01', 1, 3, 1, 4, 15, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-15-06-01', 1, 3, 1, 4, 15, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-15-07-01', 1, 3, 1, 4, 15, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-15-08-01', 1, 3, 1, 4, 15, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-15-09-01', 1, 3, 1, 4, 15, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-15-10-01', 1, 3, 1, 4, 15, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-15-11-01', 1, 3, 1, 4, 15, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-15-12-01', 1, 3, 1, 4, 15, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-15-13-01', 1, 3, 1, 4, 15, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-15-14-01', 1, 3, 1, 4, 15, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-15-15-01', 1, 3, 1, 4, 15, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-15-16-01', 1, 3, 1, 4, 15, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-15-17-01', 1, 3, 1, 4, 15, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-15-18-01', 1, 3, 1, 4, 15, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-15-19-01', 1, 3, 1, 4, 15, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-15-20-01', 1, 3, 1, 4, 15, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-15-21-01', 1, 3, 1, 4, 15, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-15-22-01', 1, 3, 1, 4, 15, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-16-01-01', 1, 3, 1, 4, 16, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-16-02-01', 1, 3, 1, 4, 16, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-16-03-01', 1, 3, 1, 4, 16, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-16-04-01', 1, 3, 1, 4, 16, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-16-05-01', 1, 3, 1, 4, 16, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-16-06-01', 1, 3, 1, 4, 16, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-16-07-01', 1, 3, 1, 4, 16, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-16-08-01', 1, 3, 1, 4, 16, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-16-09-01', 1, 3, 1, 4, 16, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-16-10-01', 1, 3, 1, 4, 16, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-16-11-01', 1, 3, 1, 4, 16, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-16-12-01', 1, 3, 1, 4, 16, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-16-13-01', 1, 3, 1, 4, 16, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-16-14-01', 1, 3, 1, 4, 16, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-16-15-01', 1, 3, 1, 4, 16, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-16-16-01', 1, 3, 1, 4, 16, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-16-17-01', 1, 3, 1, 4, 16, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-16-18-01', 1, 3, 1, 4, 16, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-16-19-01', 1, 3, 1, 4, 16, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-16-20-01', 1, 3, 1, 4, 16, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-16-21-01', 1, 3, 1, 4, 16, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-16-22-01', 1, 3, 1, 4, 16, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-17-01-01', 1, 3, 1, 4, 17, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-17-02-01', 1, 3, 1, 4, 17, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-17-03-01', 1, 3, 1, 4, 17, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-17-04-01', 1, 3, 1, 4, 17, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-17-05-01', 1, 3, 1, 4, 17, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-17-06-01', 1, 3, 1, 4, 17, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-17-07-01', 1, 3, 1, 4, 17, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-17-08-01', 1, 3, 1, 4, 17, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-17-09-01', 1, 3, 1, 4, 17, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-17-10-01', 1, 3, 1, 4, 17, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-17-11-01', 1, 3, 1, 4, 17, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-17-12-01', 1, 3, 1, 4, 17, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-17-13-01', 1, 3, 1, 4, 17, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-17-14-01', 1, 3, 1, 4, 17, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-17-15-01', 1, 3, 1, 4, 17, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-17-16-01', 1, 3, 1, 4, 17, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-17-17-01', 1, 3, 1, 4, 17, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-17-18-01', 1, 3, 1, 4, 17, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-17-19-01', 1, 3, 1, 4, 17, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-17-20-01', 1, 3, 1, 4, 17, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-17-21-01', 1, 3, 1, 4, 17, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-17-22-01', 1, 3, 1, 4, 17, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-18-01-01', 1, 3, 1, 4, 18, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-18-02-01', 1, 3, 1, 4, 18, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-18-03-01', 1, 3, 1, 4, 18, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-18-04-01', 1, 3, 1, 4, 18, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-18-05-01', 1, 3, 1, 4, 18, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-18-06-01', 1, 3, 1, 4, 18, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-18-07-01', 1, 3, 1, 4, 18, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-18-08-01', 1, 3, 1, 4, 18, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-18-09-01', 1, 3, 1, 4, 18, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-18-10-01', 1, 3, 1, 4, 18, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-18-11-01', 1, 3, 1, 4, 18, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-18-12-01', 1, 3, 1, 4, 18, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-18-13-01', 1, 3, 1, 4, 18, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-18-14-01', 1, 3, 1, 4, 18, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-18-15-01', 1, 3, 1, 4, 18, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-18-16-01', 1, 3, 1, 4, 18, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-18-17-01', 1, 3, 1, 4, 18, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-18-18-01', 1, 3, 1, 4, 18, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-18-19-01', 1, 3, 1, 4, 18, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-18-20-01', 1, 3, 1, 4, 18, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-18-21-01', 1, 3, 1, 4, 18, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-18-22-01', 1, 3, 1, 4, 18, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-19-01-01', 1, 3, 1, 4, 19, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-19-02-01', 1, 3, 1, 4, 19, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-19-03-01', 1, 3, 1, 4, 19, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-19-04-01', 1, 3, 1, 4, 19, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-19-05-01', 1, 3, 1, 4, 19, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-19-06-01', 1, 3, 1, 4, 19, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-19-07-01', 1, 3, 1, 4, 19, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-19-08-01', 1, 3, 1, 4, 19, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-19-09-01', 1, 3, 1, 4, 19, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-19-10-01', 1, 3, 1, 4, 19, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-19-11-01', 1, 3, 1, 4, 19, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-19-12-01', 1, 3, 1, 4, 19, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-19-13-01', 1, 3, 1, 4, 19, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-19-14-01', 1, 3, 1, 4, 19, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-19-15-01', 1, 3, 1, 4, 19, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-19-16-01', 1, 3, 1, 4, 19, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-19-17-01', 1, 3, 1, 4, 19, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-19-18-01', 1, 3, 1, 4, 19, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-19-19-01', 1, 3, 1, 4, 19, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-19-20-01', 1, 3, 1, 4, 19, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-19-21-01', 1, 3, 1, 4, 19, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-19-22-01', 1, 3, 1, 4, 19, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-20-01-01', 1, 3, 1, 4, 20, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-20-02-01', 1, 3, 1, 4, 20, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-20-03-01', 1, 3, 1, 4, 20, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-20-04-01', 1, 3, 1, 4, 20, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-20-05-01', 1, 3, 1, 4, 20, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-20-06-01', 1, 3, 1, 4, 20, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-20-07-01', 1, 3, 1, 4, 20, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-20-08-01', 1, 3, 1, 4, 20, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-20-09-01', 1, 3, 1, 4, 20, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-20-10-01', 1, 3, 1, 4, 20, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-20-11-01', 1, 3, 1, 4, 20, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-20-12-01', 1, 3, 1, 4, 20, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-20-13-01', 1, 3, 1, 4, 20, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-20-14-01', 1, 3, 1, 4, 20, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-20-15-01', 1, 3, 1, 4, 20, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-20-16-01', 1, 3, 1, 4, 20, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-20-17-01', 1, 3, 1, 4, 20, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-20-18-01', 1, 3, 1, 4, 20, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-20-19-01', 1, 3, 1, 4, 20, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-20-20-01', 1, 3, 1, 4, 20, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-20-21-01', 1, 3, 1, 4, 20, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-20-22-01', 1, 3, 1, 4, 20, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-21-01-01', 1, 3, 1, 4, 21, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-21-02-01', 1, 3, 1, 4, 21, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-21-03-01', 1, 3, 1, 4, 21, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-21-04-01', 1, 3, 1, 4, 21, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-21-05-01', 1, 3, 1, 4, 21, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-21-06-01', 1, 3, 1, 4, 21, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-21-07-01', 1, 3, 1, 4, 21, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-21-08-01', 1, 3, 1, 4, 21, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-21-09-01', 1, 3, 1, 4, 21, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-21-10-01', 1, 3, 1, 4, 21, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-21-11-01', 1, 3, 1, 4, 21, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-21-12-01', 1, 3, 1, 4, 21, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-21-13-01', 1, 3, 1, 4, 21, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-21-14-01', 1, 3, 1, 4, 21, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-21-15-01', 1, 3, 1, 4, 21, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-21-16-01', 1, 3, 1, 4, 21, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-21-17-01', 1, 3, 1, 4, 21, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-21-18-01', 1, 3, 1, 4, 21, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-21-19-01', 1, 3, 1, 4, 21, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-21-20-01', 1, 3, 1, 4, 21, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-21-21-01', 1, 3, 1, 4, 21, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-21-22-01', 1, 3, 1, 4, 21, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-22-01-01', 1, 3, 1, 4, 22, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-22-02-01', 1, 3, 1, 4, 22, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-22-03-01', 1, 3, 1, 4, 22, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-22-04-01', 1, 3, 1, 4, 22, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-22-05-01', 1, 3, 1, 4, 22, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-22-06-01', 1, 3, 1, 4, 22, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-22-07-01', 1, 3, 1, 4, 22, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-22-08-01', 1, 3, 1, 4, 22, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-22-09-01', 1, 3, 1, 4, 22, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-22-10-01', 1, 3, 1, 4, 22, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-22-11-01', 1, 3, 1, 4, 22, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-22-12-01', 1, 3, 1, 4, 22, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-22-13-01', 1, 3, 1, 4, 22, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-22-14-01', 1, 3, 1, 4, 22, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-22-15-01', 1, 3, 1, 4, 22, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-22-16-01', 1, 3, 1, 4, 22, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-22-17-01', 1, 3, 1, 4, 22, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-22-18-01', 1, 3, 1, 4, 22, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-22-19-01', 1, 3, 1, 4, 22, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-22-20-01', 1, 3, 1, 4, 22, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-22-21-01', 1, 3, 1, 4, 22, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-22-22-01', 1, 3, 1, 4, 22, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-23-01-01', 1, 3, 1, 4, 23, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-23-02-01', 1, 3, 1, 4, 23, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-23-03-01', 1, 3, 1, 4, 23, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-23-04-01', 1, 3, 1, 4, 23, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-23-05-01', 1, 3, 1, 4, 23, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-23-06-01', 1, 3, 1, 4, 23, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-23-07-01', 1, 3, 1, 4, 23, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-23-08-01', 1, 3, 1, 4, 23, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-23-09-01', 1, 3, 1, 4, 23, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-23-10-01', 1, 3, 1, 4, 23, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-23-11-01', 1, 3, 1, 4, 23, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-23-12-01', 1, 3, 1, 4, 23, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-23-13-01', 1, 3, 1, 4, 23, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-23-14-01', 1, 3, 1, 4, 23, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-23-15-01', 1, 3, 1, 4, 23, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-23-16-01', 1, 3, 1, 4, 23, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-23-17-01', 1, 3, 1, 4, 23, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-23-18-01', 1, 3, 1, 4, 23, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-23-19-01', 1, 3, 1, 4, 23, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-23-20-01', 1, 3, 1, 4, 23, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-23-21-01', 1, 3, 1, 4, 23, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-23-22-01', 1, 3, 1, 4, 23, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-24-01-01', 1, 3, 1, 4, 24, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-24-02-01', 1, 3, 1, 4, 24, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-24-03-01', 1, 3, 1, 4, 24, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-24-04-01', 1, 3, 1, 4, 24, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-24-05-01', 1, 3, 1, 4, 24, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-24-06-01', 1, 3, 1, 4, 24, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-24-07-01', 1, 3, 1, 4, 24, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-24-08-01', 1, 3, 1, 4, 24, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-24-09-01', 1, 3, 1, 4, 24, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-24-10-01', 1, 3, 1, 4, 24, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-24-11-01', 1, 3, 1, 4, 24, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-24-12-01', 1, 3, 1, 4, 24, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-24-13-01', 1, 3, 1, 4, 24, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-24-14-01', 1, 3, 1, 4, 24, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-24-15-01', 1, 3, 1, 4, 24, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-24-16-01', 1, 3, 1, 4, 24, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-24-17-01', 1, 3, 1, 4, 24, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-24-18-01', 1, 3, 1, 4, 24, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-24-19-01', 1, 3, 1, 4, 24, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-24-20-01', 1, 3, 1, 4, 24, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-24-21-01', 1, 3, 1, 4, 24, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-24-22-01', 1, 3, 1, 4, 24, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-25-01-01', 1, 3, 1, 4, 25, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-25-02-01', 1, 3, 1, 4, 25, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-25-03-01', 1, 3, 1, 4, 25, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-25-04-01', 1, 3, 1, 4, 25, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-25-05-01', 1, 3, 1, 4, 25, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-25-06-01', 1, 3, 1, 4, 25, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-25-07-01', 1, 3, 1, 4, 25, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-25-08-01', 1, 3, 1, 4, 25, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-25-09-01', 1, 3, 1, 4, 25, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-25-10-01', 1, 3, 1, 4, 25, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-25-11-01', 1, 3, 1, 4, 25, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-25-12-01', 1, 3, 1, 4, 25, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-25-13-01', 1, 3, 1, 4, 25, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-25-14-01', 1, 3, 1, 4, 25, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-25-15-01', 1, 3, 1, 4, 25, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-25-16-01', 1, 3, 1, 4, 25, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-25-17-01', 1, 3, 1, 4, 25, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-25-18-01', 1, 3, 1, 4, 25, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-25-19-01', 1, 3, 1, 4, 25, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-25-20-01', 1, 3, 1, 4, 25, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-25-21-01', 1, 3, 1, 4, 25, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-25-22-01', 1, 3, 1, 4, 25, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-26-01-01', 1, 3, 1, 4, 26, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-26-02-01', 1, 3, 1, 4, 26, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-26-03-01', 1, 3, 1, 4, 26, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-26-04-01', 1, 3, 1, 4, 26, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-26-05-01', 1, 3, 1, 4, 26, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-26-06-01', 1, 3, 1, 4, 26, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-26-07-01', 1, 3, 1, 4, 26, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-26-08-01', 1, 3, 1, 4, 26, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-26-09-01', 1, 3, 1, 4, 26, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-26-10-01', 1, 3, 1, 4, 26, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-26-11-01', 1, 3, 1, 4, 26, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-26-12-01', 1, 3, 1, 4, 26, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-26-13-01', 1, 3, 1, 4, 26, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-26-14-01', 1, 3, 1, 4, 26, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-26-15-01', 1, 3, 1, 4, 26, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-26-16-01', 1, 3, 1, 4, 26, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-26-17-01', 1, 3, 1, 4, 26, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-26-18-01', 1, 3, 1, 4, 26, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-26-19-01', 1, 3, 1, 4, 26, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-26-20-01', 1, 3, 1, 4, 26, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-26-21-01', 1, 3, 1, 4, 26, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-26-22-01', 1, 3, 1, 4, 26, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-27-01-01', 1, 3, 1, 4, 27, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-27-02-01', 1, 3, 1, 4, 27, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-27-03-01', 1, 3, 1, 4, 27, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-27-04-01', 1, 3, 1, 4, 27, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-27-05-01', 1, 3, 1, 4, 27, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-27-06-01', 1, 3, 1, 4, 27, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-27-07-01', 1, 3, 1, 4, 27, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-27-08-01', 1, 3, 1, 4, 27, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-27-09-01', 1, 3, 1, 4, 27, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-27-10-01', 1, 3, 1, 4, 27, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-27-11-01', 1, 3, 1, 4, 27, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-27-12-01', 1, 3, 1, 4, 27, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-27-13-01', 1, 3, 1, 4, 27, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-27-14-01', 1, 3, 1, 4, 27, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-27-15-01', 1, 3, 1, 4, 27, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-27-16-01', 1, 3, 1, 4, 27, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-27-17-01', 1, 3, 1, 4, 27, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-27-18-01', 1, 3, 1, 4, 27, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-27-19-01', 1, 3, 1, 4, 27, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-27-20-01', 1, 3, 1, 4, 27, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-27-21-01', 1, 3, 1, 4, 27, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-27-22-01', 1, 3, 1, 4, 27, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-28-01-01', 1, 3, 1, 4, 28, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-28-02-01', 1, 3, 1, 4, 28, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-28-03-01', 1, 3, 1, 4, 28, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-28-04-01', 1, 3, 1, 4, 28, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-28-05-01', 1, 3, 1, 4, 28, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-28-06-01', 1, 3, 1, 4, 28, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-28-07-01', 1, 3, 1, 4, 28, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-28-08-01', 1, 3, 1, 4, 28, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-28-09-01', 1, 3, 1, 4, 28, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-28-10-01', 1, 3, 1, 4, 28, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-28-11-01', 1, 3, 1, 4, 28, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-28-12-01', 1, 3, 1, 4, 28, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-28-13-01', 1, 3, 1, 4, 28, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-28-14-01', 1, 3, 1, 4, 28, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-28-15-01', 1, 3, 1, 4, 28, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-28-16-01', 1, 3, 1, 4, 28, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-28-17-01', 1, 3, 1, 4, 28, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-28-18-01', 1, 3, 1, 4, 28, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-28-19-01', 1, 3, 1, 4, 28, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-28-20-01', 1, 3, 1, 4, 28, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-28-21-01', 1, 3, 1, 4, 28, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-28-22-01', 1, 3, 1, 4, 28, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-29-01-01', 1, 3, 1, 4, 29, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-29-02-01', 1, 3, 1, 4, 29, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-29-03-01', 1, 3, 1, 4, 29, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-29-04-01', 1, 3, 1, 4, 29, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-29-05-01', 1, 3, 1, 4, 29, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-29-06-01', 1, 3, 1, 4, 29, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-29-07-01', 1, 3, 1, 4, 29, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-29-08-01', 1, 3, 1, 4, 29, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-29-09-01', 1, 3, 1, 4, 29, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-29-10-01', 1, 3, 1, 4, 29, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-29-11-01', 1, 3, 1, 4, 29, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-29-12-01', 1, 3, 1, 4, 29, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-29-13-01', 1, 3, 1, 4, 29, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-29-14-01', 1, 3, 1, 4, 29, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-29-15-01', 1, 3, 1, 4, 29, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-29-16-01', 1, 3, 1, 4, 29, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-29-17-01', 1, 3, 1, 4, 29, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-29-18-01', 1, 3, 1, 4, 29, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-29-19-01', 1, 3, 1, 4, 29, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-29-20-01', 1, 3, 1, 4, 29, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-29-21-01', 1, 3, 1, 4, 29, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-29-22-01', 1, 3, 1, 4, 29, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-30-01-01', 1, 3, 1, 4, 30, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-30-02-01', 1, 3, 1, 4, 30, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-30-03-01', 1, 3, 1, 4, 30, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-30-04-01', 1, 3, 1, 4, 30, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-30-05-01', 1, 3, 1, 4, 30, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-30-06-01', 1, 3, 1, 4, 30, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-30-07-01', 1, 3, 1, 4, 30, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-30-08-01', 1, 3, 1, 4, 30, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-30-09-01', 1, 3, 1, 4, 30, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-30-10-01', 1, 3, 1, 4, 30, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-30-11-01', 1, 3, 1, 4, 30, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-30-12-01', 1, 3, 1, 4, 30, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-30-13-01', 1, 3, 1, 4, 30, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-30-14-01', 1, 3, 1, 4, 30, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-30-15-01', 1, 3, 1, 4, 30, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-30-16-01', 1, 3, 1, 4, 30, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-30-17-01', 1, 3, 1, 4, 30, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-30-18-01', 1, 3, 1, 4, 30, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-30-19-01', 1, 3, 1, 4, 30, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-30-20-01', 1, 3, 1, 4, 30, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-30-21-01', 1, 3, 1, 4, 30, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-30-22-01', 1, 3, 1, 4, 30, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-31-01-01', 1, 3, 1, 4, 31, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-31-02-01', 1, 3, 1, 4, 31, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-31-03-01', 1, 3, 1, 4, 31, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-31-04-01', 1, 3, 1, 4, 31, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-31-05-01', 1, 3, 1, 4, 31, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-31-06-01', 1, 3, 1, 4, 31, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-31-07-01', 1, 3, 1, 4, 31, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-31-08-01', 1, 3, 1, 4, 31, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-31-09-01', 1, 3, 1, 4, 31, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-31-10-01', 1, 3, 1, 4, 31, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-31-11-01', 1, 3, 1, 4, 31, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-31-12-01', 1, 3, 1, 4, 31, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-31-13-01', 1, 3, 1, 4, 31, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-31-14-01', 1, 3, 1, 4, 31, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-31-15-01', 1, 3, 1, 4, 31, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-31-16-01', 1, 3, 1, 4, 31, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-31-17-01', 1, 3, 1, 4, 31, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-31-18-01', 1, 3, 1, 4, 31, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-31-19-01', 1, 3, 1, 4, 31, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-31-20-01', 1, 3, 1, 4, 31, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-31-21-01', 1, 3, 1, 4, 31, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-31-22-01', 1, 3, 1, 4, 31, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-32-01-01', 1, 3, 1, 4, 32, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-32-02-01', 1, 3, 1, 4, 32, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-32-03-01', 1, 3, 1, 4, 32, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-32-04-01', 1, 3, 1, 4, 32, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-32-05-01', 1, 3, 1, 4, 32, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-32-06-01', 1, 3, 1, 4, 32, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-32-07-01', 1, 3, 1, 4, 32, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-32-08-01', 1, 3, 1, 4, 32, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-32-09-01', 1, 3, 1, 4, 32, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-32-10-01', 1, 3, 1, 4, 32, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-32-11-01', 1, 3, 1, 4, 32, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-32-12-01', 1, 3, 1, 4, 32, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-32-13-01', 1, 3, 1, 4, 32, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-32-14-01', 1, 3, 1, 4, 32, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-32-15-01', 1, 3, 1, 4, 32, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-32-16-01', 1, 3, 1, 4, 32, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-32-17-01', 1, 3, 1, 4, 32, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-32-18-01', 1, 3, 1, 4, 32, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-32-19-01', 1, 3, 1, 4, 32, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-32-20-01', 1, 3, 1, 4, 32, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-32-21-01', 1, 3, 1, 4, 32, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-32-22-01', 1, 3, 1, 4, 32, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-33-01-01', 1, 3, 1, 4, 33, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-33-02-01', 1, 3, 1, 4, 33, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-33-03-01', 1, 3, 1, 4, 33, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-33-04-01', 1, 3, 1, 4, 33, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-33-05-01', 1, 3, 1, 4, 33, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-33-06-01', 1, 3, 1, 4, 33, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-33-07-01', 1, 3, 1, 4, 33, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-33-08-01', 1, 3, 1, 4, 33, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-33-09-01', 1, 3, 1, 4, 33, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-33-10-01', 1, 3, 1, 4, 33, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-33-11-01', 1, 3, 1, 4, 33, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-33-12-01', 1, 3, 1, 4, 33, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-33-13-01', 1, 3, 1, 4, 33, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-33-14-01', 1, 3, 1, 4, 33, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-33-15-01', 1, 3, 1, 4, 33, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-33-16-01', 1, 3, 1, 4, 33, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-33-17-01', 1, 3, 1, 4, 33, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-33-18-01', 1, 3, 1, 4, 33, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-33-19-01', 1, 3, 1, 4, 33, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-33-20-01', 1, 3, 1, 4, 33, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-33-21-01', 1, 3, 1, 4, 33, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-33-22-01', 1, 3, 1, 4, 33, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-34-01-01', 1, 3, 1, 4, 34, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-34-02-01', 1, 3, 1, 4, 34, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-34-03-01', 1, 3, 1, 4, 34, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-34-04-01', 1, 3, 1, 4, 34, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-34-05-01', 1, 3, 1, 4, 34, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-34-06-01', 1, 3, 1, 4, 34, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-34-07-01', 1, 3, 1, 4, 34, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-34-08-01', 1, 3, 1, 4, 34, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-34-09-01', 1, 3, 1, 4, 34, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-34-10-01', 1, 3, 1, 4, 34, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-34-11-01', 1, 3, 1, 4, 34, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-34-12-01', 1, 3, 1, 4, 34, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-34-13-01', 1, 3, 1, 4, 34, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-34-14-01', 1, 3, 1, 4, 34, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-34-15-01', 1, 3, 1, 4, 34, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-34-16-01', 1, 3, 1, 4, 34, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-34-17-01', 1, 3, 1, 4, 34, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-34-18-01', 1, 3, 1, 4, 34, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-34-19-01', 1, 3, 1, 4, 34, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-34-20-01', 1, 3, 1, 4, 34, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-34-21-01', 1, 3, 1, 4, 34, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-34-22-01', 1, 3, 1, 4, 34, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-35-01-01', 1, 3, 1, 4, 35, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-35-02-01', 1, 3, 1, 4, 35, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-35-03-01', 1, 3, 1, 4, 35, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-35-04-01', 1, 3, 1, 4, 35, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-35-05-01', 1, 3, 1, 4, 35, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-35-06-01', 1, 3, 1, 4, 35, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-35-07-01', 1, 3, 1, 4, 35, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-35-08-01', 1, 3, 1, 4, 35, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-35-09-01', 1, 3, 1, 4, 35, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-35-10-01', 1, 3, 1, 4, 35, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-35-11-01', 1, 3, 1, 4, 35, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-35-12-01', 1, 3, 1, 4, 35, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-35-13-01', 1, 3, 1, 4, 35, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-35-14-01', 1, 3, 1, 4, 35, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-35-15-01', 1, 3, 1, 4, 35, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-35-16-01', 1, 3, 1, 4, 35, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-35-17-01', 1, 3, 1, 4, 35, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-35-18-01', 1, 3, 1, 4, 35, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-35-19-01', 1, 3, 1, 4, 35, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-35-20-01', 1, 3, 1, 4, 35, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-35-21-01', 1, 3, 1, 4, 35, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-35-22-01', 1, 3, 1, 4, 35, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-36-01-01', 1, 3, 1, 4, 36, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-36-02-01', 1, 3, 1, 4, 36, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-36-03-01', 1, 3, 1, 4, 36, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-36-04-01', 1, 3, 1, 4, 36, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-36-05-01', 1, 3, 1, 4, 36, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-36-06-01', 1, 3, 1, 4, 36, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-36-07-01', 1, 3, 1, 4, 36, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-36-08-01', 1, 3, 1, 4, 36, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-36-09-01', 1, 3, 1, 4, 36, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-36-10-01', 1, 3, 1, 4, 36, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-36-11-01', 1, 3, 1, 4, 36, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-36-12-01', 1, 3, 1, 4, 36, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-36-13-01', 1, 3, 1, 4, 36, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-36-14-01', 1, 3, 1, 4, 36, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-36-15-01', 1, 3, 1, 4, 36, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-36-16-01', 1, 3, 1, 4, 36, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-36-17-01', 1, 3, 1, 4, 36, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-36-18-01', 1, 3, 1, 4, 36, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-36-19-01', 1, 3, 1, 4, 36, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-36-20-01', 1, 3, 1, 4, 36, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-36-21-01', 1, 3, 1, 4, 36, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-36-22-01', 1, 3, 1, 4, 36, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-37-01-01', 1, 3, 1, 4, 37, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-37-02-01', 1, 3, 1, 4, 37, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-37-03-01', 1, 3, 1, 4, 37, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-37-04-01', 1, 3, 1, 4, 37, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-37-05-01', 1, 3, 1, 4, 37, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-37-06-01', 1, 3, 1, 4, 37, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-37-07-01', 1, 3, 1, 4, 37, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-37-08-01', 1, 3, 1, 4, 37, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-37-09-01', 1, 3, 1, 4, 37, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-37-10-01', 1, 3, 1, 4, 37, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-37-11-01', 1, 3, 1, 4, 37, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-37-12-01', 1, 3, 1, 4, 37, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-37-13-01', 1, 3, 1, 4, 37, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-37-14-01', 1, 3, 1, 4, 37, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-37-15-01', 1, 3, 1, 4, 37, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-37-16-01', 1, 3, 1, 4, 37, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-37-17-01', 1, 3, 1, 4, 37, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-37-18-01', 1, 3, 1, 4, 37, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-37-19-01', 1, 3, 1, 4, 37, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-37-20-01', 1, 3, 1, 4, 37, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-37-21-01', 1, 3, 1, 4, 37, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-37-22-01', 1, 3, 1, 4, 37, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-38-01-01', 1, 3, 1, 4, 38, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-38-02-01', 1, 3, 1, 4, 38, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-38-03-01', 1, 3, 1, 4, 38, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-38-04-01', 1, 3, 1, 4, 38, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-38-05-01', 1, 3, 1, 4, 38, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-38-06-01', 1, 3, 1, 4, 38, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-38-07-01', 1, 3, 1, 4, 38, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-38-08-01', 1, 3, 1, 4, 38, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-38-09-01', 1, 3, 1, 4, 38, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-38-10-01', 1, 3, 1, 4, 38, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-38-11-01', 1, 3, 1, 4, 38, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-38-12-01', 1, 3, 1, 4, 38, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-38-13-01', 1, 3, 1, 4, 38, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-38-14-01', 1, 3, 1, 4, 38, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-38-15-01', 1, 3, 1, 4, 38, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-38-16-01', 1, 3, 1, 4, 38, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-38-17-01', 1, 3, 1, 4, 38, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-38-18-01', 1, 3, 1, 4, 38, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-38-19-01', 1, 3, 1, 4, 38, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-38-20-01', 1, 3, 1, 4, 38, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-38-21-01', 1, 3, 1, 4, 38, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-38-22-01', 1, 3, 1, 4, 38, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-39-01-01', 1, 3, 1, 4, 39, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-39-02-01', 1, 3, 1, 4, 39, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-39-03-01', 1, 3, 1, 4, 39, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-39-04-01', 1, 3, 1, 4, 39, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-39-05-01', 1, 3, 1, 4, 39, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-39-06-01', 1, 3, 1, 4, 39, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-39-07-01', 1, 3, 1, 4, 39, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-39-08-01', 1, 3, 1, 4, 39, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-39-09-01', 1, 3, 1, 4, 39, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-39-10-01', 1, 3, 1, 4, 39, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-39-11-01', 1, 3, 1, 4, 39, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-39-12-01', 1, 3, 1, 4, 39, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-39-13-01', 1, 3, 1, 4, 39, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-39-14-01', 1, 3, 1, 4, 39, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-39-15-01', 1, 3, 1, 4, 39, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-39-16-01', 1, 3, 1, 4, 39, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-39-17-01', 1, 3, 1, 4, 39, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-39-18-01', 1, 3, 1, 4, 39, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-39-19-01', 1, 3, 1, 4, 39, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-39-20-01', 1, 3, 1, 4, 39, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-39-21-01', 1, 3, 1, 4, 39, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-39-22-01', 1, 3, 1, 4, 39, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-40-01-01', 1, 3, 1, 4, 40, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-40-02-01', 1, 3, 1, 4, 40, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-40-03-01', 1, 3, 1, 4, 40, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-40-04-01', 1, 3, 1, 4, 40, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-40-05-01', 1, 3, 1, 4, 40, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-40-06-01', 1, 3, 1, 4, 40, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-40-07-01', 1, 3, 1, 4, 40, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-40-08-01', 1, 3, 1, 4, 40, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-40-09-01', 1, 3, 1, 4, 40, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-40-10-01', 1, 3, 1, 4, 40, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-40-11-01', 1, 3, 1, 4, 40, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-40-12-01', 1, 3, 1, 4, 40, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-40-13-01', 1, 3, 1, 4, 40, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-40-14-01', 1, 3, 1, 4, 40, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-40-15-01', 1, 3, 1, 4, 40, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-40-16-01', 1, 3, 1, 4, 40, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-40-17-01', 1, 3, 1, 4, 40, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-40-18-01', 1, 3, 1, 4, 40, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-40-19-01', 1, 3, 1, 4, 40, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-40-20-01', 1, 3, 1, 4, 40, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-40-21-01', 1, 3, 1, 4, 40, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-40-22-01', 1, 3, 1, 4, 40, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-41-01-01', 1, 3, 1, 4, 41, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-41-02-01', 1, 3, 1, 4, 41, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-41-03-01', 1, 3, 1, 4, 41, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-41-04-01', 1, 3, 1, 4, 41, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-41-05-01', 1, 3, 1, 4, 41, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-41-06-01', 1, 3, 1, 4, 41, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-41-07-01', 1, 3, 1, 4, 41, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-41-08-01', 1, 3, 1, 4, 41, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-41-09-01', 1, 3, 1, 4, 41, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-41-10-01', 1, 3, 1, 4, 41, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-41-11-01', 1, 3, 1, 4, 41, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-41-12-01', 1, 3, 1, 4, 41, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-41-13-01', 1, 3, 1, 4, 41, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-41-14-01', 1, 3, 1, 4, 41, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-41-15-01', 1, 3, 1, 4, 41, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-41-16-01', 1, 3, 1, 4, 41, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-41-17-01', 1, 3, 1, 4, 41, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-41-18-01', 1, 3, 1, 4, 41, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-41-19-01', 1, 3, 1, 4, 41, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-41-20-01', 1, 3, 1, 4, 41, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-41-21-01', 1, 3, 1, 4, 41, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-41-22-01', 1, 3, 1, 4, 41, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-42-01-01', 1, 3, 1, 4, 42, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-42-02-01', 1, 3, 1, 4, 42, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-42-03-01', 1, 3, 1, 4, 42, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-42-04-01', 1, 3, 1, 4, 42, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-42-05-01', 1, 3, 1, 4, 42, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-42-06-01', 1, 3, 1, 4, 42, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-42-07-01', 1, 3, 1, 4, 42, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-42-08-01', 1, 3, 1, 4, 42, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-42-09-01', 1, 3, 1, 4, 42, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-42-10-01', 1, 3, 1, 4, 42, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-42-11-01', 1, 3, 1, 4, 42, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-42-12-01', 1, 3, 1, 4, 42, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-42-13-01', 1, 3, 1, 4, 42, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-42-14-01', 1, 3, 1, 4, 42, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-42-15-01', 1, 3, 1, 4, 42, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-42-16-01', 1, 3, 1, 4, 42, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-42-17-01', 1, 3, 1, 4, 42, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-42-18-01', 1, 3, 1, 4, 42, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-42-19-01', 1, 3, 1, 4, 42, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-42-20-01', 1, 3, 1, 4, 42, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-42-21-01', 1, 3, 1, 4, 42, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-42-22-01', 1, 3, 1, 4, 42, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-43-01-01', 1, 3, 1, 4, 43, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-43-02-01', 1, 3, 1, 4, 43, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-43-03-01', 1, 3, 1, 4, 43, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-43-04-01', 1, 3, 1, 4, 43, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-43-05-01', 1, 3, 1, 4, 43, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-43-06-01', 1, 3, 1, 4, 43, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-43-07-01', 1, 3, 1, 4, 43, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-43-08-01', 1, 3, 1, 4, 43, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-43-09-01', 1, 3, 1, 4, 43, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-43-10-01', 1, 3, 1, 4, 43, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-43-11-01', 1, 3, 1, 4, 43, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-43-12-01', 1, 3, 1, 4, 43, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-43-13-01', 1, 3, 1, 4, 43, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-43-14-01', 1, 3, 1, 4, 43, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-43-15-01', 1, 3, 1, 4, 43, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-43-16-01', 1, 3, 1, 4, 43, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-43-17-01', 1, 3, 1, 4, 43, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-43-18-01', 1, 3, 1, 4, 43, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-43-19-01', 1, 3, 1, 4, 43, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-43-20-01', 1, 3, 1, 4, 43, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-43-21-01', 1, 3, 1, 4, 43, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-43-22-01', 1, 3, 1, 4, 43, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-44-01-01', 1, 3, 1, 4, 44, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-44-02-01', 1, 3, 1, 4, 44, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-44-03-01', 1, 3, 1, 4, 44, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-44-04-01', 1, 3, 1, 4, 44, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-44-05-01', 1, 3, 1, 4, 44, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-44-06-01', 1, 3, 1, 4, 44, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-44-07-01', 1, 3, 1, 4, 44, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-44-08-01', 1, 3, 1, 4, 44, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-44-09-01', 1, 3, 1, 4, 44, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-44-10-01', 1, 3, 1, 4, 44, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-44-11-01', 1, 3, 1, 4, 44, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-44-12-01', 1, 3, 1, 4, 44, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-44-13-01', 1, 3, 1, 4, 44, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-44-14-01', 1, 3, 1, 4, 44, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-44-15-01', 1, 3, 1, 4, 44, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-44-16-01', 1, 3, 1, 4, 44, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-44-17-01', 1, 3, 1, 4, 44, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-44-18-01', 1, 3, 1, 4, 44, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-44-19-01', 1, 3, 1, 4, 44, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-44-20-01', 1, 3, 1, 4, 44, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-44-21-01', 1, 3, 1, 4, 44, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-44-22-01', 1, 3, 1, 4, 44, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-45-01-01', 1, 3, 1, 4, 45, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-45-02-01', 1, 3, 1, 4, 45, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-45-03-01', 1, 3, 1, 4, 45, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-45-04-01', 1, 3, 1, 4, 45, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-45-05-01', 1, 3, 1, 4, 45, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-45-06-01', 1, 3, 1, 4, 45, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-45-07-01', 1, 3, 1, 4, 45, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-45-08-01', 1, 3, 1, 4, 45, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-45-09-01', 1, 3, 1, 4, 45, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-45-10-01', 1, 3, 1, 4, 45, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-45-11-01', 1, 3, 1, 4, 45, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-45-12-01', 1, 3, 1, 4, 45, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-45-13-01', 1, 3, 1, 4, 45, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-45-14-01', 1, 3, 1, 4, 45, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-45-15-01', 1, 3, 1, 4, 45, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-45-16-01', 1, 3, 1, 4, 45, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-45-17-01', 1, 3, 1, 4, 45, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-45-18-01', 1, 3, 1, 4, 45, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-45-19-01', 1, 3, 1, 4, 45, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-45-20-01', 1, 3, 1, 4, 45, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-45-21-01', 1, 3, 1, 4, 45, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-45-22-01', 1, 3, 1, 4, 45, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-46-01-01', 1, 3, 1, 4, 46, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-46-02-01', 1, 3, 1, 4, 46, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-46-03-01', 1, 3, 1, 4, 46, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-46-04-01', 1, 3, 1, 4, 46, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-46-05-01', 1, 3, 1, 4, 46, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-46-06-01', 1, 3, 1, 4, 46, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-46-07-01', 1, 3, 1, 4, 46, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-46-08-01', 1, 3, 1, 4, 46, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-46-09-01', 1, 3, 1, 4, 46, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-46-10-01', 1, 3, 1, 4, 46, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-46-11-01', 1, 3, 1, 4, 46, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-46-12-01', 1, 3, 1, 4, 46, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-46-13-01', 1, 3, 1, 4, 46, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-46-14-01', 1, 3, 1, 4, 46, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-46-15-01', 1, 3, 1, 4, 46, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-46-16-01', 1, 3, 1, 4, 46, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-46-17-01', 1, 3, 1, 4, 46, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-46-18-01', 1, 3, 1, 4, 46, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-46-19-01', 1, 3, 1, 4, 46, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-46-20-01', 1, 3, 1, 4, 46, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-46-21-01', 1, 3, 1, 4, 46, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-46-22-01', 1, 3, 1, 4, 46, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-47-01-01', 1, 3, 1, 4, 47, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-47-02-01', 1, 3, 1, 4, 47, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-47-03-01', 1, 3, 1, 4, 47, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-47-04-01', 1, 3, 1, 4, 47, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-47-05-01', 1, 3, 1, 4, 47, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-47-06-01', 1, 3, 1, 4, 47, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-47-07-01', 1, 3, 1, 4, 47, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-47-08-01', 1, 3, 1, 4, 47, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-47-09-01', 1, 3, 1, 4, 47, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-47-10-01', 1, 3, 1, 4, 47, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-47-11-01', 1, 3, 1, 4, 47, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-47-12-01', 1, 3, 1, 4, 47, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-47-13-01', 1, 3, 1, 4, 47, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-47-14-01', 1, 3, 1, 4, 47, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-47-15-01', 1, 3, 1, 4, 47, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-47-16-01', 1, 3, 1, 4, 47, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-47-17-01', 1, 3, 1, 4, 47, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-47-18-01', 1, 3, 1, 4, 47, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-47-19-01', 1, 3, 1, 4, 47, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-47-20-01', 1, 3, 1, 4, 47, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-47-21-01', 1, 3, 1, 4, 47, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-47-22-01', 1, 3, 1, 4, 47, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-48-01-01', 1, 3, 1, 4, 48, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-48-02-01', 1, 3, 1, 4, 48, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-48-03-01', 1, 3, 1, 4, 48, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-48-04-01', 1, 3, 1, 4, 48, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-48-05-01', 1, 3, 1, 4, 48, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-48-06-01', 1, 3, 1, 4, 48, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-48-07-01', 1, 3, 1, 4, 48, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-48-08-01', 1, 3, 1, 4, 48, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-48-09-01', 1, 3, 1, 4, 48, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-48-10-01', 1, 3, 1, 4, 48, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-48-11-01', 1, 3, 1, 4, 48, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-48-12-01', 1, 3, 1, 4, 48, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-48-13-01', 1, 3, 1, 4, 48, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-48-14-01', 1, 3, 1, 4, 48, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-48-15-01', 1, 3, 1, 4, 48, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-48-16-01', 1, 3, 1, 4, 48, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-48-17-01', 1, 3, 1, 4, 48, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-48-18-01', 1, 3, 1, 4, 48, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-48-19-01', 1, 3, 1, 4, 48, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-48-20-01', 1, 3, 1, 4, 48, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-48-21-01', 1, 3, 1, 4, 48, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-48-22-01', 1, 3, 1, 4, 48, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-49-01-01', 1, 3, 1, 4, 49, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-49-02-01', 1, 3, 1, 4, 49, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-49-03-01', 1, 3, 1, 4, 49, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-49-04-01', 1, 3, 1, 4, 49, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-49-05-01', 1, 3, 1, 4, 49, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-49-06-01', 1, 3, 1, 4, 49, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-49-07-01', 1, 3, 1, 4, 49, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-49-08-01', 1, 3, 1, 4, 49, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-49-09-01', 1, 3, 1, 4, 49, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-49-10-01', 1, 3, 1, 4, 49, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-49-11-01', 1, 3, 1, 4, 49, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-49-12-01', 1, 3, 1, 4, 49, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-49-13-01', 1, 3, 1, 4, 49, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-49-14-01', 1, 3, 1, 4, 49, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-49-15-01', 1, 3, 1, 4, 49, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-49-16-01', 1, 3, 1, 4, 49, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-49-17-01', 1, 3, 1, 4, 49, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-49-18-01', 1, 3, 1, 4, 49, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-49-19-01', 1, 3, 1, 4, 49, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-49-20-01', 1, 3, 1, 4, 49, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-49-21-01', 1, 3, 1, 4, 49, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-49-22-01', 1, 3, 1, 4, 49, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-50-01-01', 1, 3, 1, 4, 50, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-50-02-01', 1, 3, 1, 4, 50, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-50-03-01', 1, 3, 1, 4, 50, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-50-04-01', 1, 3, 1, 4, 50, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-50-05-01', 1, 3, 1, 4, 50, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-50-06-01', 1, 3, 1, 4, 50, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-50-07-01', 1, 3, 1, 4, 50, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-50-08-01', 1, 3, 1, 4, 50, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-50-09-01', 1, 3, 1, 4, 50, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-50-10-01', 1, 3, 1, 4, 50, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-50-11-01', 1, 3, 1, 4, 50, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-50-12-01', 1, 3, 1, 4, 50, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-50-13-01', 1, 3, 1, 4, 50, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-50-14-01', 1, 3, 1, 4, 50, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-50-15-01', 1, 3, 1, 4, 50, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-50-16-01', 1, 3, 1, 4, 50, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-50-17-01', 1, 3, 1, 4, 50, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-50-18-01', 1, 3, 1, 4, 50, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-50-19-01', 1, 3, 1, 4, 50, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-50-20-01', 1, 3, 1, 4, 50, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-50-21-01', 1, 3, 1, 4, 50, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-50-22-01', 1, 3, 1, 4, 50, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-51-01-01', 1, 3, 1, 4, 51, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-51-02-01', 1, 3, 1, 4, 51, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-51-03-01', 1, 3, 1, 4, 51, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-51-04-01', 1, 3, 1, 4, 51, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-51-05-01', 1, 3, 1, 4, 51, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-51-06-01', 1, 3, 1, 4, 51, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-51-07-01', 1, 3, 1, 4, 51, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-51-08-01', 1, 3, 1, 4, 51, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-51-09-01', 1, 3, 1, 4, 51, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-51-10-01', 1, 3, 1, 4, 51, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-51-11-01', 1, 3, 1, 4, 51, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-51-12-01', 1, 3, 1, 4, 51, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-51-13-01', 1, 3, 1, 4, 51, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-51-14-01', 1, 3, 1, 4, 51, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-51-15-01', 1, 3, 1, 4, 51, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-51-16-01', 1, 3, 1, 4, 51, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-51-17-01', 1, 3, 1, 4, 51, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-51-18-01', 1, 3, 1, 4, 51, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-51-19-01', 1, 3, 1, 4, 51, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-51-20-01', 1, 3, 1, 4, 51, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-51-21-01', 1, 3, 1, 4, 51, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-51-22-01', 1, 3, 1, 4, 51, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-52-01-01', 1, 3, 1, 4, 52, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-52-02-01', 1, 3, 1, 4, 52, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-52-03-01', 1, 3, 1, 4, 52, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-52-04-01', 1, 3, 1, 4, 52, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-52-05-01', 1, 3, 1, 4, 52, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-52-06-01', 1, 3, 1, 4, 52, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-52-07-01', 1, 3, 1, 4, 52, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-52-08-01', 1, 3, 1, 4, 52, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-52-09-01', 1, 3, 1, 4, 52, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-52-10-01', 1, 3, 1, 4, 52, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-52-11-01', 1, 3, 1, 4, 52, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-52-12-01', 1, 3, 1, 4, 52, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-52-13-01', 1, 3, 1, 4, 52, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-52-14-01', 1, 3, 1, 4, 52, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-52-15-01', 1, 3, 1, 4, 52, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-52-16-01', 1, 3, 1, 4, 52, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-52-17-01', 1, 3, 1, 4, 52, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-52-18-01', 1, 3, 1, 4, 52, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-52-19-01', 1, 3, 1, 4, 52, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-52-20-01', 1, 3, 1, 4, 52, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-52-21-01', 1, 3, 1, 4, 52, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-52-22-01', 1, 3, 1, 4, 52, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-53-01-01', 1, 3, 1, 4, 53, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-53-02-01', 1, 3, 1, 4, 53, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-53-03-01', 1, 3, 1, 4, 53, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-53-04-01', 1, 3, 1, 4, 53, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-53-05-01', 1, 3, 1, 4, 53, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-53-06-01', 1, 3, 1, 4, 53, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-53-07-01', 1, 3, 1, 4, 53, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-53-08-01', 1, 3, 1, 4, 53, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-53-09-01', 1, 3, 1, 4, 53, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-53-10-01', 1, 3, 1, 4, 53, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-53-11-01', 1, 3, 1, 4, 53, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-53-12-01', 1, 3, 1, 4, 53, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-53-13-01', 1, 3, 1, 4, 53, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-53-14-01', 1, 3, 1, 4, 53, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-53-15-01', 1, 3, 1, 4, 53, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-53-16-01', 1, 3, 1, 4, 53, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-53-17-01', 1, 3, 1, 4, 53, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-53-18-01', 1, 3, 1, 4, 53, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-53-19-01', 1, 3, 1, 4, 53, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-53-20-01', 1, 3, 1, 4, 53, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-53-21-01', 1, 3, 1, 4, 53, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-53-22-01', 1, 3, 1, 4, 53, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-54-01-01', 1, 3, 1, 4, 54, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-54-02-01', 1, 3, 1, 4, 54, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-54-03-01', 1, 3, 1, 4, 54, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-54-04-01', 1, 3, 1, 4, 54, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-54-05-01', 1, 3, 1, 4, 54, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-54-06-01', 1, 3, 1, 4, 54, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-54-07-01', 1, 3, 1, 4, 54, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-54-08-01', 1, 3, 1, 4, 54, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-54-09-01', 1, 3, 1, 4, 54, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-54-10-01', 1, 3, 1, 4, 54, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-54-11-01', 1, 3, 1, 4, 54, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-54-12-01', 1, 3, 1, 4, 54, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-54-13-01', 1, 3, 1, 4, 54, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-54-14-01', 1, 3, 1, 4, 54, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-54-15-01', 1, 3, 1, 4, 54, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-54-16-01', 1, 3, 1, 4, 54, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-54-17-01', 1, 3, 1, 4, 54, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-54-18-01', 1, 3, 1, 4, 54, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-54-19-01', 1, 3, 1, 4, 54, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-54-20-01', 1, 3, 1, 4, 54, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-54-21-01', 1, 3, 1, 4, 54, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-54-22-01', 1, 3, 1, 4, 54, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-55-01-01', 1, 3, 1, 4, 55, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-55-02-01', 1, 3, 1, 4, 55, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-55-03-01', 1, 3, 1, 4, 55, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-55-04-01', 1, 3, 1, 4, 55, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-55-05-01', 1, 3, 1, 4, 55, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-55-06-01', 1, 3, 1, 4, 55, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-55-07-01', 1, 3, 1, 4, 55, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-55-08-01', 1, 3, 1, 4, 55, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-55-09-01', 1, 3, 1, 4, 55, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-55-10-01', 1, 3, 1, 4, 55, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-55-11-01', 1, 3, 1, 4, 55, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-55-12-01', 1, 3, 1, 4, 55, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-55-13-01', 1, 3, 1, 4, 55, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-55-14-01', 1, 3, 1, 4, 55, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-55-15-01', 1, 3, 1, 4, 55, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-55-16-01', 1, 3, 1, 4, 55, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-55-17-01', 1, 3, 1, 4, 55, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-55-18-01', 1, 3, 1, 4, 55, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-55-19-01', 1, 3, 1, 4, 55, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-55-20-01', 1, 3, 1, 4, 55, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-55-21-01', 1, 3, 1, 4, 55, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-55-22-01', 1, 3, 1, 4, 55, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-56-01-01', 1, 3, 1, 4, 56, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-56-02-01', 1, 3, 1, 4, 56, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-56-03-01', 1, 3, 1, 4, 56, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-56-04-01', 1, 3, 1, 4, 56, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-56-05-01', 1, 3, 1, 4, 56, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-56-06-01', 1, 3, 1, 4, 56, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-56-07-01', 1, 3, 1, 4, 56, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-56-08-01', 1, 3, 1, 4, 56, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-56-09-01', 1, 3, 1, 4, 56, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-56-10-01', 1, 3, 1, 4, 56, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-56-11-01', 1, 3, 1, 4, 56, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-56-12-01', 1, 3, 1, 4, 56, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-56-13-01', 1, 3, 1, 4, 56, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-56-14-01', 1, 3, 1, 4, 56, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-56-15-01', 1, 3, 1, 4, 56, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-56-16-01', 1, 3, 1, 4, 56, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-56-17-01', 1, 3, 1, 4, 56, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-56-18-01', 1, 3, 1, 4, 56, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-56-19-01', 1, 3, 1, 4, 56, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-56-20-01', 1, 3, 1, 4, 56, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-56-21-01', 1, 3, 1, 4, 56, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-56-22-01', 1, 3, 1, 4, 56, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-57-01-01', 1, 3, 1, 4, 57, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-57-02-01', 1, 3, 1, 4, 57, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-57-03-01', 1, 3, 1, 4, 57, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-57-04-01', 1, 3, 1, 4, 57, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-57-05-01', 1, 3, 1, 4, 57, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-57-06-01', 1, 3, 1, 4, 57, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-57-07-01', 1, 3, 1, 4, 57, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-57-08-01', 1, 3, 1, 4, 57, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-57-09-01', 1, 3, 1, 4, 57, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-57-10-01', 1, 3, 1, 4, 57, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-57-11-01', 1, 3, 1, 4, 57, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-57-12-01', 1, 3, 1, 4, 57, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-57-13-01', 1, 3, 1, 4, 57, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-57-14-01', 1, 3, 1, 4, 57, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-57-15-01', 1, 3, 1, 4, 57, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-57-16-01', 1, 3, 1, 4, 57, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-57-17-01', 1, 3, 1, 4, 57, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-57-18-01', 1, 3, 1, 4, 57, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-57-19-01', 1, 3, 1, 4, 57, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-57-20-01', 1, 3, 1, 4, 57, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-57-21-01', 1, 3, 1, 4, 57, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-57-22-01', 1, 3, 1, 4, 57, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-58-01-01', 1, 3, 1, 4, 58, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-58-02-01', 1, 3, 1, 4, 58, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-58-03-01', 1, 3, 1, 4, 58, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-58-04-01', 1, 3, 1, 4, 58, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-58-05-01', 1, 3, 1, 4, 58, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-58-06-01', 1, 3, 1, 4, 58, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-58-07-01', 1, 3, 1, 4, 58, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-58-08-01', 1, 3, 1, 4, 58, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-58-09-01', 1, 3, 1, 4, 58, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-58-10-01', 1, 3, 1, 4, 58, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-58-11-01', 1, 3, 1, 4, 58, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-58-12-01', 1, 3, 1, 4, 58, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-58-13-01', 1, 3, 1, 4, 58, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-58-14-01', 1, 3, 1, 4, 58, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-58-15-01', 1, 3, 1, 4, 58, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-58-16-01', 1, 3, 1, 4, 58, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-58-17-01', 1, 3, 1, 4, 58, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-58-18-01', 1, 3, 1, 4, 58, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-58-19-01', 1, 3, 1, 4, 58, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-58-20-01', 1, 3, 1, 4, 58, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-58-21-01', 1, 3, 1, 4, 58, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-58-22-01', 1, 3, 1, 4, 58, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-59-01-01', 1, 3, 1, 4, 59, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-59-02-01', 1, 3, 1, 4, 59, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-59-03-01', 1, 3, 1, 4, 59, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-59-04-01', 1, 3, 1, 4, 59, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-59-05-01', 1, 3, 1, 4, 59, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-59-06-01', 1, 3, 1, 4, 59, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-59-07-01', 1, 3, 1, 4, 59, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-59-08-01', 1, 3, 1, 4, 59, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-59-09-01', 1, 3, 1, 4, 59, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-59-10-01', 1, 3, 1, 4, 59, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-59-11-01', 1, 3, 1, 4, 59, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-59-12-01', 1, 3, 1, 4, 59, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-59-13-01', 1, 3, 1, 4, 59, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-59-14-01', 1, 3, 1, 4, 59, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-59-15-01', 1, 3, 1, 4, 59, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-59-16-01', 1, 3, 1, 4, 59, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-59-17-01', 1, 3, 1, 4, 59, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-59-18-01', 1, 3, 1, 4, 59, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-59-19-01', 1, 3, 1, 4, 59, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-59-20-01', 1, 3, 1, 4, 59, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-59-21-01', 1, 3, 1, 4, 59, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-59-22-01', 1, 3, 1, 4, 59, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-60-01-01', 1, 3, 1, 4, 60, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-60-02-01', 1, 3, 1, 4, 60, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-60-03-01', 1, 3, 1, 4, 60, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-60-04-01', 1, 3, 1, 4, 60, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-60-05-01', 1, 3, 1, 4, 60, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-60-06-01', 1, 3, 1, 4, 60, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-60-07-01', 1, 3, 1, 4, 60, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-60-08-01', 1, 3, 1, 4, 60, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-60-09-01', 1, 3, 1, 4, 60, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-60-10-01', 1, 3, 1, 4, 60, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-60-11-01', 1, 3, 1, 4, 60, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-60-12-01', 1, 3, 1, 4, 60, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-60-13-01', 1, 3, 1, 4, 60, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-60-14-01', 1, 3, 1, 4, 60, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-60-15-01', 1, 3, 1, 4, 60, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-60-16-01', 1, 3, 1, 4, 60, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-60-17-01', 1, 3, 1, 4, 60, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-60-18-01', 1, 3, 1, 4, 60, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-60-19-01', 1, 3, 1, 4, 60, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-60-20-01', 1, 3, 1, 4, 60, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-60-21-01', 1, 3, 1, 4, 60, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-60-22-01', 1, 3, 1, 4, 60, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-61-01-01', 1, 3, 1, 4, 61, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-61-02-01', 1, 3, 1, 4, 61, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-61-03-01', 1, 3, 1, 4, 61, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-61-04-01', 1, 3, 1, 4, 61, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-61-05-01', 1, 3, 1, 4, 61, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-61-06-01', 1, 3, 1, 4, 61, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-61-07-01', 1, 3, 1, 4, 61, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-61-08-01', 1, 3, 1, 4, 61, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-61-09-01', 1, 3, 1, 4, 61, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-61-10-01', 1, 3, 1, 4, 61, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-61-11-01', 1, 3, 1, 4, 61, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-61-12-01', 1, 3, 1, 4, 61, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-61-13-01', 1, 3, 1, 4, 61, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-61-14-01', 1, 3, 1, 4, 61, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-61-15-01', 1, 3, 1, 4, 61, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-61-16-01', 1, 3, 1, 4, 61, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-61-17-01', 1, 3, 1, 4, 61, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-61-18-01', 1, 3, 1, 4, 61, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-61-19-01', 1, 3, 1, 4, 61, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-61-20-01', 1, 3, 1, 4, 61, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-61-21-01', 1, 3, 1, 4, 61, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-61-22-01', 1, 3, 1, 4, 61, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-62-01-01', 1, 3, 1, 4, 62, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-62-02-01', 1, 3, 1, 4, 62, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-62-03-01', 1, 3, 1, 4, 62, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-62-04-01', 1, 3, 1, 4, 62, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-62-05-01', 1, 3, 1, 4, 62, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-62-06-01', 1, 3, 1, 4, 62, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-62-07-01', 1, 3, 1, 4, 62, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-62-08-01', 1, 3, 1, 4, 62, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-62-09-01', 1, 3, 1, 4, 62, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-62-10-01', 1, 3, 1, 4, 62, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-62-11-01', 1, 3, 1, 4, 62, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-62-12-01', 1, 3, 1, 4, 62, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-62-13-01', 1, 3, 1, 4, 62, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-62-14-01', 1, 3, 1, 4, 62, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-62-15-01', 1, 3, 1, 4, 62, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-62-16-01', 1, 3, 1, 4, 62, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-62-17-01', 1, 3, 1, 4, 62, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-62-18-01', 1, 3, 1, 4, 62, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-62-19-01', 1, 3, 1, 4, 62, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-62-20-01', 1, 3, 1, 4, 62, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-62-21-01', 1, 3, 1, 4, 62, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-62-22-01', 1, 3, 1, 4, 62, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-63-01-01', 1, 3, 1, 4, 63, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-63-02-01', 1, 3, 1, 4, 63, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-63-03-01', 1, 3, 1, 4, 63, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-63-04-01', 1, 3, 1, 4, 63, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-63-05-01', 1, 3, 1, 4, 63, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-63-06-01', 1, 3, 1, 4, 63, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-63-07-01', 1, 3, 1, 4, 63, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-63-08-01', 1, 3, 1, 4, 63, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-63-09-01', 1, 3, 1, 4, 63, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-63-10-01', 1, 3, 1, 4, 63, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-63-11-01', 1, 3, 1, 4, 63, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-63-12-01', 1, 3, 1, 4, 63, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-63-13-01', 1, 3, 1, 4, 63, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-63-14-01', 1, 3, 1, 4, 63, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-63-15-01', 1, 3, 1, 4, 63, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-63-16-01', 1, 3, 1, 4, 63, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-63-17-01', 1, 3, 1, 4, 63, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-63-18-01', 1, 3, 1, 4, 63, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-63-19-01', 1, 3, 1, 4, 63, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-63-20-01', 1, 3, 1, 4, 63, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-63-21-01', 1, 3, 1, 4, 63, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-63-22-01', 1, 3, 1, 4, 63, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-64-01-01', 1, 3, 1, 4, 64, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-64-02-01', 1, 3, 1, 4, 64, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-64-03-01', 1, 3, 1, 4, 64, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-64-04-01', 1, 3, 1, 4, 64, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-64-05-01', 1, 3, 1, 4, 64, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-64-06-01', 1, 3, 1, 4, 64, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-64-07-01', 1, 3, 1, 4, 64, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-64-08-01', 1, 3, 1, 4, 64, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-64-09-01', 1, 3, 1, 4, 64, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-64-10-01', 1, 3, 1, 4, 64, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-64-11-01', 1, 3, 1, 4, 64, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-64-12-01', 1, 3, 1, 4, 64, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-64-13-01', 1, 3, 1, 4, 64, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-64-14-01', 1, 3, 1, 4, 64, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-64-15-01', 1, 3, 1, 4, 64, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-64-16-01', 1, 3, 1, 4, 64, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-64-17-01', 1, 3, 1, 4, 64, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-64-18-01', 1, 3, 1, 4, 64, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-64-19-01', 1, 3, 1, 4, 64, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-64-20-01', 1, 3, 1, 4, 64, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-64-21-01', 1, 3, 1, 4, 64, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('04-64-22-01', 1, 3, 1, 4, 64, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-01-01-01', 1, 3, 1, 5, 1, 1, 1, 0, 1, 'ASRS000117'); +INSERT INTO `tbl_app_location` VALUES ('05-01-02-01', 1, 3, 1, 5, 1, 2, 1, 0, 1, 'ASRS000004'); +INSERT INTO `tbl_app_location` VALUES ('05-01-03-01', 1, 3, 1, 5, 1, 3, 1, 0, 1, 'ASRS000020'); +INSERT INTO `tbl_app_location` VALUES ('05-01-04-01', 1, 3, 1, 5, 1, 4, 1, 0, 1, 'ASRS000063'); +INSERT INTO `tbl_app_location` VALUES ('05-01-05-01', 1, 3, 1, 5, 1, 5, 1, 0, 1, 'ASRS000010'); +INSERT INTO `tbl_app_location` VALUES ('05-01-06-01', 1, 3, 1, 5, 1, 6, 1, 0, 1, 'ASRS000112'); +INSERT INTO `tbl_app_location` VALUES ('05-01-07-01', 1, 3, 1, 5, 1, 7, 1, 0, 1, 'ASRS000101'); +INSERT INTO `tbl_app_location` VALUES ('05-01-08-01', 1, 3, 1, 5, 1, 8, 1, 0, 1, 'ASRS000061'); +INSERT INTO `tbl_app_location` VALUES ('05-01-09-01', 1, 3, 1, 5, 1, 9, 1, 0, 1, 'ASRS000030'); +INSERT INTO `tbl_app_location` VALUES ('05-01-10-01', 1, 3, 1, 5, 1, 10, 1, 0, 1, 'ASRS000045'); +INSERT INTO `tbl_app_location` VALUES ('05-01-11-01', 1, 3, 1, 5, 1, 11, 1, 0, 1, 'ASRS000065'); +INSERT INTO `tbl_app_location` VALUES ('05-01-12-01', 1, 3, 1, 5, 1, 12, 1, 0, 0, 'ASRS000076'); +INSERT INTO `tbl_app_location` VALUES ('05-01-13-01', 1, 3, 1, 5, 1, 13, 1, 0, 1, 'ASRS000169'); +INSERT INTO `tbl_app_location` VALUES ('05-01-14-01', 1, 3, 1, 5, 1, 14, 1, 0, 1, 'ASRS000161'); +INSERT INTO `tbl_app_location` VALUES ('05-01-15-01', 1, 3, 1, 5, 1, 15, 1, 0, 1, 'ASRS000164'); +INSERT INTO `tbl_app_location` VALUES ('05-01-16-01', 1, 3, 1, 5, 1, 16, 1, 0, 1, 'ASRS000186'); +INSERT INTO `tbl_app_location` VALUES ('05-01-17-01', 1, 3, 1, 5, 1, 17, 1, 0, 1, 'ASRS000173'); +INSERT INTO `tbl_app_location` VALUES ('05-01-18-01', 1, 3, 1, 5, 1, 18, 1, 0, 1, 'ASRS000196'); +INSERT INTO `tbl_app_location` VALUES ('05-01-19-01', 1, 3, 1, 5, 1, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-01-20-01', 1, 3, 1, 5, 1, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-01-21-01', 1, 3, 1, 5, 1, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-01-22-01', 1, 3, 1, 5, 1, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-02-01-01', 1, 3, 1, 5, 2, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-02-02-01', 1, 3, 1, 5, 2, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-02-03-01', 1, 3, 1, 5, 2, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-02-04-01', 1, 3, 1, 5, 2, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-02-05-01', 1, 3, 1, 5, 2, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-02-06-01', 1, 3, 1, 5, 2, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-02-07-01', 1, 3, 1, 5, 2, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-02-08-01', 1, 3, 1, 5, 2, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-02-09-01', 1, 3, 1, 5, 2, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-02-10-01', 1, 3, 1, 5, 2, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-02-11-01', 1, 3, 1, 5, 2, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-02-12-01', 1, 3, 1, 5, 2, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-02-13-01', 1, 3, 1, 5, 2, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-02-14-01', 1, 3, 1, 5, 2, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-02-15-01', 1, 3, 1, 5, 2, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-02-16-01', 1, 3, 1, 5, 2, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-02-17-01', 1, 3, 1, 5, 2, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-02-18-01', 1, 3, 1, 5, 2, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-02-19-01', 1, 3, 1, 5, 2, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-02-20-01', 1, 3, 1, 5, 2, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-02-21-01', 1, 3, 1, 5, 2, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-02-22-01', 1, 3, 1, 5, 2, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-03-01-01', 1, 3, 1, 5, 3, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-03-02-01', 1, 3, 1, 5, 3, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-03-03-01', 1, 3, 1, 5, 3, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-03-04-01', 1, 3, 1, 5, 3, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-03-05-01', 1, 3, 1, 5, 3, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-03-06-01', 1, 3, 1, 5, 3, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-03-07-01', 1, 3, 1, 5, 3, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-03-08-01', 1, 3, 1, 5, 3, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-03-09-01', 1, 3, 1, 5, 3, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-03-10-01', 1, 3, 1, 5, 3, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-03-11-01', 1, 3, 1, 5, 3, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-03-12-01', 1, 3, 1, 5, 3, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-03-13-01', 1, 3, 1, 5, 3, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-03-14-01', 1, 3, 1, 5, 3, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-03-15-01', 1, 3, 1, 5, 3, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-03-16-01', 1, 3, 1, 5, 3, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-03-17-01', 1, 3, 1, 5, 3, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-03-18-01', 1, 3, 1, 5, 3, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-03-19-01', 1, 3, 1, 5, 3, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-03-20-01', 1, 3, 1, 5, 3, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-03-21-01', 1, 3, 1, 5, 3, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-03-22-01', 1, 3, 1, 5, 3, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-04-01-01', 1, 3, 1, 5, 4, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-04-02-01', 1, 3, 1, 5, 4, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-04-03-01', 1, 3, 1, 5, 4, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-04-04-01', 1, 3, 1, 5, 4, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-04-05-01', 1, 3, 1, 5, 4, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-04-06-01', 1, 3, 1, 5, 4, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-04-07-01', 1, 3, 1, 5, 4, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-04-08-01', 1, 3, 1, 5, 4, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-04-09-01', 1, 3, 1, 5, 4, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-04-10-01', 1, 3, 1, 5, 4, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-04-11-01', 1, 3, 1, 5, 4, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-04-12-01', 1, 3, 1, 5, 4, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-04-13-01', 1, 3, 1, 5, 4, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-04-14-01', 1, 3, 1, 5, 4, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-04-15-01', 1, 3, 1, 5, 4, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-04-16-01', 1, 3, 1, 5, 4, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-04-17-01', 1, 3, 1, 5, 4, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-04-18-01', 1, 3, 1, 5, 4, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-04-19-01', 1, 3, 1, 5, 4, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-04-20-01', 1, 3, 1, 5, 4, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-04-21-01', 1, 3, 1, 5, 4, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-04-22-01', 1, 3, 1, 5, 4, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-05-01-01', 1, 3, 1, 5, 5, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-05-02-01', 1, 3, 1, 5, 5, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-05-03-01', 1, 3, 1, 5, 5, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-05-04-01', 1, 3, 1, 5, 5, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-05-05-01', 1, 3, 1, 5, 5, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-05-06-01', 1, 3, 1, 5, 5, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-05-07-01', 1, 3, 1, 5, 5, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-05-08-01', 1, 3, 1, 5, 5, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-05-09-01', 1, 3, 1, 5, 5, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-05-10-01', 1, 3, 1, 5, 5, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-05-11-01', 1, 3, 1, 5, 5, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-05-12-01', 1, 3, 1, 5, 5, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-05-13-01', 1, 3, 1, 5, 5, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-05-14-01', 1, 3, 1, 5, 5, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-05-15-01', 1, 3, 1, 5, 5, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-05-16-01', 1, 3, 1, 5, 5, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-05-17-01', 1, 3, 1, 5, 5, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-05-18-01', 1, 3, 1, 5, 5, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-05-19-01', 1, 3, 1, 5, 5, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-05-20-01', 1, 3, 1, 5, 5, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-05-21-01', 1, 3, 1, 5, 5, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-05-22-01', 1, 3, 1, 5, 5, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-06-01-01', 1, 3, 1, 5, 6, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-06-02-01', 1, 3, 1, 5, 6, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-06-03-01', 1, 3, 1, 5, 6, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-06-04-01', 1, 3, 1, 5, 6, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-06-05-01', 1, 3, 1, 5, 6, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-06-06-01', 1, 3, 1, 5, 6, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-06-07-01', 1, 3, 1, 5, 6, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-06-08-01', 1, 3, 1, 5, 6, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-06-09-01', 1, 3, 1, 5, 6, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-06-10-01', 1, 3, 1, 5, 6, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-06-11-01', 1, 3, 1, 5, 6, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-06-12-01', 1, 3, 1, 5, 6, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-06-13-01', 1, 3, 1, 5, 6, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-06-14-01', 1, 3, 1, 5, 6, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-06-15-01', 1, 3, 1, 5, 6, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-06-16-01', 1, 3, 1, 5, 6, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-06-17-01', 1, 3, 1, 5, 6, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-06-18-01', 1, 3, 1, 5, 6, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-06-19-01', 1, 3, 1, 5, 6, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-06-20-01', 1, 3, 1, 5, 6, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-06-21-01', 1, 3, 1, 5, 6, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-06-22-01', 1, 3, 1, 5, 6, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-07-01-01', 1, 3, 1, 5, 7, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-07-02-01', 1, 3, 1, 5, 7, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-07-03-01', 1, 3, 1, 5, 7, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-07-04-01', 1, 3, 1, 5, 7, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-07-05-01', 1, 3, 1, 5, 7, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-07-06-01', 1, 3, 1, 5, 7, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-07-07-01', 1, 3, 1, 5, 7, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-07-08-01', 1, 3, 1, 5, 7, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-07-09-01', 1, 3, 1, 5, 7, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-07-10-01', 1, 3, 1, 5, 7, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-07-11-01', 1, 3, 1, 5, 7, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-07-12-01', 1, 3, 1, 5, 7, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-07-13-01', 1, 3, 1, 5, 7, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-07-14-01', 1, 3, 1, 5, 7, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-07-15-01', 1, 3, 1, 5, 7, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-07-16-01', 1, 3, 1, 5, 7, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-07-17-01', 1, 3, 1, 5, 7, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-07-18-01', 1, 3, 1, 5, 7, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-07-19-01', 1, 3, 1, 5, 7, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-07-20-01', 1, 3, 1, 5, 7, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-07-21-01', 1, 3, 1, 5, 7, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-07-22-01', 1, 3, 1, 5, 7, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-08-01-01', 1, 3, 1, 5, 8, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-08-02-01', 1, 3, 1, 5, 8, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-08-03-01', 1, 3, 1, 5, 8, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-08-04-01', 1, 3, 1, 5, 8, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-08-05-01', 1, 3, 1, 5, 8, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-08-06-01', 1, 3, 1, 5, 8, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-08-07-01', 1, 3, 1, 5, 8, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-08-08-01', 1, 3, 1, 5, 8, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-08-09-01', 1, 3, 1, 5, 8, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-08-10-01', 1, 3, 1, 5, 8, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-08-11-01', 1, 3, 1, 5, 8, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-08-12-01', 1, 3, 1, 5, 8, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-08-13-01', 1, 3, 1, 5, 8, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-08-14-01', 1, 3, 1, 5, 8, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-08-15-01', 1, 3, 1, 5, 8, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-08-16-01', 1, 3, 1, 5, 8, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-08-17-01', 1, 3, 1, 5, 8, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-08-18-01', 1, 3, 1, 5, 8, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-08-19-01', 1, 3, 1, 5, 8, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-08-20-01', 1, 3, 1, 5, 8, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-08-21-01', 1, 3, 1, 5, 8, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-08-22-01', 1, 3, 1, 5, 8, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-09-01-01', 1, 3, 1, 5, 9, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-09-02-01', 1, 3, 1, 5, 9, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-09-03-01', 1, 3, 1, 5, 9, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-09-04-01', 1, 3, 1, 5, 9, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-09-05-01', 1, 3, 1, 5, 9, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-09-06-01', 1, 3, 1, 5, 9, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-09-07-01', 1, 3, 1, 5, 9, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-09-08-01', 1, 3, 1, 5, 9, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-09-09-01', 1, 3, 1, 5, 9, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-09-10-01', 1, 3, 1, 5, 9, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-09-11-01', 1, 3, 1, 5, 9, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-09-12-01', 1, 3, 1, 5, 9, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-09-13-01', 1, 3, 1, 5, 9, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-09-14-01', 1, 3, 1, 5, 9, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-09-15-01', 1, 3, 1, 5, 9, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-09-16-01', 1, 3, 1, 5, 9, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-09-17-01', 1, 3, 1, 5, 9, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-09-18-01', 1, 3, 1, 5, 9, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-09-19-01', 1, 3, 1, 5, 9, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-09-20-01', 1, 3, 1, 5, 9, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-09-21-01', 1, 3, 1, 5, 9, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-09-22-01', 1, 3, 1, 5, 9, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-10-01-01', 1, 3, 1, 5, 10, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-10-02-01', 1, 3, 1, 5, 10, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-10-03-01', 1, 3, 1, 5, 10, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-10-04-01', 1, 3, 1, 5, 10, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-10-05-01', 1, 3, 1, 5, 10, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-10-06-01', 1, 3, 1, 5, 10, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-10-07-01', 1, 3, 1, 5, 10, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-10-08-01', 1, 3, 1, 5, 10, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-10-09-01', 1, 3, 1, 5, 10, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-10-10-01', 1, 3, 1, 5, 10, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-10-11-01', 1, 3, 1, 5, 10, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-10-12-01', 1, 3, 1, 5, 10, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-10-13-01', 1, 3, 1, 5, 10, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-10-14-01', 1, 3, 1, 5, 10, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-10-15-01', 1, 3, 1, 5, 10, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-10-16-01', 1, 3, 1, 5, 10, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-10-17-01', 1, 3, 1, 5, 10, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-10-18-01', 1, 3, 1, 5, 10, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-10-19-01', 1, 3, 1, 5, 10, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-10-20-01', 1, 3, 1, 5, 10, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-10-21-01', 1, 3, 1, 5, 10, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-10-22-01', 1, 3, 1, 5, 10, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-11-01-01', 1, 3, 1, 5, 11, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-11-02-01', 1, 3, 1, 5, 11, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-11-03-01', 1, 3, 1, 5, 11, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-11-04-01', 1, 3, 1, 5, 11, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-11-05-01', 1, 3, 1, 5, 11, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-11-06-01', 1, 3, 1, 5, 11, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-11-07-01', 1, 3, 1, 5, 11, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-11-08-01', 1, 3, 1, 5, 11, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-11-09-01', 1, 3, 1, 5, 11, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-11-10-01', 1, 3, 1, 5, 11, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-11-11-01', 1, 3, 1, 5, 11, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-11-12-01', 1, 3, 1, 5, 11, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-11-13-01', 1, 3, 1, 5, 11, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-11-14-01', 1, 3, 1, 5, 11, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-11-15-01', 1, 3, 1, 5, 11, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-11-16-01', 1, 3, 1, 5, 11, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-11-17-01', 1, 3, 1, 5, 11, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-11-18-01', 1, 3, 1, 5, 11, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-11-19-01', 1, 3, 1, 5, 11, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-11-20-01', 1, 3, 1, 5, 11, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-11-21-01', 1, 3, 1, 5, 11, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-11-22-01', 1, 3, 1, 5, 11, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-12-01-01', 1, 3, 1, 5, 12, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-12-02-01', 1, 3, 1, 5, 12, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-12-03-01', 1, 3, 1, 5, 12, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-12-04-01', 1, 3, 1, 5, 12, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-12-05-01', 1, 3, 1, 5, 12, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-12-06-01', 1, 3, 1, 5, 12, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-12-07-01', 1, 3, 1, 5, 12, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-12-08-01', 1, 3, 1, 5, 12, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-12-09-01', 1, 3, 1, 5, 12, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-12-10-01', 1, 3, 1, 5, 12, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-12-11-01', 1, 3, 1, 5, 12, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-12-12-01', 1, 3, 1, 5, 12, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-12-13-01', 1, 3, 1, 5, 12, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-12-14-01', 1, 3, 1, 5, 12, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-12-15-01', 1, 3, 1, 5, 12, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-12-16-01', 1, 3, 1, 5, 12, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-12-17-01', 1, 3, 1, 5, 12, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-12-18-01', 1, 3, 1, 5, 12, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-12-19-01', 1, 3, 1, 5, 12, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-12-20-01', 1, 3, 1, 5, 12, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-12-21-01', 1, 3, 1, 5, 12, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-12-22-01', 1, 3, 1, 5, 12, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-13-01-01', 1, 3, 1, 5, 13, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-13-02-01', 1, 3, 1, 5, 13, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-13-03-01', 1, 3, 1, 5, 13, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-13-04-01', 1, 3, 1, 5, 13, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-13-05-01', 1, 3, 1, 5, 13, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-13-06-01', 1, 3, 1, 5, 13, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-13-07-01', 1, 3, 1, 5, 13, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-13-08-01', 1, 3, 1, 5, 13, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-13-09-01', 1, 3, 1, 5, 13, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-13-10-01', 1, 3, 1, 5, 13, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-13-11-01', 1, 3, 1, 5, 13, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-13-12-01', 1, 3, 1, 5, 13, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-13-13-01', 1, 3, 1, 5, 13, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-13-14-01', 1, 3, 1, 5, 13, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-13-15-01', 1, 3, 1, 5, 13, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-13-16-01', 1, 3, 1, 5, 13, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-13-17-01', 1, 3, 1, 5, 13, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-13-18-01', 1, 3, 1, 5, 13, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-13-19-01', 1, 3, 1, 5, 13, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-13-20-01', 1, 3, 1, 5, 13, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-13-21-01', 1, 3, 1, 5, 13, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-13-22-01', 1, 3, 1, 5, 13, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-14-01-01', 1, 3, 1, 5, 14, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-14-02-01', 1, 3, 1, 5, 14, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-14-03-01', 1, 3, 1, 5, 14, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-14-04-01', 1, 3, 1, 5, 14, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-14-05-01', 1, 3, 1, 5, 14, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-14-06-01', 1, 3, 1, 5, 14, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-14-07-01', 1, 3, 1, 5, 14, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-14-08-01', 1, 3, 1, 5, 14, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-14-09-01', 1, 3, 1, 5, 14, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-14-10-01', 1, 3, 1, 5, 14, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-14-11-01', 1, 3, 1, 5, 14, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-14-12-01', 1, 3, 1, 5, 14, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-14-13-01', 1, 3, 1, 5, 14, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-14-14-01', 1, 3, 1, 5, 14, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-14-15-01', 1, 3, 1, 5, 14, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-14-16-01', 1, 3, 1, 5, 14, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-14-17-01', 1, 3, 1, 5, 14, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-14-18-01', 1, 3, 1, 5, 14, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-14-19-01', 1, 3, 1, 5, 14, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-14-20-01', 1, 3, 1, 5, 14, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-14-21-01', 1, 3, 1, 5, 14, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-14-22-01', 1, 3, 1, 5, 14, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-15-01-01', 1, 3, 1, 5, 15, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-15-02-01', 1, 3, 1, 5, 15, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-15-03-01', 1, 3, 1, 5, 15, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-15-04-01', 1, 3, 1, 5, 15, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-15-05-01', 1, 3, 1, 5, 15, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-15-06-01', 1, 3, 1, 5, 15, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-15-07-01', 1, 3, 1, 5, 15, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-15-08-01', 1, 3, 1, 5, 15, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-15-09-01', 1, 3, 1, 5, 15, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-15-10-01', 1, 3, 1, 5, 15, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-15-11-01', 1, 3, 1, 5, 15, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-15-12-01', 1, 3, 1, 5, 15, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-15-13-01', 1, 3, 1, 5, 15, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-15-14-01', 1, 3, 1, 5, 15, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-15-15-01', 1, 3, 1, 5, 15, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-15-16-01', 1, 3, 1, 5, 15, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-15-17-01', 1, 3, 1, 5, 15, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-15-18-01', 1, 3, 1, 5, 15, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-15-19-01', 1, 3, 1, 5, 15, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-15-20-01', 1, 3, 1, 5, 15, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-15-21-01', 1, 3, 1, 5, 15, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-15-22-01', 1, 3, 1, 5, 15, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-16-01-01', 1, 3, 1, 5, 16, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-16-02-01', 1, 3, 1, 5, 16, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-16-03-01', 1, 3, 1, 5, 16, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-16-04-01', 1, 3, 1, 5, 16, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-16-05-01', 1, 3, 1, 5, 16, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-16-06-01', 1, 3, 1, 5, 16, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-16-07-01', 1, 3, 1, 5, 16, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-16-08-01', 1, 3, 1, 5, 16, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-16-09-01', 1, 3, 1, 5, 16, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-16-10-01', 1, 3, 1, 5, 16, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-16-11-01', 1, 3, 1, 5, 16, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-16-12-01', 1, 3, 1, 5, 16, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-16-13-01', 1, 3, 1, 5, 16, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-16-14-01', 1, 3, 1, 5, 16, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-16-15-01', 1, 3, 1, 5, 16, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-16-16-01', 1, 3, 1, 5, 16, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-16-17-01', 1, 3, 1, 5, 16, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-16-18-01', 1, 3, 1, 5, 16, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-16-19-01', 1, 3, 1, 5, 16, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-16-20-01', 1, 3, 1, 5, 16, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-16-21-01', 1, 3, 1, 5, 16, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-16-22-01', 1, 3, 1, 5, 16, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-17-01-01', 1, 3, 1, 5, 17, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-17-02-01', 1, 3, 1, 5, 17, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-17-03-01', 1, 3, 1, 5, 17, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-17-04-01', 1, 3, 1, 5, 17, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-17-05-01', 1, 3, 1, 5, 17, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-17-06-01', 1, 3, 1, 5, 17, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-17-07-01', 1, 3, 1, 5, 17, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-17-08-01', 1, 3, 1, 5, 17, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-17-09-01', 1, 3, 1, 5, 17, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-17-10-01', 1, 3, 1, 5, 17, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-17-11-01', 1, 3, 1, 5, 17, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-17-12-01', 1, 3, 1, 5, 17, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-17-13-01', 1, 3, 1, 5, 17, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-17-14-01', 1, 3, 1, 5, 17, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-17-15-01', 1, 3, 1, 5, 17, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-17-16-01', 1, 3, 1, 5, 17, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-17-17-01', 1, 3, 1, 5, 17, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-17-18-01', 1, 3, 1, 5, 17, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-17-19-01', 1, 3, 1, 5, 17, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-17-20-01', 1, 3, 1, 5, 17, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-17-21-01', 1, 3, 1, 5, 17, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-17-22-01', 1, 3, 1, 5, 17, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-18-01-01', 1, 3, 1, 5, 18, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-18-02-01', 1, 3, 1, 5, 18, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-18-03-01', 1, 3, 1, 5, 18, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-18-04-01', 1, 3, 1, 5, 18, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-18-05-01', 1, 3, 1, 5, 18, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-18-06-01', 1, 3, 1, 5, 18, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-18-07-01', 1, 3, 1, 5, 18, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-18-08-01', 1, 3, 1, 5, 18, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-18-09-01', 1, 3, 1, 5, 18, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-18-10-01', 1, 3, 1, 5, 18, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-18-11-01', 1, 3, 1, 5, 18, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-18-12-01', 1, 3, 1, 5, 18, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-18-13-01', 1, 3, 1, 5, 18, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-18-14-01', 1, 3, 1, 5, 18, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-18-15-01', 1, 3, 1, 5, 18, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-18-16-01', 1, 3, 1, 5, 18, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-18-17-01', 1, 3, 1, 5, 18, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-18-18-01', 1, 3, 1, 5, 18, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-18-19-01', 1, 3, 1, 5, 18, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-18-20-01', 1, 3, 1, 5, 18, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-18-21-01', 1, 3, 1, 5, 18, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-18-22-01', 1, 3, 1, 5, 18, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-19-01-01', 1, 3, 1, 5, 19, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-19-02-01', 1, 3, 1, 5, 19, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-19-03-01', 1, 3, 1, 5, 19, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-19-04-01', 1, 3, 1, 5, 19, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-19-05-01', 1, 3, 1, 5, 19, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-19-06-01', 1, 3, 1, 5, 19, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-19-07-01', 1, 3, 1, 5, 19, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-19-08-01', 1, 3, 1, 5, 19, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-19-09-01', 1, 3, 1, 5, 19, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-19-10-01', 1, 3, 1, 5, 19, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-19-11-01', 1, 3, 1, 5, 19, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-19-12-01', 1, 3, 1, 5, 19, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-19-13-01', 1, 3, 1, 5, 19, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-19-14-01', 1, 3, 1, 5, 19, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-19-15-01', 1, 3, 1, 5, 19, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-19-16-01', 1, 3, 1, 5, 19, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-19-17-01', 1, 3, 1, 5, 19, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-19-18-01', 1, 3, 1, 5, 19, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-19-19-01', 1, 3, 1, 5, 19, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-19-20-01', 1, 3, 1, 5, 19, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-19-21-01', 1, 3, 1, 5, 19, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-19-22-01', 1, 3, 1, 5, 19, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-20-01-01', 1, 3, 1, 5, 20, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-20-02-01', 1, 3, 1, 5, 20, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-20-03-01', 1, 3, 1, 5, 20, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-20-04-01', 1, 3, 1, 5, 20, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-20-05-01', 1, 3, 1, 5, 20, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-20-06-01', 1, 3, 1, 5, 20, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-20-07-01', 1, 3, 1, 5, 20, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-20-08-01', 1, 3, 1, 5, 20, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-20-09-01', 1, 3, 1, 5, 20, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-20-10-01', 1, 3, 1, 5, 20, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-20-11-01', 1, 3, 1, 5, 20, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-20-12-01', 1, 3, 1, 5, 20, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-20-13-01', 1, 3, 1, 5, 20, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-20-14-01', 1, 3, 1, 5, 20, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-20-15-01', 1, 3, 1, 5, 20, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-20-16-01', 1, 3, 1, 5, 20, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-20-17-01', 1, 3, 1, 5, 20, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-20-18-01', 1, 3, 1, 5, 20, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-20-19-01', 1, 3, 1, 5, 20, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-20-20-01', 1, 3, 1, 5, 20, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-20-21-01', 1, 3, 1, 5, 20, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-20-22-01', 1, 3, 1, 5, 20, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-21-01-01', 1, 3, 1, 5, 21, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-21-02-01', 1, 3, 1, 5, 21, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-21-03-01', 1, 3, 1, 5, 21, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-21-04-01', 1, 3, 1, 5, 21, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-21-05-01', 1, 3, 1, 5, 21, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-21-06-01', 1, 3, 1, 5, 21, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-21-07-01', 1, 3, 1, 5, 21, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-21-08-01', 1, 3, 1, 5, 21, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-21-09-01', 1, 3, 1, 5, 21, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-21-10-01', 1, 3, 1, 5, 21, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-21-11-01', 1, 3, 1, 5, 21, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-21-12-01', 1, 3, 1, 5, 21, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-21-13-01', 1, 3, 1, 5, 21, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-21-14-01', 1, 3, 1, 5, 21, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-21-15-01', 1, 3, 1, 5, 21, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-21-16-01', 1, 3, 1, 5, 21, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-21-17-01', 1, 3, 1, 5, 21, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-21-18-01', 1, 3, 1, 5, 21, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-21-19-01', 1, 3, 1, 5, 21, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-21-20-01', 1, 3, 1, 5, 21, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-21-21-01', 1, 3, 1, 5, 21, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-21-22-01', 1, 3, 1, 5, 21, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-22-01-01', 1, 3, 1, 5, 22, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-22-02-01', 1, 3, 1, 5, 22, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-22-03-01', 1, 3, 1, 5, 22, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-22-04-01', 1, 3, 1, 5, 22, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-22-05-01', 1, 3, 1, 5, 22, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-22-06-01', 1, 3, 1, 5, 22, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-22-07-01', 1, 3, 1, 5, 22, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-22-08-01', 1, 3, 1, 5, 22, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-22-09-01', 1, 3, 1, 5, 22, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-22-10-01', 1, 3, 1, 5, 22, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-22-11-01', 1, 3, 1, 5, 22, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-22-12-01', 1, 3, 1, 5, 22, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-22-13-01', 1, 3, 1, 5, 22, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-22-14-01', 1, 3, 1, 5, 22, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-22-15-01', 1, 3, 1, 5, 22, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-22-16-01', 1, 3, 1, 5, 22, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-22-17-01', 1, 3, 1, 5, 22, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-22-18-01', 1, 3, 1, 5, 22, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-22-19-01', 1, 3, 1, 5, 22, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-22-20-01', 1, 3, 1, 5, 22, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-22-21-01', 1, 3, 1, 5, 22, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-22-22-01', 1, 3, 1, 5, 22, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-23-01-01', 1, 3, 1, 5, 23, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-23-02-01', 1, 3, 1, 5, 23, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-23-03-01', 1, 3, 1, 5, 23, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-23-04-01', 1, 3, 1, 5, 23, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-23-05-01', 1, 3, 1, 5, 23, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-23-06-01', 1, 3, 1, 5, 23, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-23-07-01', 1, 3, 1, 5, 23, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-23-08-01', 1, 3, 1, 5, 23, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-23-09-01', 1, 3, 1, 5, 23, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-23-10-01', 1, 3, 1, 5, 23, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-23-11-01', 1, 3, 1, 5, 23, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-23-12-01', 1, 3, 1, 5, 23, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-23-13-01', 1, 3, 1, 5, 23, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-23-14-01', 1, 3, 1, 5, 23, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-23-15-01', 1, 3, 1, 5, 23, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-23-16-01', 1, 3, 1, 5, 23, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-23-17-01', 1, 3, 1, 5, 23, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-23-18-01', 1, 3, 1, 5, 23, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-23-19-01', 1, 3, 1, 5, 23, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-23-20-01', 1, 3, 1, 5, 23, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-23-21-01', 1, 3, 1, 5, 23, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-23-22-01', 1, 3, 1, 5, 23, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-24-01-01', 1, 3, 1, 5, 24, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-24-02-01', 1, 3, 1, 5, 24, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-24-03-01', 1, 3, 1, 5, 24, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-24-04-01', 1, 3, 1, 5, 24, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-24-05-01', 1, 3, 1, 5, 24, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-24-06-01', 1, 3, 1, 5, 24, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-24-07-01', 1, 3, 1, 5, 24, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-24-08-01', 1, 3, 1, 5, 24, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-24-09-01', 1, 3, 1, 5, 24, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-24-10-01', 1, 3, 1, 5, 24, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-24-11-01', 1, 3, 1, 5, 24, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-24-12-01', 1, 3, 1, 5, 24, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-24-13-01', 1, 3, 1, 5, 24, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-24-14-01', 1, 3, 1, 5, 24, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-24-15-01', 1, 3, 1, 5, 24, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-24-16-01', 1, 3, 1, 5, 24, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-24-17-01', 1, 3, 1, 5, 24, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-24-18-01', 1, 3, 1, 5, 24, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-24-19-01', 1, 3, 1, 5, 24, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-24-20-01', 1, 3, 1, 5, 24, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-24-21-01', 1, 3, 1, 5, 24, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-24-22-01', 1, 3, 1, 5, 24, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-25-01-01', 1, 3, 1, 5, 25, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-25-02-01', 1, 3, 1, 5, 25, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-25-03-01', 1, 3, 1, 5, 25, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-25-04-01', 1, 3, 1, 5, 25, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-25-05-01', 1, 3, 1, 5, 25, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-25-06-01', 1, 3, 1, 5, 25, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-25-07-01', 1, 3, 1, 5, 25, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-25-08-01', 1, 3, 1, 5, 25, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-25-09-01', 1, 3, 1, 5, 25, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-25-10-01', 1, 3, 1, 5, 25, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-25-11-01', 1, 3, 1, 5, 25, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-25-12-01', 1, 3, 1, 5, 25, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-25-13-01', 1, 3, 1, 5, 25, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-25-14-01', 1, 3, 1, 5, 25, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-25-15-01', 1, 3, 1, 5, 25, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-25-16-01', 1, 3, 1, 5, 25, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-25-17-01', 1, 3, 1, 5, 25, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-25-18-01', 1, 3, 1, 5, 25, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-25-19-01', 1, 3, 1, 5, 25, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-25-20-01', 1, 3, 1, 5, 25, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-25-21-01', 1, 3, 1, 5, 25, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-25-22-01', 1, 3, 1, 5, 25, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-26-01-01', 1, 3, 1, 5, 26, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-26-02-01', 1, 3, 1, 5, 26, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-26-03-01', 1, 3, 1, 5, 26, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-26-04-01', 1, 3, 1, 5, 26, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-26-05-01', 1, 3, 1, 5, 26, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-26-06-01', 1, 3, 1, 5, 26, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-26-07-01', 1, 3, 1, 5, 26, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-26-08-01', 1, 3, 1, 5, 26, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-26-09-01', 1, 3, 1, 5, 26, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-26-10-01', 1, 3, 1, 5, 26, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-26-11-01', 1, 3, 1, 5, 26, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-26-12-01', 1, 3, 1, 5, 26, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-26-13-01', 1, 3, 1, 5, 26, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-26-14-01', 1, 3, 1, 5, 26, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-26-15-01', 1, 3, 1, 5, 26, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-26-16-01', 1, 3, 1, 5, 26, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-26-17-01', 1, 3, 1, 5, 26, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-26-18-01', 1, 3, 1, 5, 26, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-26-19-01', 1, 3, 1, 5, 26, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-26-20-01', 1, 3, 1, 5, 26, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-26-21-01', 1, 3, 1, 5, 26, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-26-22-01', 1, 3, 1, 5, 26, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-27-01-01', 1, 3, 1, 5, 27, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-27-02-01', 1, 3, 1, 5, 27, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-27-03-01', 1, 3, 1, 5, 27, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-27-04-01', 1, 3, 1, 5, 27, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-27-05-01', 1, 3, 1, 5, 27, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-27-06-01', 1, 3, 1, 5, 27, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-27-07-01', 1, 3, 1, 5, 27, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-27-08-01', 1, 3, 1, 5, 27, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-27-09-01', 1, 3, 1, 5, 27, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-27-10-01', 1, 3, 1, 5, 27, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-27-11-01', 1, 3, 1, 5, 27, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-27-12-01', 1, 3, 1, 5, 27, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-27-13-01', 1, 3, 1, 5, 27, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-27-14-01', 1, 3, 1, 5, 27, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-27-15-01', 1, 3, 1, 5, 27, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-27-16-01', 1, 3, 1, 5, 27, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-27-17-01', 1, 3, 1, 5, 27, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-27-18-01', 1, 3, 1, 5, 27, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-27-19-01', 1, 3, 1, 5, 27, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-27-20-01', 1, 3, 1, 5, 27, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-27-21-01', 1, 3, 1, 5, 27, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-27-22-01', 1, 3, 1, 5, 27, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-28-01-01', 1, 3, 1, 5, 28, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-28-02-01', 1, 3, 1, 5, 28, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-28-03-01', 1, 3, 1, 5, 28, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-28-04-01', 1, 3, 1, 5, 28, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-28-05-01', 1, 3, 1, 5, 28, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-28-06-01', 1, 3, 1, 5, 28, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-28-07-01', 1, 3, 1, 5, 28, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-28-08-01', 1, 3, 1, 5, 28, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-28-09-01', 1, 3, 1, 5, 28, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-28-10-01', 1, 3, 1, 5, 28, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-28-11-01', 1, 3, 1, 5, 28, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-28-12-01', 1, 3, 1, 5, 28, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-28-13-01', 1, 3, 1, 5, 28, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-28-14-01', 1, 3, 1, 5, 28, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-28-15-01', 1, 3, 1, 5, 28, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-28-16-01', 1, 3, 1, 5, 28, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-28-17-01', 1, 3, 1, 5, 28, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-28-18-01', 1, 3, 1, 5, 28, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-28-19-01', 1, 3, 1, 5, 28, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-28-20-01', 1, 3, 1, 5, 28, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-28-21-01', 1, 3, 1, 5, 28, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-28-22-01', 1, 3, 1, 5, 28, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-29-01-01', 1, 3, 1, 5, 29, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-29-02-01', 1, 3, 1, 5, 29, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-29-03-01', 1, 3, 1, 5, 29, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-29-04-01', 1, 3, 1, 5, 29, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-29-05-01', 1, 3, 1, 5, 29, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-29-06-01', 1, 3, 1, 5, 29, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-29-07-01', 1, 3, 1, 5, 29, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-29-08-01', 1, 3, 1, 5, 29, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-29-09-01', 1, 3, 1, 5, 29, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-29-10-01', 1, 3, 1, 5, 29, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-29-11-01', 1, 3, 1, 5, 29, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-29-12-01', 1, 3, 1, 5, 29, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-29-13-01', 1, 3, 1, 5, 29, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-29-14-01', 1, 3, 1, 5, 29, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-29-15-01', 1, 3, 1, 5, 29, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-29-16-01', 1, 3, 1, 5, 29, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-29-17-01', 1, 3, 1, 5, 29, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-29-18-01', 1, 3, 1, 5, 29, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-29-19-01', 1, 3, 1, 5, 29, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-29-20-01', 1, 3, 1, 5, 29, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-29-21-01', 1, 3, 1, 5, 29, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-29-22-01', 1, 3, 1, 5, 29, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-30-01-01', 1, 3, 1, 5, 30, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-30-02-01', 1, 3, 1, 5, 30, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-30-03-01', 1, 3, 1, 5, 30, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-30-04-01', 1, 3, 1, 5, 30, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-30-05-01', 1, 3, 1, 5, 30, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-30-06-01', 1, 3, 1, 5, 30, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-30-07-01', 1, 3, 1, 5, 30, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-30-08-01', 1, 3, 1, 5, 30, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-30-09-01', 1, 3, 1, 5, 30, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-30-10-01', 1, 3, 1, 5, 30, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-30-11-01', 1, 3, 1, 5, 30, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-30-12-01', 1, 3, 1, 5, 30, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-30-13-01', 1, 3, 1, 5, 30, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-30-14-01', 1, 3, 1, 5, 30, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-30-15-01', 1, 3, 1, 5, 30, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-30-16-01', 1, 3, 1, 5, 30, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-30-17-01', 1, 3, 1, 5, 30, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-30-18-01', 1, 3, 1, 5, 30, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-30-19-01', 1, 3, 1, 5, 30, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-30-20-01', 1, 3, 1, 5, 30, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-30-21-01', 1, 3, 1, 5, 30, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-30-22-01', 1, 3, 1, 5, 30, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-31-01-01', 1, 3, 1, 5, 31, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-31-02-01', 1, 3, 1, 5, 31, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-31-03-01', 1, 3, 1, 5, 31, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-31-04-01', 1, 3, 1, 5, 31, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-31-05-01', 1, 3, 1, 5, 31, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-31-06-01', 1, 3, 1, 5, 31, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-31-07-01', 1, 3, 1, 5, 31, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-31-08-01', 1, 3, 1, 5, 31, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-31-09-01', 1, 3, 1, 5, 31, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-31-10-01', 1, 3, 1, 5, 31, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-31-11-01', 1, 3, 1, 5, 31, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-31-12-01', 1, 3, 1, 5, 31, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-31-13-01', 1, 3, 1, 5, 31, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-31-14-01', 1, 3, 1, 5, 31, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-31-15-01', 1, 3, 1, 5, 31, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-31-16-01', 1, 3, 1, 5, 31, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-31-17-01', 1, 3, 1, 5, 31, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-31-18-01', 1, 3, 1, 5, 31, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-31-19-01', 1, 3, 1, 5, 31, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-31-20-01', 1, 3, 1, 5, 31, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-31-21-01', 1, 3, 1, 5, 31, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-31-22-01', 1, 3, 1, 5, 31, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-32-01-01', 1, 3, 1, 5, 32, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-32-02-01', 1, 3, 1, 5, 32, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-32-03-01', 1, 3, 1, 5, 32, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-32-04-01', 1, 3, 1, 5, 32, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-32-05-01', 1, 3, 1, 5, 32, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-32-06-01', 1, 3, 1, 5, 32, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-32-07-01', 1, 3, 1, 5, 32, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-32-08-01', 1, 3, 1, 5, 32, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-32-09-01', 1, 3, 1, 5, 32, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-32-10-01', 1, 3, 1, 5, 32, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-32-11-01', 1, 3, 1, 5, 32, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-32-12-01', 1, 3, 1, 5, 32, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-32-13-01', 1, 3, 1, 5, 32, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-32-14-01', 1, 3, 1, 5, 32, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-32-15-01', 1, 3, 1, 5, 32, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-32-16-01', 1, 3, 1, 5, 32, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-32-17-01', 1, 3, 1, 5, 32, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-32-18-01', 1, 3, 1, 5, 32, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-32-19-01', 1, 3, 1, 5, 32, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-32-20-01', 1, 3, 1, 5, 32, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-32-21-01', 1, 3, 1, 5, 32, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-32-22-01', 1, 3, 1, 5, 32, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-33-01-01', 1, 3, 1, 5, 33, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-33-02-01', 1, 3, 1, 5, 33, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-33-03-01', 1, 3, 1, 5, 33, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-33-04-01', 1, 3, 1, 5, 33, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-33-05-01', 1, 3, 1, 5, 33, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-33-06-01', 1, 3, 1, 5, 33, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-33-07-01', 1, 3, 1, 5, 33, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-33-08-01', 1, 3, 1, 5, 33, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-33-09-01', 1, 3, 1, 5, 33, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-33-10-01', 1, 3, 1, 5, 33, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-33-11-01', 1, 3, 1, 5, 33, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-33-12-01', 1, 3, 1, 5, 33, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-33-13-01', 1, 3, 1, 5, 33, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-33-14-01', 1, 3, 1, 5, 33, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-33-15-01', 1, 3, 1, 5, 33, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-33-16-01', 1, 3, 1, 5, 33, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-33-17-01', 1, 3, 1, 5, 33, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-33-18-01', 1, 3, 1, 5, 33, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-33-19-01', 1, 3, 1, 5, 33, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-33-20-01', 1, 3, 1, 5, 33, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-33-21-01', 1, 3, 1, 5, 33, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-33-22-01', 1, 3, 1, 5, 33, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-34-01-01', 1, 3, 1, 5, 34, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-34-02-01', 1, 3, 1, 5, 34, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-34-03-01', 1, 3, 1, 5, 34, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-34-04-01', 1, 3, 1, 5, 34, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-34-05-01', 1, 3, 1, 5, 34, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-34-06-01', 1, 3, 1, 5, 34, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-34-07-01', 1, 3, 1, 5, 34, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-34-08-01', 1, 3, 1, 5, 34, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-34-09-01', 1, 3, 1, 5, 34, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-34-10-01', 1, 3, 1, 5, 34, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-34-11-01', 1, 3, 1, 5, 34, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-34-12-01', 1, 3, 1, 5, 34, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-34-13-01', 1, 3, 1, 5, 34, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-34-14-01', 1, 3, 1, 5, 34, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-34-15-01', 1, 3, 1, 5, 34, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-34-16-01', 1, 3, 1, 5, 34, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-34-17-01', 1, 3, 1, 5, 34, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-34-18-01', 1, 3, 1, 5, 34, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-34-19-01', 1, 3, 1, 5, 34, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-34-20-01', 1, 3, 1, 5, 34, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-34-21-01', 1, 3, 1, 5, 34, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-34-22-01', 1, 3, 1, 5, 34, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-35-01-01', 1, 3, 1, 5, 35, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-35-02-01', 1, 3, 1, 5, 35, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-35-03-01', 1, 3, 1, 5, 35, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-35-04-01', 1, 3, 1, 5, 35, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-35-05-01', 1, 3, 1, 5, 35, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-35-06-01', 1, 3, 1, 5, 35, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-35-07-01', 1, 3, 1, 5, 35, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-35-08-01', 1, 3, 1, 5, 35, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-35-09-01', 1, 3, 1, 5, 35, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-35-10-01', 1, 3, 1, 5, 35, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-35-11-01', 1, 3, 1, 5, 35, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-35-12-01', 1, 3, 1, 5, 35, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-35-13-01', 1, 3, 1, 5, 35, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-35-14-01', 1, 3, 1, 5, 35, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-35-15-01', 1, 3, 1, 5, 35, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-35-16-01', 1, 3, 1, 5, 35, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-35-17-01', 1, 3, 1, 5, 35, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-35-18-01', 1, 3, 1, 5, 35, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-35-19-01', 1, 3, 1, 5, 35, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-35-20-01', 1, 3, 1, 5, 35, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-35-21-01', 1, 3, 1, 5, 35, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-35-22-01', 1, 3, 1, 5, 35, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-36-01-01', 1, 3, 1, 5, 36, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-36-02-01', 1, 3, 1, 5, 36, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-36-03-01', 1, 3, 1, 5, 36, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-36-04-01', 1, 3, 1, 5, 36, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-36-05-01', 1, 3, 1, 5, 36, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-36-06-01', 1, 3, 1, 5, 36, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-36-07-01', 1, 3, 1, 5, 36, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-36-08-01', 1, 3, 1, 5, 36, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-36-09-01', 1, 3, 1, 5, 36, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-36-10-01', 1, 3, 1, 5, 36, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-36-11-01', 1, 3, 1, 5, 36, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-36-12-01', 1, 3, 1, 5, 36, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-36-13-01', 1, 3, 1, 5, 36, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-36-14-01', 1, 3, 1, 5, 36, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-36-15-01', 1, 3, 1, 5, 36, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-36-16-01', 1, 3, 1, 5, 36, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-36-17-01', 1, 3, 1, 5, 36, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-36-18-01', 1, 3, 1, 5, 36, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-36-19-01', 1, 3, 1, 5, 36, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-36-20-01', 1, 3, 1, 5, 36, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-36-21-01', 1, 3, 1, 5, 36, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-36-22-01', 1, 3, 1, 5, 36, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-37-01-01', 1, 3, 1, 5, 37, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-37-02-01', 1, 3, 1, 5, 37, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-37-03-01', 1, 3, 1, 5, 37, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-37-04-01', 1, 3, 1, 5, 37, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-37-05-01', 1, 3, 1, 5, 37, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-37-06-01', 1, 3, 1, 5, 37, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-37-07-01', 1, 3, 1, 5, 37, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-37-08-01', 1, 3, 1, 5, 37, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-37-09-01', 1, 3, 1, 5, 37, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-37-10-01', 1, 3, 1, 5, 37, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-37-11-01', 1, 3, 1, 5, 37, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-37-12-01', 1, 3, 1, 5, 37, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-37-13-01', 1, 3, 1, 5, 37, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-37-14-01', 1, 3, 1, 5, 37, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-37-15-01', 1, 3, 1, 5, 37, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-37-16-01', 1, 3, 1, 5, 37, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-37-17-01', 1, 3, 1, 5, 37, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-37-18-01', 1, 3, 1, 5, 37, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-37-19-01', 1, 3, 1, 5, 37, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-37-20-01', 1, 3, 1, 5, 37, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-37-21-01', 1, 3, 1, 5, 37, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-37-22-01', 1, 3, 1, 5, 37, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-38-01-01', 1, 3, 1, 5, 38, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-38-02-01', 1, 3, 1, 5, 38, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-38-03-01', 1, 3, 1, 5, 38, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-38-04-01', 1, 3, 1, 5, 38, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-38-05-01', 1, 3, 1, 5, 38, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-38-06-01', 1, 3, 1, 5, 38, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-38-07-01', 1, 3, 1, 5, 38, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-38-08-01', 1, 3, 1, 5, 38, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-38-09-01', 1, 3, 1, 5, 38, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-38-10-01', 1, 3, 1, 5, 38, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-38-11-01', 1, 3, 1, 5, 38, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-38-12-01', 1, 3, 1, 5, 38, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-38-13-01', 1, 3, 1, 5, 38, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-38-14-01', 1, 3, 1, 5, 38, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-38-15-01', 1, 3, 1, 5, 38, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-38-16-01', 1, 3, 1, 5, 38, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-38-17-01', 1, 3, 1, 5, 38, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-38-18-01', 1, 3, 1, 5, 38, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-38-19-01', 1, 3, 1, 5, 38, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-38-20-01', 1, 3, 1, 5, 38, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-38-21-01', 1, 3, 1, 5, 38, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-38-22-01', 1, 3, 1, 5, 38, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-39-01-01', 1, 3, 1, 5, 39, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-39-02-01', 1, 3, 1, 5, 39, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-39-03-01', 1, 3, 1, 5, 39, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-39-04-01', 1, 3, 1, 5, 39, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-39-05-01', 1, 3, 1, 5, 39, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-39-06-01', 1, 3, 1, 5, 39, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-39-07-01', 1, 3, 1, 5, 39, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-39-08-01', 1, 3, 1, 5, 39, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-39-09-01', 1, 3, 1, 5, 39, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-39-10-01', 1, 3, 1, 5, 39, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-39-11-01', 1, 3, 1, 5, 39, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-39-12-01', 1, 3, 1, 5, 39, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-39-13-01', 1, 3, 1, 5, 39, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-39-14-01', 1, 3, 1, 5, 39, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-39-15-01', 1, 3, 1, 5, 39, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-39-16-01', 1, 3, 1, 5, 39, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-39-17-01', 1, 3, 1, 5, 39, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-39-18-01', 1, 3, 1, 5, 39, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-39-19-01', 1, 3, 1, 5, 39, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-39-20-01', 1, 3, 1, 5, 39, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-39-21-01', 1, 3, 1, 5, 39, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-39-22-01', 1, 3, 1, 5, 39, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-40-01-01', 1, 3, 1, 5, 40, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-40-02-01', 1, 3, 1, 5, 40, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-40-03-01', 1, 3, 1, 5, 40, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-40-04-01', 1, 3, 1, 5, 40, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-40-05-01', 1, 3, 1, 5, 40, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-40-06-01', 1, 3, 1, 5, 40, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-40-07-01', 1, 3, 1, 5, 40, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-40-08-01', 1, 3, 1, 5, 40, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-40-09-01', 1, 3, 1, 5, 40, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-40-10-01', 1, 3, 1, 5, 40, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-40-11-01', 1, 3, 1, 5, 40, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-40-12-01', 1, 3, 1, 5, 40, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-40-13-01', 1, 3, 1, 5, 40, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-40-14-01', 1, 3, 1, 5, 40, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-40-15-01', 1, 3, 1, 5, 40, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-40-16-01', 1, 3, 1, 5, 40, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-40-17-01', 1, 3, 1, 5, 40, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-40-18-01', 1, 3, 1, 5, 40, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-40-19-01', 1, 3, 1, 5, 40, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-40-20-01', 1, 3, 1, 5, 40, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-40-21-01', 1, 3, 1, 5, 40, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-40-22-01', 1, 3, 1, 5, 40, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-41-01-01', 1, 3, 1, 5, 41, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-41-02-01', 1, 3, 1, 5, 41, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-41-03-01', 1, 3, 1, 5, 41, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-41-04-01', 1, 3, 1, 5, 41, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-41-05-01', 1, 3, 1, 5, 41, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-41-06-01', 1, 3, 1, 5, 41, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-41-07-01', 1, 3, 1, 5, 41, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-41-08-01', 1, 3, 1, 5, 41, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-41-09-01', 1, 3, 1, 5, 41, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-41-10-01', 1, 3, 1, 5, 41, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-41-11-01', 1, 3, 1, 5, 41, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-41-12-01', 1, 3, 1, 5, 41, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-41-13-01', 1, 3, 1, 5, 41, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-41-14-01', 1, 3, 1, 5, 41, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-41-15-01', 1, 3, 1, 5, 41, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-41-16-01', 1, 3, 1, 5, 41, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-41-17-01', 1, 3, 1, 5, 41, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-41-18-01', 1, 3, 1, 5, 41, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-41-19-01', 1, 3, 1, 5, 41, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-41-20-01', 1, 3, 1, 5, 41, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-41-21-01', 1, 3, 1, 5, 41, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-41-22-01', 1, 3, 1, 5, 41, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-42-01-01', 1, 3, 1, 5, 42, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-42-02-01', 1, 3, 1, 5, 42, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-42-03-01', 1, 3, 1, 5, 42, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-42-04-01', 1, 3, 1, 5, 42, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-42-05-01', 1, 3, 1, 5, 42, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-42-06-01', 1, 3, 1, 5, 42, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-42-07-01', 1, 3, 1, 5, 42, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-42-08-01', 1, 3, 1, 5, 42, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-42-09-01', 1, 3, 1, 5, 42, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-42-10-01', 1, 3, 1, 5, 42, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-42-11-01', 1, 3, 1, 5, 42, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-42-12-01', 1, 3, 1, 5, 42, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-42-13-01', 1, 3, 1, 5, 42, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-42-14-01', 1, 3, 1, 5, 42, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-42-15-01', 1, 3, 1, 5, 42, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-42-16-01', 1, 3, 1, 5, 42, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-42-17-01', 1, 3, 1, 5, 42, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-42-18-01', 1, 3, 1, 5, 42, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-42-19-01', 1, 3, 1, 5, 42, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-42-20-01', 1, 3, 1, 5, 42, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-42-21-01', 1, 3, 1, 5, 42, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-42-22-01', 1, 3, 1, 5, 42, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-43-01-01', 1, 3, 1, 5, 43, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-43-02-01', 1, 3, 1, 5, 43, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-43-03-01', 1, 3, 1, 5, 43, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-43-04-01', 1, 3, 1, 5, 43, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-43-05-01', 1, 3, 1, 5, 43, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-43-06-01', 1, 3, 1, 5, 43, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-43-07-01', 1, 3, 1, 5, 43, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-43-08-01', 1, 3, 1, 5, 43, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-43-09-01', 1, 3, 1, 5, 43, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-43-10-01', 1, 3, 1, 5, 43, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-43-11-01', 1, 3, 1, 5, 43, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-43-12-01', 1, 3, 1, 5, 43, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-43-13-01', 1, 3, 1, 5, 43, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-43-14-01', 1, 3, 1, 5, 43, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-43-15-01', 1, 3, 1, 5, 43, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-43-16-01', 1, 3, 1, 5, 43, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-43-17-01', 1, 3, 1, 5, 43, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-43-18-01', 1, 3, 1, 5, 43, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-43-19-01', 1, 3, 1, 5, 43, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-43-20-01', 1, 3, 1, 5, 43, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-43-21-01', 1, 3, 1, 5, 43, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-43-22-01', 1, 3, 1, 5, 43, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-44-01-01', 1, 3, 1, 5, 44, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-44-02-01', 1, 3, 1, 5, 44, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-44-03-01', 1, 3, 1, 5, 44, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-44-04-01', 1, 3, 1, 5, 44, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-44-05-01', 1, 3, 1, 5, 44, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-44-06-01', 1, 3, 1, 5, 44, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-44-07-01', 1, 3, 1, 5, 44, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-44-08-01', 1, 3, 1, 5, 44, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-44-09-01', 1, 3, 1, 5, 44, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-44-10-01', 1, 3, 1, 5, 44, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-44-11-01', 1, 3, 1, 5, 44, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-44-12-01', 1, 3, 1, 5, 44, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-44-13-01', 1, 3, 1, 5, 44, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-44-14-01', 1, 3, 1, 5, 44, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-44-15-01', 1, 3, 1, 5, 44, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-44-16-01', 1, 3, 1, 5, 44, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-44-17-01', 1, 3, 1, 5, 44, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-44-18-01', 1, 3, 1, 5, 44, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-44-19-01', 1, 3, 1, 5, 44, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-44-20-01', 1, 3, 1, 5, 44, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-44-21-01', 1, 3, 1, 5, 44, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-44-22-01', 1, 3, 1, 5, 44, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-45-01-01', 1, 3, 1, 5, 45, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-45-02-01', 1, 3, 1, 5, 45, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-45-03-01', 1, 3, 1, 5, 45, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-45-04-01', 1, 3, 1, 5, 45, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-45-05-01', 1, 3, 1, 5, 45, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-45-06-01', 1, 3, 1, 5, 45, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-45-07-01', 1, 3, 1, 5, 45, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-45-08-01', 1, 3, 1, 5, 45, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-45-09-01', 1, 3, 1, 5, 45, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-45-10-01', 1, 3, 1, 5, 45, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-45-11-01', 1, 3, 1, 5, 45, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-45-12-01', 1, 3, 1, 5, 45, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-45-13-01', 1, 3, 1, 5, 45, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-45-14-01', 1, 3, 1, 5, 45, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-45-15-01', 1, 3, 1, 5, 45, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-45-16-01', 1, 3, 1, 5, 45, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-45-17-01', 1, 3, 1, 5, 45, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-45-18-01', 1, 3, 1, 5, 45, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-45-19-01', 1, 3, 1, 5, 45, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-45-20-01', 1, 3, 1, 5, 45, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-45-21-01', 1, 3, 1, 5, 45, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-45-22-01', 1, 3, 1, 5, 45, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-46-01-01', 1, 3, 1, 5, 46, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-46-02-01', 1, 3, 1, 5, 46, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-46-03-01', 1, 3, 1, 5, 46, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-46-04-01', 1, 3, 1, 5, 46, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-46-05-01', 1, 3, 1, 5, 46, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-46-06-01', 1, 3, 1, 5, 46, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-46-07-01', 1, 3, 1, 5, 46, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-46-08-01', 1, 3, 1, 5, 46, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-46-09-01', 1, 3, 1, 5, 46, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-46-10-01', 1, 3, 1, 5, 46, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-46-11-01', 1, 3, 1, 5, 46, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-46-12-01', 1, 3, 1, 5, 46, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-46-13-01', 1, 3, 1, 5, 46, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-46-14-01', 1, 3, 1, 5, 46, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-46-15-01', 1, 3, 1, 5, 46, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-46-16-01', 1, 3, 1, 5, 46, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-46-17-01', 1, 3, 1, 5, 46, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-46-18-01', 1, 3, 1, 5, 46, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-46-19-01', 1, 3, 1, 5, 46, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-46-20-01', 1, 3, 1, 5, 46, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-46-21-01', 1, 3, 1, 5, 46, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-46-22-01', 1, 3, 1, 5, 46, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-47-01-01', 1, 3, 1, 5, 47, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-47-02-01', 1, 3, 1, 5, 47, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-47-03-01', 1, 3, 1, 5, 47, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-47-04-01', 1, 3, 1, 5, 47, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-47-05-01', 1, 3, 1, 5, 47, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-47-06-01', 1, 3, 1, 5, 47, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-47-07-01', 1, 3, 1, 5, 47, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-47-08-01', 1, 3, 1, 5, 47, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-47-09-01', 1, 3, 1, 5, 47, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-47-10-01', 1, 3, 1, 5, 47, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-47-11-01', 1, 3, 1, 5, 47, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-47-12-01', 1, 3, 1, 5, 47, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-47-13-01', 1, 3, 1, 5, 47, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-47-14-01', 1, 3, 1, 5, 47, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-47-15-01', 1, 3, 1, 5, 47, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-47-16-01', 1, 3, 1, 5, 47, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-47-17-01', 1, 3, 1, 5, 47, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-47-18-01', 1, 3, 1, 5, 47, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-47-19-01', 1, 3, 1, 5, 47, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-47-20-01', 1, 3, 1, 5, 47, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-47-21-01', 1, 3, 1, 5, 47, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-47-22-01', 1, 3, 1, 5, 47, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-48-01-01', 1, 3, 1, 5, 48, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-48-02-01', 1, 3, 1, 5, 48, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-48-03-01', 1, 3, 1, 5, 48, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-48-04-01', 1, 3, 1, 5, 48, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-48-05-01', 1, 3, 1, 5, 48, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-48-06-01', 1, 3, 1, 5, 48, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-48-07-01', 1, 3, 1, 5, 48, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-48-08-01', 1, 3, 1, 5, 48, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-48-09-01', 1, 3, 1, 5, 48, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-48-10-01', 1, 3, 1, 5, 48, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-48-11-01', 1, 3, 1, 5, 48, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-48-12-01', 1, 3, 1, 5, 48, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-48-13-01', 1, 3, 1, 5, 48, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-48-14-01', 1, 3, 1, 5, 48, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-48-15-01', 1, 3, 1, 5, 48, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-48-16-01', 1, 3, 1, 5, 48, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-48-17-01', 1, 3, 1, 5, 48, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-48-18-01', 1, 3, 1, 5, 48, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-48-19-01', 1, 3, 1, 5, 48, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-48-20-01', 1, 3, 1, 5, 48, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-48-21-01', 1, 3, 1, 5, 48, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-48-22-01', 1, 3, 1, 5, 48, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-49-01-01', 1, 3, 1, 5, 49, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-49-02-01', 1, 3, 1, 5, 49, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-49-03-01', 1, 3, 1, 5, 49, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-49-04-01', 1, 3, 1, 5, 49, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-49-05-01', 1, 3, 1, 5, 49, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-49-06-01', 1, 3, 1, 5, 49, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-49-07-01', 1, 3, 1, 5, 49, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-49-08-01', 1, 3, 1, 5, 49, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-49-09-01', 1, 3, 1, 5, 49, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-49-10-01', 1, 3, 1, 5, 49, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-49-11-01', 1, 3, 1, 5, 49, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-49-12-01', 1, 3, 1, 5, 49, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-49-13-01', 1, 3, 1, 5, 49, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-49-14-01', 1, 3, 1, 5, 49, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-49-15-01', 1, 3, 1, 5, 49, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-49-16-01', 1, 3, 1, 5, 49, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-49-17-01', 1, 3, 1, 5, 49, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-49-18-01', 1, 3, 1, 5, 49, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-49-19-01', 1, 3, 1, 5, 49, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-49-20-01', 1, 3, 1, 5, 49, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-49-21-01', 1, 3, 1, 5, 49, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-49-22-01', 1, 3, 1, 5, 49, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-50-01-01', 1, 3, 1, 5, 50, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-50-02-01', 1, 3, 1, 5, 50, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-50-03-01', 1, 3, 1, 5, 50, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-50-04-01', 1, 3, 1, 5, 50, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-50-05-01', 1, 3, 1, 5, 50, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-50-06-01', 1, 3, 1, 5, 50, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-50-07-01', 1, 3, 1, 5, 50, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-50-08-01', 1, 3, 1, 5, 50, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-50-09-01', 1, 3, 1, 5, 50, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-50-10-01', 1, 3, 1, 5, 50, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-50-11-01', 1, 3, 1, 5, 50, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-50-12-01', 1, 3, 1, 5, 50, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-50-13-01', 1, 3, 1, 5, 50, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-50-14-01', 1, 3, 1, 5, 50, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-50-15-01', 1, 3, 1, 5, 50, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-50-16-01', 1, 3, 1, 5, 50, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-50-17-01', 1, 3, 1, 5, 50, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-50-18-01', 1, 3, 1, 5, 50, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-50-19-01', 1, 3, 1, 5, 50, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-50-20-01', 1, 3, 1, 5, 50, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-50-21-01', 1, 3, 1, 5, 50, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-50-22-01', 1, 3, 1, 5, 50, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-51-01-01', 1, 3, 1, 5, 51, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-51-02-01', 1, 3, 1, 5, 51, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-51-03-01', 1, 3, 1, 5, 51, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-51-04-01', 1, 3, 1, 5, 51, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-51-05-01', 1, 3, 1, 5, 51, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-51-06-01', 1, 3, 1, 5, 51, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-51-07-01', 1, 3, 1, 5, 51, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-51-08-01', 1, 3, 1, 5, 51, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-51-09-01', 1, 3, 1, 5, 51, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-51-10-01', 1, 3, 1, 5, 51, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-51-11-01', 1, 3, 1, 5, 51, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-51-12-01', 1, 3, 1, 5, 51, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-51-13-01', 1, 3, 1, 5, 51, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-51-14-01', 1, 3, 1, 5, 51, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-51-15-01', 1, 3, 1, 5, 51, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-51-16-01', 1, 3, 1, 5, 51, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-51-17-01', 1, 3, 1, 5, 51, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-51-18-01', 1, 3, 1, 5, 51, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-51-19-01', 1, 3, 1, 5, 51, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-51-20-01', 1, 3, 1, 5, 51, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-51-21-01', 1, 3, 1, 5, 51, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-51-22-01', 1, 3, 1, 5, 51, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-52-01-01', 1, 3, 1, 5, 52, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-52-02-01', 1, 3, 1, 5, 52, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-52-03-01', 1, 3, 1, 5, 52, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-52-04-01', 1, 3, 1, 5, 52, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-52-05-01', 1, 3, 1, 5, 52, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-52-06-01', 1, 3, 1, 5, 52, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-52-07-01', 1, 3, 1, 5, 52, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-52-08-01', 1, 3, 1, 5, 52, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-52-09-01', 1, 3, 1, 5, 52, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-52-10-01', 1, 3, 1, 5, 52, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-52-11-01', 1, 3, 1, 5, 52, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-52-12-01', 1, 3, 1, 5, 52, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-52-13-01', 1, 3, 1, 5, 52, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-52-14-01', 1, 3, 1, 5, 52, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-52-15-01', 1, 3, 1, 5, 52, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-52-16-01', 1, 3, 1, 5, 52, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-52-17-01', 1, 3, 1, 5, 52, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-52-18-01', 1, 3, 1, 5, 52, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-52-19-01', 1, 3, 1, 5, 52, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-52-20-01', 1, 3, 1, 5, 52, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-52-21-01', 1, 3, 1, 5, 52, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-52-22-01', 1, 3, 1, 5, 52, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-53-01-01', 1, 3, 1, 5, 53, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-53-02-01', 1, 3, 1, 5, 53, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-53-03-01', 1, 3, 1, 5, 53, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-53-04-01', 1, 3, 1, 5, 53, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-53-05-01', 1, 3, 1, 5, 53, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-53-06-01', 1, 3, 1, 5, 53, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-53-07-01', 1, 3, 1, 5, 53, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-53-08-01', 1, 3, 1, 5, 53, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-53-09-01', 1, 3, 1, 5, 53, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-53-10-01', 1, 3, 1, 5, 53, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-53-11-01', 1, 3, 1, 5, 53, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-53-12-01', 1, 3, 1, 5, 53, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-53-13-01', 1, 3, 1, 5, 53, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-53-14-01', 1, 3, 1, 5, 53, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-53-15-01', 1, 3, 1, 5, 53, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-53-16-01', 1, 3, 1, 5, 53, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-53-17-01', 1, 3, 1, 5, 53, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-53-18-01', 1, 3, 1, 5, 53, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-53-19-01', 1, 3, 1, 5, 53, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-53-20-01', 1, 3, 1, 5, 53, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-53-21-01', 1, 3, 1, 5, 53, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-53-22-01', 1, 3, 1, 5, 53, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-54-01-01', 1, 3, 1, 5, 54, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-54-02-01', 1, 3, 1, 5, 54, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-54-03-01', 1, 3, 1, 5, 54, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-54-04-01', 1, 3, 1, 5, 54, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-54-05-01', 1, 3, 1, 5, 54, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-54-06-01', 1, 3, 1, 5, 54, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-54-07-01', 1, 3, 1, 5, 54, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-54-08-01', 1, 3, 1, 5, 54, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-54-09-01', 1, 3, 1, 5, 54, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-54-10-01', 1, 3, 1, 5, 54, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-54-11-01', 1, 3, 1, 5, 54, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-54-12-01', 1, 3, 1, 5, 54, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-54-13-01', 1, 3, 1, 5, 54, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-54-14-01', 1, 3, 1, 5, 54, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-54-15-01', 1, 3, 1, 5, 54, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-54-16-01', 1, 3, 1, 5, 54, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-54-17-01', 1, 3, 1, 5, 54, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-54-18-01', 1, 3, 1, 5, 54, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-54-19-01', 1, 3, 1, 5, 54, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-54-20-01', 1, 3, 1, 5, 54, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-54-21-01', 1, 3, 1, 5, 54, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-54-22-01', 1, 3, 1, 5, 54, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-55-01-01', 1, 3, 1, 5, 55, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-55-02-01', 1, 3, 1, 5, 55, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-55-03-01', 1, 3, 1, 5, 55, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-55-04-01', 1, 3, 1, 5, 55, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-55-05-01', 1, 3, 1, 5, 55, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-55-06-01', 1, 3, 1, 5, 55, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-55-07-01', 1, 3, 1, 5, 55, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-55-08-01', 1, 3, 1, 5, 55, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-55-09-01', 1, 3, 1, 5, 55, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-55-10-01', 1, 3, 1, 5, 55, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-55-11-01', 1, 3, 1, 5, 55, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-55-12-01', 1, 3, 1, 5, 55, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-55-13-01', 1, 3, 1, 5, 55, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-55-14-01', 1, 3, 1, 5, 55, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-55-15-01', 1, 3, 1, 5, 55, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-55-16-01', 1, 3, 1, 5, 55, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-55-17-01', 1, 3, 1, 5, 55, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-55-18-01', 1, 3, 1, 5, 55, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-55-19-01', 1, 3, 1, 5, 55, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-55-20-01', 1, 3, 1, 5, 55, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-55-21-01', 1, 3, 1, 5, 55, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-55-22-01', 1, 3, 1, 5, 55, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-56-01-01', 1, 3, 1, 5, 56, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-56-02-01', 1, 3, 1, 5, 56, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-56-03-01', 1, 3, 1, 5, 56, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-56-04-01', 1, 3, 1, 5, 56, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-56-05-01', 1, 3, 1, 5, 56, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-56-06-01', 1, 3, 1, 5, 56, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-56-07-01', 1, 3, 1, 5, 56, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-56-08-01', 1, 3, 1, 5, 56, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-56-09-01', 1, 3, 1, 5, 56, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-56-10-01', 1, 3, 1, 5, 56, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-56-11-01', 1, 3, 1, 5, 56, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-56-12-01', 1, 3, 1, 5, 56, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-56-13-01', 1, 3, 1, 5, 56, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-56-14-01', 1, 3, 1, 5, 56, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-56-15-01', 1, 3, 1, 5, 56, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-56-16-01', 1, 3, 1, 5, 56, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-56-17-01', 1, 3, 1, 5, 56, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-56-18-01', 1, 3, 1, 5, 56, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-56-19-01', 1, 3, 1, 5, 56, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-56-20-01', 1, 3, 1, 5, 56, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-56-21-01', 1, 3, 1, 5, 56, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-56-22-01', 1, 3, 1, 5, 56, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-57-01-01', 1, 3, 1, 5, 57, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-57-02-01', 1, 3, 1, 5, 57, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-57-03-01', 1, 3, 1, 5, 57, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-57-04-01', 1, 3, 1, 5, 57, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-57-05-01', 1, 3, 1, 5, 57, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-57-06-01', 1, 3, 1, 5, 57, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-57-07-01', 1, 3, 1, 5, 57, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-57-08-01', 1, 3, 1, 5, 57, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-57-09-01', 1, 3, 1, 5, 57, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-57-10-01', 1, 3, 1, 5, 57, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-57-11-01', 1, 3, 1, 5, 57, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-57-12-01', 1, 3, 1, 5, 57, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-57-13-01', 1, 3, 1, 5, 57, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-57-14-01', 1, 3, 1, 5, 57, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-57-15-01', 1, 3, 1, 5, 57, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-57-16-01', 1, 3, 1, 5, 57, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-57-17-01', 1, 3, 1, 5, 57, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-57-18-01', 1, 3, 1, 5, 57, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-57-19-01', 1, 3, 1, 5, 57, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-57-20-01', 1, 3, 1, 5, 57, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-57-21-01', 1, 3, 1, 5, 57, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-57-22-01', 1, 3, 1, 5, 57, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-58-01-01', 1, 3, 1, 5, 58, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-58-02-01', 1, 3, 1, 5, 58, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-58-03-01', 1, 3, 1, 5, 58, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-58-04-01', 1, 3, 1, 5, 58, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-58-05-01', 1, 3, 1, 5, 58, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-58-06-01', 1, 3, 1, 5, 58, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-58-07-01', 1, 3, 1, 5, 58, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-58-08-01', 1, 3, 1, 5, 58, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-58-09-01', 1, 3, 1, 5, 58, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-58-10-01', 1, 3, 1, 5, 58, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-58-11-01', 1, 3, 1, 5, 58, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-58-12-01', 1, 3, 1, 5, 58, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-58-13-01', 1, 3, 1, 5, 58, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-58-14-01', 1, 3, 1, 5, 58, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-58-15-01', 1, 3, 1, 5, 58, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-58-16-01', 1, 3, 1, 5, 58, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-58-17-01', 1, 3, 1, 5, 58, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-58-18-01', 1, 3, 1, 5, 58, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-58-19-01', 1, 3, 1, 5, 58, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-58-20-01', 1, 3, 1, 5, 58, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-58-21-01', 1, 3, 1, 5, 58, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-58-22-01', 1, 3, 1, 5, 58, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-59-01-01', 1, 3, 1, 5, 59, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-59-02-01', 1, 3, 1, 5, 59, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-59-03-01', 1, 3, 1, 5, 59, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-59-04-01', 1, 3, 1, 5, 59, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-59-05-01', 1, 3, 1, 5, 59, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-59-06-01', 1, 3, 1, 5, 59, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-59-07-01', 1, 3, 1, 5, 59, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-59-08-01', 1, 3, 1, 5, 59, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-59-09-01', 1, 3, 1, 5, 59, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-59-10-01', 1, 3, 1, 5, 59, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-59-11-01', 1, 3, 1, 5, 59, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-59-12-01', 1, 3, 1, 5, 59, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-59-13-01', 1, 3, 1, 5, 59, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-59-14-01', 1, 3, 1, 5, 59, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-59-15-01', 1, 3, 1, 5, 59, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-59-16-01', 1, 3, 1, 5, 59, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-59-17-01', 1, 3, 1, 5, 59, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-59-18-01', 1, 3, 1, 5, 59, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-59-19-01', 1, 3, 1, 5, 59, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-59-20-01', 1, 3, 1, 5, 59, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-59-21-01', 1, 3, 1, 5, 59, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-59-22-01', 1, 3, 1, 5, 59, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-60-01-01', 1, 3, 1, 5, 60, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-60-02-01', 1, 3, 1, 5, 60, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-60-03-01', 1, 3, 1, 5, 60, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-60-04-01', 1, 3, 1, 5, 60, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-60-05-01', 1, 3, 1, 5, 60, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-60-06-01', 1, 3, 1, 5, 60, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-60-07-01', 1, 3, 1, 5, 60, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-60-08-01', 1, 3, 1, 5, 60, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-60-09-01', 1, 3, 1, 5, 60, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-60-10-01', 1, 3, 1, 5, 60, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-60-11-01', 1, 3, 1, 5, 60, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-60-12-01', 1, 3, 1, 5, 60, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-60-13-01', 1, 3, 1, 5, 60, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-60-14-01', 1, 3, 1, 5, 60, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-60-15-01', 1, 3, 1, 5, 60, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-60-16-01', 1, 3, 1, 5, 60, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-60-17-01', 1, 3, 1, 5, 60, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-60-18-01', 1, 3, 1, 5, 60, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-60-19-01', 1, 3, 1, 5, 60, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-60-20-01', 1, 3, 1, 5, 60, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-60-21-01', 1, 3, 1, 5, 60, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-60-22-01', 1, 3, 1, 5, 60, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-61-01-01', 1, 3, 1, 5, 61, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-61-02-01', 1, 3, 1, 5, 61, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-61-03-01', 1, 3, 1, 5, 61, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-61-04-01', 1, 3, 1, 5, 61, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-61-05-01', 1, 3, 1, 5, 61, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-61-06-01', 1, 3, 1, 5, 61, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-61-07-01', 1, 3, 1, 5, 61, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-61-08-01', 1, 3, 1, 5, 61, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-61-09-01', 1, 3, 1, 5, 61, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-61-10-01', 1, 3, 1, 5, 61, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-61-11-01', 1, 3, 1, 5, 61, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-61-12-01', 1, 3, 1, 5, 61, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-61-13-01', 1, 3, 1, 5, 61, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-61-14-01', 1, 3, 1, 5, 61, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-61-15-01', 1, 3, 1, 5, 61, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-61-16-01', 1, 3, 1, 5, 61, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-61-17-01', 1, 3, 1, 5, 61, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-61-18-01', 1, 3, 1, 5, 61, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-61-19-01', 1, 3, 1, 5, 61, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-61-20-01', 1, 3, 1, 5, 61, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-61-21-01', 1, 3, 1, 5, 61, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-61-22-01', 1, 3, 1, 5, 61, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-62-01-01', 1, 3, 1, 5, 62, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-62-02-01', 1, 3, 1, 5, 62, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-62-03-01', 1, 3, 1, 5, 62, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-62-04-01', 1, 3, 1, 5, 62, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-62-05-01', 1, 3, 1, 5, 62, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-62-06-01', 1, 3, 1, 5, 62, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-62-07-01', 1, 3, 1, 5, 62, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-62-08-01', 1, 3, 1, 5, 62, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-62-09-01', 1, 3, 1, 5, 62, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-62-10-01', 1, 3, 1, 5, 62, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-62-11-01', 1, 3, 1, 5, 62, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-62-12-01', 1, 3, 1, 5, 62, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-62-13-01', 1, 3, 1, 5, 62, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-62-14-01', 1, 3, 1, 5, 62, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-62-15-01', 1, 3, 1, 5, 62, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-62-16-01', 1, 3, 1, 5, 62, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-62-17-01', 1, 3, 1, 5, 62, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-62-18-01', 1, 3, 1, 5, 62, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-62-19-01', 1, 3, 1, 5, 62, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-62-20-01', 1, 3, 1, 5, 62, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-62-21-01', 1, 3, 1, 5, 62, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-62-22-01', 1, 3, 1, 5, 62, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-63-01-01', 1, 3, 1, 5, 63, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-63-02-01', 1, 3, 1, 5, 63, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-63-03-01', 1, 3, 1, 5, 63, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-63-04-01', 1, 3, 1, 5, 63, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-63-05-01', 1, 3, 1, 5, 63, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-63-06-01', 1, 3, 1, 5, 63, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-63-07-01', 1, 3, 1, 5, 63, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-63-08-01', 1, 3, 1, 5, 63, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-63-09-01', 1, 3, 1, 5, 63, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-63-10-01', 1, 3, 1, 5, 63, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-63-11-01', 1, 3, 1, 5, 63, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-63-12-01', 1, 3, 1, 5, 63, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-63-13-01', 1, 3, 1, 5, 63, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-63-14-01', 1, 3, 1, 5, 63, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-63-15-01', 1, 3, 1, 5, 63, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-63-16-01', 1, 3, 1, 5, 63, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-63-17-01', 1, 3, 1, 5, 63, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-63-18-01', 1, 3, 1, 5, 63, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-63-19-01', 1, 3, 1, 5, 63, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-63-20-01', 1, 3, 1, 5, 63, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-63-21-01', 1, 3, 1, 5, 63, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-63-22-01', 1, 3, 1, 5, 63, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-64-01-01', 1, 3, 1, 5, 64, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-64-02-01', 1, 3, 1, 5, 64, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-64-03-01', 1, 3, 1, 5, 64, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-64-04-01', 1, 3, 1, 5, 64, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-64-05-01', 1, 3, 1, 5, 64, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-64-06-01', 1, 3, 1, 5, 64, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-64-07-01', 1, 3, 1, 5, 64, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-64-08-01', 1, 3, 1, 5, 64, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-64-09-01', 1, 3, 1, 5, 64, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-64-10-01', 1, 3, 1, 5, 64, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-64-11-01', 1, 3, 1, 5, 64, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-64-12-01', 1, 3, 1, 5, 64, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-64-13-01', 1, 3, 1, 5, 64, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-64-14-01', 1, 3, 1, 5, 64, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-64-15-01', 1, 3, 1, 5, 64, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-64-16-01', 1, 3, 1, 5, 64, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-64-17-01', 1, 3, 1, 5, 64, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-64-18-01', 1, 3, 1, 5, 64, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-64-19-01', 1, 3, 1, 5, 64, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-64-20-01', 1, 3, 1, 5, 64, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-64-21-01', 1, 3, 1, 5, 64, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('05-64-22-01', 1, 3, 1, 5, 64, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-01-01-01', 1, 4, 1, 6, 1, 1, 1, 0, 1, 'ASRS000180'); +INSERT INTO `tbl_app_location` VALUES ('06-01-02-01', 1, 4, 1, 6, 1, 2, 1, 0, 1, 'ASRS000011'); +INSERT INTO `tbl_app_location` VALUES ('06-01-03-01', 1, 4, 1, 6, 1, 3, 1, 0, 1, 'ASRS000013'); +INSERT INTO `tbl_app_location` VALUES ('06-01-04-01', 1, 4, 1, 6, 1, 4, 1, 0, 1, 'ASRS000060'); +INSERT INTO `tbl_app_location` VALUES ('06-01-05-01', 1, 4, 1, 6, 1, 5, 1, 0, 1, 'ASRS000066'); +INSERT INTO `tbl_app_location` VALUES ('06-01-06-01', 1, 4, 1, 6, 1, 6, 1, 0, 1, 'ASRS000083'); +INSERT INTO `tbl_app_location` VALUES ('06-01-07-01', 1, 4, 1, 6, 1, 7, 1, 0, 1, 'ASRS000018'); +INSERT INTO `tbl_app_location` VALUES ('06-01-08-01', 1, 4, 1, 6, 1, 8, 1, 0, 1, 'ASRS000097'); +INSERT INTO `tbl_app_location` VALUES ('06-01-09-01', 1, 4, 1, 6, 1, 9, 1, 0, 1, 'ASRS000072'); +INSERT INTO `tbl_app_location` VALUES ('06-01-10-01', 1, 4, 1, 6, 1, 10, 1, 0, 1, 'ASRS000160'); +INSERT INTO `tbl_app_location` VALUES ('06-01-11-01', 1, 4, 1, 6, 1, 11, 1, 0, 1, 'ASRS000051'); +INSERT INTO `tbl_app_location` VALUES ('06-01-12-01', 1, 4, 1, 6, 1, 12, 1, 0, 1, 'ASRS000023'); +INSERT INTO `tbl_app_location` VALUES ('06-01-13-01', 1, 4, 1, 6, 1, 13, 1, 0, 1, 'ASRS000191'); +INSERT INTO `tbl_app_location` VALUES ('06-01-14-01', 1, 4, 1, 6, 1, 14, 1, 0, 1, 'ASRS000189'); +INSERT INTO `tbl_app_location` VALUES ('06-01-15-01', 1, 4, 1, 6, 1, 15, 1, 0, 1, 'ASRS000171'); +INSERT INTO `tbl_app_location` VALUES ('06-01-16-01', 1, 4, 1, 6, 1, 16, 1, 0, 1, 'ASRS000150'); +INSERT INTO `tbl_app_location` VALUES ('06-01-17-01', 1, 4, 1, 6, 1, 17, 1, 0, 1, 'ASRS000187'); +INSERT INTO `tbl_app_location` VALUES ('06-01-18-01', 1, 4, 1, 6, 1, 18, 1, 0, 1, 'ASRS000134'); +INSERT INTO `tbl_app_location` VALUES ('06-01-19-01', 1, 4, 1, 6, 1, 19, 1, 0, 1, 'ASRS000059'); +INSERT INTO `tbl_app_location` VALUES ('06-01-20-01', 1, 4, 1, 6, 1, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-01-21-01', 1, 4, 1, 6, 1, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-01-22-01', 1, 4, 1, 6, 1, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-02-01-01', 1, 4, 1, 6, 2, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-02-02-01', 1, 4, 1, 6, 2, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-02-03-01', 1, 4, 1, 6, 2, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-02-04-01', 1, 4, 1, 6, 2, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-02-05-01', 1, 4, 1, 6, 2, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-02-06-01', 1, 4, 1, 6, 2, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-02-07-01', 1, 4, 1, 6, 2, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-02-08-01', 1, 4, 1, 6, 2, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-02-09-01', 1, 4, 1, 6, 2, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-02-10-01', 1, 4, 1, 6, 2, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-02-11-01', 1, 4, 1, 6, 2, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-02-12-01', 1, 4, 1, 6, 2, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-02-13-01', 1, 4, 1, 6, 2, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-02-14-01', 1, 4, 1, 6, 2, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-02-15-01', 1, 4, 1, 6, 2, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-02-16-01', 1, 4, 1, 6, 2, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-02-17-01', 1, 4, 1, 6, 2, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-02-18-01', 1, 4, 1, 6, 2, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-02-19-01', 1, 4, 1, 6, 2, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-02-20-01', 1, 4, 1, 6, 2, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-02-21-01', 1, 4, 1, 6, 2, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-02-22-01', 1, 4, 1, 6, 2, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-03-01-01', 1, 4, 1, 6, 3, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-03-02-01', 1, 4, 1, 6, 3, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-03-03-01', 1, 4, 1, 6, 3, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-03-04-01', 1, 4, 1, 6, 3, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-03-05-01', 1, 4, 1, 6, 3, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-03-06-01', 1, 4, 1, 6, 3, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-03-07-01', 1, 4, 1, 6, 3, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-03-08-01', 1, 4, 1, 6, 3, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-03-09-01', 1, 4, 1, 6, 3, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-03-10-01', 1, 4, 1, 6, 3, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-03-11-01', 1, 4, 1, 6, 3, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-03-12-01', 1, 4, 1, 6, 3, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-03-13-01', 1, 4, 1, 6, 3, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-03-14-01', 1, 4, 1, 6, 3, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-03-15-01', 1, 4, 1, 6, 3, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-03-16-01', 1, 4, 1, 6, 3, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-03-17-01', 1, 4, 1, 6, 3, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-03-18-01', 1, 4, 1, 6, 3, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-03-19-01', 1, 4, 1, 6, 3, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-03-20-01', 1, 4, 1, 6, 3, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-03-21-01', 1, 4, 1, 6, 3, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-03-22-01', 1, 4, 1, 6, 3, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-04-01-01', 1, 4, 1, 6, 4, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-04-02-01', 1, 4, 1, 6, 4, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-04-03-01', 1, 4, 1, 6, 4, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-04-04-01', 1, 4, 1, 6, 4, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-04-05-01', 1, 4, 1, 6, 4, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-04-06-01', 1, 4, 1, 6, 4, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-04-07-01', 1, 4, 1, 6, 4, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-04-08-01', 1, 4, 1, 6, 4, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-04-09-01', 1, 4, 1, 6, 4, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-04-10-01', 1, 4, 1, 6, 4, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-04-11-01', 1, 4, 1, 6, 4, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-04-12-01', 1, 4, 1, 6, 4, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-04-13-01', 1, 4, 1, 6, 4, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-04-14-01', 1, 4, 1, 6, 4, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-04-15-01', 1, 4, 1, 6, 4, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-04-16-01', 1, 4, 1, 6, 4, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-04-17-01', 1, 4, 1, 6, 4, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-04-18-01', 1, 4, 1, 6, 4, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-04-19-01', 1, 4, 1, 6, 4, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-04-20-01', 1, 4, 1, 6, 4, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-04-21-01', 1, 4, 1, 6, 4, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-04-22-01', 1, 4, 1, 6, 4, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-05-01-01', 1, 4, 1, 6, 5, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-05-02-01', 1, 4, 1, 6, 5, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-05-03-01', 1, 4, 1, 6, 5, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-05-04-01', 1, 4, 1, 6, 5, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-05-05-01', 1, 4, 1, 6, 5, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-05-06-01', 1, 4, 1, 6, 5, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-05-07-01', 1, 4, 1, 6, 5, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-05-08-01', 1, 4, 1, 6, 5, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-05-09-01', 1, 4, 1, 6, 5, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-05-10-01', 1, 4, 1, 6, 5, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-05-11-01', 1, 4, 1, 6, 5, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-05-12-01', 1, 4, 1, 6, 5, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-05-13-01', 1, 4, 1, 6, 5, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-05-14-01', 1, 4, 1, 6, 5, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-05-15-01', 1, 4, 1, 6, 5, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-05-16-01', 1, 4, 1, 6, 5, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-05-17-01', 1, 4, 1, 6, 5, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-05-18-01', 1, 4, 1, 6, 5, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-05-19-01', 1, 4, 1, 6, 5, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-05-20-01', 1, 4, 1, 6, 5, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-05-21-01', 1, 4, 1, 6, 5, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-05-22-01', 1, 4, 1, 6, 5, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-06-01-01', 1, 4, 1, 6, 6, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-06-02-01', 1, 4, 1, 6, 6, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-06-03-01', 1, 4, 1, 6, 6, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-06-04-01', 1, 4, 1, 6, 6, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-06-05-01', 1, 4, 1, 6, 6, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-06-06-01', 1, 4, 1, 6, 6, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-06-07-01', 1, 4, 1, 6, 6, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-06-08-01', 1, 4, 1, 6, 6, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-06-09-01', 1, 4, 1, 6, 6, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-06-10-01', 1, 4, 1, 6, 6, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-06-11-01', 1, 4, 1, 6, 6, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-06-12-01', 1, 4, 1, 6, 6, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-06-13-01', 1, 4, 1, 6, 6, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-06-14-01', 1, 4, 1, 6, 6, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-06-15-01', 1, 4, 1, 6, 6, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-06-16-01', 1, 4, 1, 6, 6, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-06-17-01', 1, 4, 1, 6, 6, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-06-18-01', 1, 4, 1, 6, 6, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-06-19-01', 1, 4, 1, 6, 6, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-06-20-01', 1, 4, 1, 6, 6, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-06-21-01', 1, 4, 1, 6, 6, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-06-22-01', 1, 4, 1, 6, 6, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-07-01-01', 1, 4, 1, 6, 7, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-07-02-01', 1, 4, 1, 6, 7, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-07-03-01', 1, 4, 1, 6, 7, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-07-04-01', 1, 4, 1, 6, 7, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-07-05-01', 1, 4, 1, 6, 7, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-07-06-01', 1, 4, 1, 6, 7, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-07-07-01', 1, 4, 1, 6, 7, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-07-08-01', 1, 4, 1, 6, 7, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-07-09-01', 1, 4, 1, 6, 7, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-07-10-01', 1, 4, 1, 6, 7, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-07-11-01', 1, 4, 1, 6, 7, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-07-12-01', 1, 4, 1, 6, 7, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-07-13-01', 1, 4, 1, 6, 7, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-07-14-01', 1, 4, 1, 6, 7, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-07-15-01', 1, 4, 1, 6, 7, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-07-16-01', 1, 4, 1, 6, 7, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-07-17-01', 1, 4, 1, 6, 7, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-07-18-01', 1, 4, 1, 6, 7, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-07-19-01', 1, 4, 1, 6, 7, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-07-20-01', 1, 4, 1, 6, 7, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-07-21-01', 1, 4, 1, 6, 7, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-07-22-01', 1, 4, 1, 6, 7, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-08-01-01', 1, 4, 1, 6, 8, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-08-02-01', 1, 4, 1, 6, 8, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-08-03-01', 1, 4, 1, 6, 8, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-08-04-01', 1, 4, 1, 6, 8, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-08-05-01', 1, 4, 1, 6, 8, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-08-06-01', 1, 4, 1, 6, 8, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-08-07-01', 1, 4, 1, 6, 8, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-08-08-01', 1, 4, 1, 6, 8, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-08-09-01', 1, 4, 1, 6, 8, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-08-10-01', 1, 4, 1, 6, 8, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-08-11-01', 1, 4, 1, 6, 8, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-08-12-01', 1, 4, 1, 6, 8, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-08-13-01', 1, 4, 1, 6, 8, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-08-14-01', 1, 4, 1, 6, 8, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-08-15-01', 1, 4, 1, 6, 8, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-08-16-01', 1, 4, 1, 6, 8, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-08-17-01', 1, 4, 1, 6, 8, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-08-18-01', 1, 4, 1, 6, 8, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-08-19-01', 1, 4, 1, 6, 8, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-08-20-01', 1, 4, 1, 6, 8, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-08-21-01', 1, 4, 1, 6, 8, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-08-22-01', 1, 4, 1, 6, 8, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-09-01-01', 1, 4, 1, 6, 9, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-09-02-01', 1, 4, 1, 6, 9, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-09-03-01', 1, 4, 1, 6, 9, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-09-04-01', 1, 4, 1, 6, 9, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-09-05-01', 1, 4, 1, 6, 9, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-09-06-01', 1, 4, 1, 6, 9, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-09-07-01', 1, 4, 1, 6, 9, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-09-08-01', 1, 4, 1, 6, 9, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-09-09-01', 1, 4, 1, 6, 9, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-09-10-01', 1, 4, 1, 6, 9, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-09-11-01', 1, 4, 1, 6, 9, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-09-12-01', 1, 4, 1, 6, 9, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-09-13-01', 1, 4, 1, 6, 9, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-09-14-01', 1, 4, 1, 6, 9, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-09-15-01', 1, 4, 1, 6, 9, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-09-16-01', 1, 4, 1, 6, 9, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-09-17-01', 1, 4, 1, 6, 9, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-09-18-01', 1, 4, 1, 6, 9, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-09-19-01', 1, 4, 1, 6, 9, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-09-20-01', 1, 4, 1, 6, 9, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-09-21-01', 1, 4, 1, 6, 9, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-09-22-01', 1, 4, 1, 6, 9, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-10-01-01', 1, 4, 1, 6, 10, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-10-02-01', 1, 4, 1, 6, 10, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-10-03-01', 1, 4, 1, 6, 10, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-10-04-01', 1, 4, 1, 6, 10, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-10-05-01', 1, 4, 1, 6, 10, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-10-06-01', 1, 4, 1, 6, 10, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-10-07-01', 1, 4, 1, 6, 10, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-10-08-01', 1, 4, 1, 6, 10, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-10-09-01', 1, 4, 1, 6, 10, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-10-10-01', 1, 4, 1, 6, 10, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-10-11-01', 1, 4, 1, 6, 10, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-10-12-01', 1, 4, 1, 6, 10, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-10-13-01', 1, 4, 1, 6, 10, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-10-14-01', 1, 4, 1, 6, 10, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-10-15-01', 1, 4, 1, 6, 10, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-10-16-01', 1, 4, 1, 6, 10, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-10-17-01', 1, 4, 1, 6, 10, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-10-18-01', 1, 4, 1, 6, 10, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-10-19-01', 1, 4, 1, 6, 10, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-10-20-01', 1, 4, 1, 6, 10, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-10-21-01', 1, 4, 1, 6, 10, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-10-22-01', 1, 4, 1, 6, 10, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-11-01-01', 1, 4, 1, 6, 11, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-11-02-01', 1, 4, 1, 6, 11, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-11-03-01', 1, 4, 1, 6, 11, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-11-04-01', 1, 4, 1, 6, 11, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-11-05-01', 1, 4, 1, 6, 11, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-11-06-01', 1, 4, 1, 6, 11, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-11-07-01', 1, 4, 1, 6, 11, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-11-08-01', 1, 4, 1, 6, 11, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-11-09-01', 1, 4, 1, 6, 11, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-11-10-01', 1, 4, 1, 6, 11, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-11-11-01', 1, 4, 1, 6, 11, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-11-12-01', 1, 4, 1, 6, 11, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-11-13-01', 1, 4, 1, 6, 11, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-11-14-01', 1, 4, 1, 6, 11, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-11-15-01', 1, 4, 1, 6, 11, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-11-16-01', 1, 4, 1, 6, 11, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-11-17-01', 1, 4, 1, 6, 11, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-11-18-01', 1, 4, 1, 6, 11, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-11-19-01', 1, 4, 1, 6, 11, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-11-20-01', 1, 4, 1, 6, 11, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-11-21-01', 1, 4, 1, 6, 11, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-11-22-01', 1, 4, 1, 6, 11, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-12-01-01', 1, 4, 1, 6, 12, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-12-02-01', 1, 4, 1, 6, 12, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-12-03-01', 1, 4, 1, 6, 12, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-12-04-01', 1, 4, 1, 6, 12, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-12-05-01', 1, 4, 1, 6, 12, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-12-06-01', 1, 4, 1, 6, 12, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-12-07-01', 1, 4, 1, 6, 12, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-12-08-01', 1, 4, 1, 6, 12, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-12-09-01', 1, 4, 1, 6, 12, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-12-10-01', 1, 4, 1, 6, 12, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-12-11-01', 1, 4, 1, 6, 12, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-12-12-01', 1, 4, 1, 6, 12, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-12-13-01', 1, 4, 1, 6, 12, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-12-14-01', 1, 4, 1, 6, 12, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-12-15-01', 1, 4, 1, 6, 12, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-12-16-01', 1, 4, 1, 6, 12, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-12-17-01', 1, 4, 1, 6, 12, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-12-18-01', 1, 4, 1, 6, 12, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-12-19-01', 1, 4, 1, 6, 12, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-12-20-01', 1, 4, 1, 6, 12, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-12-21-01', 1, 4, 1, 6, 12, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-12-22-01', 1, 4, 1, 6, 12, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-13-01-01', 1, 4, 1, 6, 13, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-13-02-01', 1, 4, 1, 6, 13, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-13-03-01', 1, 4, 1, 6, 13, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-13-04-01', 1, 4, 1, 6, 13, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-13-05-01', 1, 4, 1, 6, 13, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-13-06-01', 1, 4, 1, 6, 13, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-13-07-01', 1, 4, 1, 6, 13, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-13-08-01', 1, 4, 1, 6, 13, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-13-09-01', 1, 4, 1, 6, 13, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-13-10-01', 1, 4, 1, 6, 13, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-13-11-01', 1, 4, 1, 6, 13, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-13-12-01', 1, 4, 1, 6, 13, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-13-13-01', 1, 4, 1, 6, 13, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-13-14-01', 1, 4, 1, 6, 13, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-13-15-01', 1, 4, 1, 6, 13, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-13-16-01', 1, 4, 1, 6, 13, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-13-17-01', 1, 4, 1, 6, 13, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-13-18-01', 1, 4, 1, 6, 13, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-13-19-01', 1, 4, 1, 6, 13, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-13-20-01', 1, 4, 1, 6, 13, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-13-21-01', 1, 4, 1, 6, 13, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-13-22-01', 1, 4, 1, 6, 13, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-14-01-01', 1, 4, 1, 6, 14, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-14-02-01', 1, 4, 1, 6, 14, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-14-03-01', 1, 4, 1, 6, 14, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-14-04-01', 1, 4, 1, 6, 14, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-14-05-01', 1, 4, 1, 6, 14, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-14-06-01', 1, 4, 1, 6, 14, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-14-07-01', 1, 4, 1, 6, 14, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-14-08-01', 1, 4, 1, 6, 14, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-14-09-01', 1, 4, 1, 6, 14, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-14-10-01', 1, 4, 1, 6, 14, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-14-11-01', 1, 4, 1, 6, 14, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-14-12-01', 1, 4, 1, 6, 14, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-14-13-01', 1, 4, 1, 6, 14, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-14-14-01', 1, 4, 1, 6, 14, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-14-15-01', 1, 4, 1, 6, 14, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-14-16-01', 1, 4, 1, 6, 14, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-14-17-01', 1, 4, 1, 6, 14, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-14-18-01', 1, 4, 1, 6, 14, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-14-19-01', 1, 4, 1, 6, 14, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-14-20-01', 1, 4, 1, 6, 14, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-14-21-01', 1, 4, 1, 6, 14, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-14-22-01', 1, 4, 1, 6, 14, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-15-01-01', 1, 4, 1, 6, 15, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-15-02-01', 1, 4, 1, 6, 15, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-15-03-01', 1, 4, 1, 6, 15, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-15-04-01', 1, 4, 1, 6, 15, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-15-05-01', 1, 4, 1, 6, 15, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-15-06-01', 1, 4, 1, 6, 15, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-15-07-01', 1, 4, 1, 6, 15, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-15-08-01', 1, 4, 1, 6, 15, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-15-09-01', 1, 4, 1, 6, 15, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-15-10-01', 1, 4, 1, 6, 15, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-15-11-01', 1, 4, 1, 6, 15, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-15-12-01', 1, 4, 1, 6, 15, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-15-13-01', 1, 4, 1, 6, 15, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-15-14-01', 1, 4, 1, 6, 15, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-15-15-01', 1, 4, 1, 6, 15, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-15-16-01', 1, 4, 1, 6, 15, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-15-17-01', 1, 4, 1, 6, 15, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-15-18-01', 1, 4, 1, 6, 15, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-15-19-01', 1, 4, 1, 6, 15, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-15-20-01', 1, 4, 1, 6, 15, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-15-21-01', 1, 4, 1, 6, 15, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-15-22-01', 1, 4, 1, 6, 15, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-16-01-01', 1, 4, 1, 6, 16, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-16-02-01', 1, 4, 1, 6, 16, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-16-03-01', 1, 4, 1, 6, 16, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-16-04-01', 1, 4, 1, 6, 16, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-16-05-01', 1, 4, 1, 6, 16, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-16-06-01', 1, 4, 1, 6, 16, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-16-07-01', 1, 4, 1, 6, 16, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-16-08-01', 1, 4, 1, 6, 16, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-16-09-01', 1, 4, 1, 6, 16, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-16-10-01', 1, 4, 1, 6, 16, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-16-11-01', 1, 4, 1, 6, 16, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-16-12-01', 1, 4, 1, 6, 16, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-16-13-01', 1, 4, 1, 6, 16, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-16-14-01', 1, 4, 1, 6, 16, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-16-15-01', 1, 4, 1, 6, 16, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-16-16-01', 1, 4, 1, 6, 16, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-16-17-01', 1, 4, 1, 6, 16, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-16-18-01', 1, 4, 1, 6, 16, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-16-19-01', 1, 4, 1, 6, 16, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-16-20-01', 1, 4, 1, 6, 16, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-16-21-01', 1, 4, 1, 6, 16, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-16-22-01', 1, 4, 1, 6, 16, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-17-01-01', 1, 4, 1, 6, 17, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-17-02-01', 1, 4, 1, 6, 17, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-17-03-01', 1, 4, 1, 6, 17, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-17-04-01', 1, 4, 1, 6, 17, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-17-05-01', 1, 4, 1, 6, 17, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-17-06-01', 1, 4, 1, 6, 17, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-17-07-01', 1, 4, 1, 6, 17, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-17-08-01', 1, 4, 1, 6, 17, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-17-09-01', 1, 4, 1, 6, 17, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-17-10-01', 1, 4, 1, 6, 17, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-17-11-01', 1, 4, 1, 6, 17, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-17-12-01', 1, 4, 1, 6, 17, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-17-13-01', 1, 4, 1, 6, 17, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-17-14-01', 1, 4, 1, 6, 17, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-17-15-01', 1, 4, 1, 6, 17, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-17-16-01', 1, 4, 1, 6, 17, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-17-17-01', 1, 4, 1, 6, 17, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-17-18-01', 1, 4, 1, 6, 17, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-17-19-01', 1, 4, 1, 6, 17, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-17-20-01', 1, 4, 1, 6, 17, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-17-21-01', 1, 4, 1, 6, 17, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-17-22-01', 1, 4, 1, 6, 17, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-18-01-01', 1, 4, 1, 6, 18, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-18-02-01', 1, 4, 1, 6, 18, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-18-03-01', 1, 4, 1, 6, 18, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-18-04-01', 1, 4, 1, 6, 18, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-18-05-01', 1, 4, 1, 6, 18, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-18-06-01', 1, 4, 1, 6, 18, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-18-07-01', 1, 4, 1, 6, 18, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-18-08-01', 1, 4, 1, 6, 18, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-18-09-01', 1, 4, 1, 6, 18, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-18-10-01', 1, 4, 1, 6, 18, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-18-11-01', 1, 4, 1, 6, 18, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-18-12-01', 1, 4, 1, 6, 18, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-18-13-01', 1, 4, 1, 6, 18, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-18-14-01', 1, 4, 1, 6, 18, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-18-15-01', 1, 4, 1, 6, 18, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-18-16-01', 1, 4, 1, 6, 18, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-18-17-01', 1, 4, 1, 6, 18, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-18-18-01', 1, 4, 1, 6, 18, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-18-19-01', 1, 4, 1, 6, 18, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-18-20-01', 1, 4, 1, 6, 18, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-18-21-01', 1, 4, 1, 6, 18, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-18-22-01', 1, 4, 1, 6, 18, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-19-01-01', 1, 4, 1, 6, 19, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-19-02-01', 1, 4, 1, 6, 19, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-19-03-01', 1, 4, 1, 6, 19, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-19-04-01', 1, 4, 1, 6, 19, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-19-05-01', 1, 4, 1, 6, 19, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-19-06-01', 1, 4, 1, 6, 19, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-19-07-01', 1, 4, 1, 6, 19, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-19-08-01', 1, 4, 1, 6, 19, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-19-09-01', 1, 4, 1, 6, 19, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-19-10-01', 1, 4, 1, 6, 19, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-19-11-01', 1, 4, 1, 6, 19, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-19-12-01', 1, 4, 1, 6, 19, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-19-13-01', 1, 4, 1, 6, 19, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-19-14-01', 1, 4, 1, 6, 19, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-19-15-01', 1, 4, 1, 6, 19, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-19-16-01', 1, 4, 1, 6, 19, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-19-17-01', 1, 4, 1, 6, 19, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-19-18-01', 1, 4, 1, 6, 19, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-19-19-01', 1, 4, 1, 6, 19, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-19-20-01', 1, 4, 1, 6, 19, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-19-21-01', 1, 4, 1, 6, 19, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-19-22-01', 1, 4, 1, 6, 19, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-20-01-01', 1, 4, 1, 6, 20, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-20-02-01', 1, 4, 1, 6, 20, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-20-03-01', 1, 4, 1, 6, 20, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-20-04-01', 1, 4, 1, 6, 20, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-20-05-01', 1, 4, 1, 6, 20, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-20-06-01', 1, 4, 1, 6, 20, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-20-07-01', 1, 4, 1, 6, 20, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-20-08-01', 1, 4, 1, 6, 20, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-20-09-01', 1, 4, 1, 6, 20, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-20-10-01', 1, 4, 1, 6, 20, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-20-11-01', 1, 4, 1, 6, 20, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-20-12-01', 1, 4, 1, 6, 20, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-20-13-01', 1, 4, 1, 6, 20, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-20-14-01', 1, 4, 1, 6, 20, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-20-15-01', 1, 4, 1, 6, 20, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-20-16-01', 1, 4, 1, 6, 20, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-20-17-01', 1, 4, 1, 6, 20, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-20-18-01', 1, 4, 1, 6, 20, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-20-19-01', 1, 4, 1, 6, 20, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-20-20-01', 1, 4, 1, 6, 20, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-20-21-01', 1, 4, 1, 6, 20, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-20-22-01', 1, 4, 1, 6, 20, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-21-01-01', 1, 4, 1, 6, 21, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-21-02-01', 1, 4, 1, 6, 21, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-21-03-01', 1, 4, 1, 6, 21, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-21-04-01', 1, 4, 1, 6, 21, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-21-05-01', 1, 4, 1, 6, 21, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-21-06-01', 1, 4, 1, 6, 21, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-21-07-01', 1, 4, 1, 6, 21, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-21-08-01', 1, 4, 1, 6, 21, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-21-09-01', 1, 4, 1, 6, 21, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-21-10-01', 1, 4, 1, 6, 21, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-21-11-01', 1, 4, 1, 6, 21, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-21-12-01', 1, 4, 1, 6, 21, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-21-13-01', 1, 4, 1, 6, 21, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-21-14-01', 1, 4, 1, 6, 21, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-21-15-01', 1, 4, 1, 6, 21, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-21-16-01', 1, 4, 1, 6, 21, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-21-17-01', 1, 4, 1, 6, 21, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-21-18-01', 1, 4, 1, 6, 21, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-21-19-01', 1, 4, 1, 6, 21, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-21-20-01', 1, 4, 1, 6, 21, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-21-21-01', 1, 4, 1, 6, 21, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-21-22-01', 1, 4, 1, 6, 21, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-22-01-01', 1, 4, 1, 6, 22, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-22-02-01', 1, 4, 1, 6, 22, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-22-03-01', 1, 4, 1, 6, 22, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-22-04-01', 1, 4, 1, 6, 22, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-22-05-01', 1, 4, 1, 6, 22, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-22-06-01', 1, 4, 1, 6, 22, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-22-07-01', 1, 4, 1, 6, 22, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-22-08-01', 1, 4, 1, 6, 22, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-22-09-01', 1, 4, 1, 6, 22, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-22-10-01', 1, 4, 1, 6, 22, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-22-11-01', 1, 4, 1, 6, 22, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-22-12-01', 1, 4, 1, 6, 22, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-22-13-01', 1, 4, 1, 6, 22, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-22-14-01', 1, 4, 1, 6, 22, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-22-15-01', 1, 4, 1, 6, 22, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-22-16-01', 1, 4, 1, 6, 22, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-22-17-01', 1, 4, 1, 6, 22, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-22-18-01', 1, 4, 1, 6, 22, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-22-19-01', 1, 4, 1, 6, 22, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-22-20-01', 1, 4, 1, 6, 22, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-22-21-01', 1, 4, 1, 6, 22, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-22-22-01', 1, 4, 1, 6, 22, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-23-01-01', 1, 4, 1, 6, 23, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-23-02-01', 1, 4, 1, 6, 23, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-23-03-01', 1, 4, 1, 6, 23, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-23-04-01', 1, 4, 1, 6, 23, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-23-05-01', 1, 4, 1, 6, 23, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-23-06-01', 1, 4, 1, 6, 23, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-23-07-01', 1, 4, 1, 6, 23, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-23-08-01', 1, 4, 1, 6, 23, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-23-09-01', 1, 4, 1, 6, 23, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-23-10-01', 1, 4, 1, 6, 23, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-23-11-01', 1, 4, 1, 6, 23, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-23-12-01', 1, 4, 1, 6, 23, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-23-13-01', 1, 4, 1, 6, 23, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-23-14-01', 1, 4, 1, 6, 23, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-23-15-01', 1, 4, 1, 6, 23, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-23-16-01', 1, 4, 1, 6, 23, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-23-17-01', 1, 4, 1, 6, 23, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-23-18-01', 1, 4, 1, 6, 23, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-23-19-01', 1, 4, 1, 6, 23, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-23-20-01', 1, 4, 1, 6, 23, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-23-21-01', 1, 4, 1, 6, 23, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-23-22-01', 1, 4, 1, 6, 23, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-24-01-01', 1, 4, 1, 6, 24, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-24-02-01', 1, 4, 1, 6, 24, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-24-03-01', 1, 4, 1, 6, 24, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-24-04-01', 1, 4, 1, 6, 24, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-24-05-01', 1, 4, 1, 6, 24, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-24-06-01', 1, 4, 1, 6, 24, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-24-07-01', 1, 4, 1, 6, 24, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-24-08-01', 1, 4, 1, 6, 24, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-24-09-01', 1, 4, 1, 6, 24, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-24-10-01', 1, 4, 1, 6, 24, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-24-11-01', 1, 4, 1, 6, 24, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-24-12-01', 1, 4, 1, 6, 24, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-24-13-01', 1, 4, 1, 6, 24, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-24-14-01', 1, 4, 1, 6, 24, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-24-15-01', 1, 4, 1, 6, 24, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-24-16-01', 1, 4, 1, 6, 24, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-24-17-01', 1, 4, 1, 6, 24, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-24-18-01', 1, 4, 1, 6, 24, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-24-19-01', 1, 4, 1, 6, 24, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-24-20-01', 1, 4, 1, 6, 24, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-24-21-01', 1, 4, 1, 6, 24, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-24-22-01', 1, 4, 1, 6, 24, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-25-01-01', 1, 4, 1, 6, 25, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-25-02-01', 1, 4, 1, 6, 25, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-25-03-01', 1, 4, 1, 6, 25, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-25-04-01', 1, 4, 1, 6, 25, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-25-05-01', 1, 4, 1, 6, 25, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-25-06-01', 1, 4, 1, 6, 25, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-25-07-01', 1, 4, 1, 6, 25, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-25-08-01', 1, 4, 1, 6, 25, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-25-09-01', 1, 4, 1, 6, 25, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-25-10-01', 1, 4, 1, 6, 25, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-25-11-01', 1, 4, 1, 6, 25, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-25-12-01', 1, 4, 1, 6, 25, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-25-13-01', 1, 4, 1, 6, 25, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-25-14-01', 1, 4, 1, 6, 25, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-25-15-01', 1, 4, 1, 6, 25, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-25-16-01', 1, 4, 1, 6, 25, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-25-17-01', 1, 4, 1, 6, 25, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-25-18-01', 1, 4, 1, 6, 25, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-25-19-01', 1, 4, 1, 6, 25, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-25-20-01', 1, 4, 1, 6, 25, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-25-21-01', 1, 4, 1, 6, 25, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-25-22-01', 1, 4, 1, 6, 25, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-26-01-01', 1, 4, 1, 6, 26, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-26-02-01', 1, 4, 1, 6, 26, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-26-03-01', 1, 4, 1, 6, 26, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-26-04-01', 1, 4, 1, 6, 26, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-26-05-01', 1, 4, 1, 6, 26, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-26-06-01', 1, 4, 1, 6, 26, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-26-07-01', 1, 4, 1, 6, 26, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-26-08-01', 1, 4, 1, 6, 26, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-26-09-01', 1, 4, 1, 6, 26, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-26-10-01', 1, 4, 1, 6, 26, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-26-11-01', 1, 4, 1, 6, 26, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-26-12-01', 1, 4, 1, 6, 26, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-26-13-01', 1, 4, 1, 6, 26, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-26-14-01', 1, 4, 1, 6, 26, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-26-15-01', 1, 4, 1, 6, 26, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-26-16-01', 1, 4, 1, 6, 26, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-26-17-01', 1, 4, 1, 6, 26, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-26-18-01', 1, 4, 1, 6, 26, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-26-19-01', 1, 4, 1, 6, 26, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-26-20-01', 1, 4, 1, 6, 26, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-26-21-01', 1, 4, 1, 6, 26, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-26-22-01', 1, 4, 1, 6, 26, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-27-01-01', 1, 4, 1, 6, 27, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-27-02-01', 1, 4, 1, 6, 27, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-27-03-01', 1, 4, 1, 6, 27, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-27-04-01', 1, 4, 1, 6, 27, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-27-05-01', 1, 4, 1, 6, 27, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-27-06-01', 1, 4, 1, 6, 27, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-27-07-01', 1, 4, 1, 6, 27, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-27-08-01', 1, 4, 1, 6, 27, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-27-09-01', 1, 4, 1, 6, 27, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-27-10-01', 1, 4, 1, 6, 27, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-27-11-01', 1, 4, 1, 6, 27, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-27-12-01', 1, 4, 1, 6, 27, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-27-13-01', 1, 4, 1, 6, 27, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-27-14-01', 1, 4, 1, 6, 27, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-27-15-01', 1, 4, 1, 6, 27, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-27-16-01', 1, 4, 1, 6, 27, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-27-17-01', 1, 4, 1, 6, 27, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-27-18-01', 1, 4, 1, 6, 27, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-27-19-01', 1, 4, 1, 6, 27, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-27-20-01', 1, 4, 1, 6, 27, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-27-21-01', 1, 4, 1, 6, 27, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-27-22-01', 1, 4, 1, 6, 27, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-28-01-01', 1, 4, 1, 6, 28, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-28-02-01', 1, 4, 1, 6, 28, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-28-03-01', 1, 4, 1, 6, 28, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-28-04-01', 1, 4, 1, 6, 28, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-28-05-01', 1, 4, 1, 6, 28, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-28-06-01', 1, 4, 1, 6, 28, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-28-07-01', 1, 4, 1, 6, 28, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-28-08-01', 1, 4, 1, 6, 28, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-28-09-01', 1, 4, 1, 6, 28, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-28-10-01', 1, 4, 1, 6, 28, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-28-11-01', 1, 4, 1, 6, 28, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-28-12-01', 1, 4, 1, 6, 28, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-28-13-01', 1, 4, 1, 6, 28, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-28-14-01', 1, 4, 1, 6, 28, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-28-15-01', 1, 4, 1, 6, 28, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-28-16-01', 1, 4, 1, 6, 28, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-28-17-01', 1, 4, 1, 6, 28, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-28-18-01', 1, 4, 1, 6, 28, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-28-19-01', 1, 4, 1, 6, 28, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-28-20-01', 1, 4, 1, 6, 28, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-28-21-01', 1, 4, 1, 6, 28, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-28-22-01', 1, 4, 1, 6, 28, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-29-01-01', 1, 4, 1, 6, 29, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-29-02-01', 1, 4, 1, 6, 29, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-29-03-01', 1, 4, 1, 6, 29, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-29-04-01', 1, 4, 1, 6, 29, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-29-05-01', 1, 4, 1, 6, 29, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-29-06-01', 1, 4, 1, 6, 29, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-29-07-01', 1, 4, 1, 6, 29, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-29-08-01', 1, 4, 1, 6, 29, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-29-09-01', 1, 4, 1, 6, 29, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-29-10-01', 1, 4, 1, 6, 29, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-29-11-01', 1, 4, 1, 6, 29, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-29-12-01', 1, 4, 1, 6, 29, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-29-13-01', 1, 4, 1, 6, 29, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-29-14-01', 1, 4, 1, 6, 29, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-29-15-01', 1, 4, 1, 6, 29, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-29-16-01', 1, 4, 1, 6, 29, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-29-17-01', 1, 4, 1, 6, 29, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-29-18-01', 1, 4, 1, 6, 29, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-29-19-01', 1, 4, 1, 6, 29, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-29-20-01', 1, 4, 1, 6, 29, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-29-21-01', 1, 4, 1, 6, 29, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-29-22-01', 1, 4, 1, 6, 29, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-30-01-01', 1, 4, 1, 6, 30, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-30-02-01', 1, 4, 1, 6, 30, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-30-03-01', 1, 4, 1, 6, 30, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-30-04-01', 1, 4, 1, 6, 30, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-30-05-01', 1, 4, 1, 6, 30, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-30-06-01', 1, 4, 1, 6, 30, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-30-07-01', 1, 4, 1, 6, 30, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-30-08-01', 1, 4, 1, 6, 30, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-30-09-01', 1, 4, 1, 6, 30, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-30-10-01', 1, 4, 1, 6, 30, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-30-11-01', 1, 4, 1, 6, 30, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-30-12-01', 1, 4, 1, 6, 30, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-30-13-01', 1, 4, 1, 6, 30, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-30-14-01', 1, 4, 1, 6, 30, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-30-15-01', 1, 4, 1, 6, 30, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-30-16-01', 1, 4, 1, 6, 30, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-30-17-01', 1, 4, 1, 6, 30, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-30-18-01', 1, 4, 1, 6, 30, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-30-19-01', 1, 4, 1, 6, 30, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-30-20-01', 1, 4, 1, 6, 30, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-30-21-01', 1, 4, 1, 6, 30, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-30-22-01', 1, 4, 1, 6, 30, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-31-01-01', 1, 4, 1, 6, 31, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-31-02-01', 1, 4, 1, 6, 31, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-31-03-01', 1, 4, 1, 6, 31, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-31-04-01', 1, 4, 1, 6, 31, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-31-05-01', 1, 4, 1, 6, 31, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-31-06-01', 1, 4, 1, 6, 31, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-31-07-01', 1, 4, 1, 6, 31, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-31-08-01', 1, 4, 1, 6, 31, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-31-09-01', 1, 4, 1, 6, 31, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-31-10-01', 1, 4, 1, 6, 31, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-31-11-01', 1, 4, 1, 6, 31, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-31-12-01', 1, 4, 1, 6, 31, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-31-13-01', 1, 4, 1, 6, 31, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-31-14-01', 1, 4, 1, 6, 31, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-31-15-01', 1, 4, 1, 6, 31, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-31-16-01', 1, 4, 1, 6, 31, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-31-17-01', 1, 4, 1, 6, 31, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-31-18-01', 1, 4, 1, 6, 31, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-31-19-01', 1, 4, 1, 6, 31, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-31-20-01', 1, 4, 1, 6, 31, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-31-21-01', 1, 4, 1, 6, 31, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-31-22-01', 1, 4, 1, 6, 31, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-32-01-01', 1, 4, 1, 6, 32, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-32-02-01', 1, 4, 1, 6, 32, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-32-03-01', 1, 4, 1, 6, 32, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-32-04-01', 1, 4, 1, 6, 32, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-32-05-01', 1, 4, 1, 6, 32, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-32-06-01', 1, 4, 1, 6, 32, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-32-07-01', 1, 4, 1, 6, 32, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-32-08-01', 1, 4, 1, 6, 32, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-32-09-01', 1, 4, 1, 6, 32, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-32-10-01', 1, 4, 1, 6, 32, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-32-11-01', 1, 4, 1, 6, 32, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-32-12-01', 1, 4, 1, 6, 32, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-32-13-01', 1, 4, 1, 6, 32, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-32-14-01', 1, 4, 1, 6, 32, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-32-15-01', 1, 4, 1, 6, 32, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-32-16-01', 1, 4, 1, 6, 32, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-32-17-01', 1, 4, 1, 6, 32, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-32-18-01', 1, 4, 1, 6, 32, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-32-19-01', 1, 4, 1, 6, 32, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-32-20-01', 1, 4, 1, 6, 32, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-32-21-01', 1, 4, 1, 6, 32, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-32-22-01', 1, 4, 1, 6, 32, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-33-01-01', 1, 4, 1, 6, 33, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-33-02-01', 1, 4, 1, 6, 33, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-33-03-01', 1, 4, 1, 6, 33, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-33-04-01', 1, 4, 1, 6, 33, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-33-05-01', 1, 4, 1, 6, 33, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-33-06-01', 1, 4, 1, 6, 33, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-33-07-01', 1, 4, 1, 6, 33, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-33-08-01', 1, 4, 1, 6, 33, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-33-09-01', 1, 4, 1, 6, 33, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-33-10-01', 1, 4, 1, 6, 33, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-33-11-01', 1, 4, 1, 6, 33, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-33-12-01', 1, 4, 1, 6, 33, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-33-13-01', 1, 4, 1, 6, 33, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-33-14-01', 1, 4, 1, 6, 33, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-33-15-01', 1, 4, 1, 6, 33, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-33-16-01', 1, 4, 1, 6, 33, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-33-17-01', 1, 4, 1, 6, 33, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-33-18-01', 1, 4, 1, 6, 33, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-33-19-01', 1, 4, 1, 6, 33, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-33-20-01', 1, 4, 1, 6, 33, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-33-21-01', 1, 4, 1, 6, 33, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-33-22-01', 1, 4, 1, 6, 33, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-34-01-01', 1, 4, 1, 6, 34, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-34-02-01', 1, 4, 1, 6, 34, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-34-03-01', 1, 4, 1, 6, 34, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-34-04-01', 1, 4, 1, 6, 34, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-34-05-01', 1, 4, 1, 6, 34, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-34-06-01', 1, 4, 1, 6, 34, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-34-07-01', 1, 4, 1, 6, 34, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-34-08-01', 1, 4, 1, 6, 34, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-34-09-01', 1, 4, 1, 6, 34, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-34-10-01', 1, 4, 1, 6, 34, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-34-11-01', 1, 4, 1, 6, 34, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-34-12-01', 1, 4, 1, 6, 34, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-34-13-01', 1, 4, 1, 6, 34, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-34-14-01', 1, 4, 1, 6, 34, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-34-15-01', 1, 4, 1, 6, 34, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-34-16-01', 1, 4, 1, 6, 34, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-34-17-01', 1, 4, 1, 6, 34, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-34-18-01', 1, 4, 1, 6, 34, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-34-19-01', 1, 4, 1, 6, 34, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-34-20-01', 1, 4, 1, 6, 34, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-34-21-01', 1, 4, 1, 6, 34, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-34-22-01', 1, 4, 1, 6, 34, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-35-01-01', 1, 4, 1, 6, 35, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-35-02-01', 1, 4, 1, 6, 35, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-35-03-01', 1, 4, 1, 6, 35, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-35-04-01', 1, 4, 1, 6, 35, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-35-05-01', 1, 4, 1, 6, 35, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-35-06-01', 1, 4, 1, 6, 35, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-35-07-01', 1, 4, 1, 6, 35, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-35-08-01', 1, 4, 1, 6, 35, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-35-09-01', 1, 4, 1, 6, 35, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-35-10-01', 1, 4, 1, 6, 35, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-35-11-01', 1, 4, 1, 6, 35, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-35-12-01', 1, 4, 1, 6, 35, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-35-13-01', 1, 4, 1, 6, 35, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-35-14-01', 1, 4, 1, 6, 35, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-35-15-01', 1, 4, 1, 6, 35, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-35-16-01', 1, 4, 1, 6, 35, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-35-17-01', 1, 4, 1, 6, 35, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-35-18-01', 1, 4, 1, 6, 35, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-35-19-01', 1, 4, 1, 6, 35, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-35-20-01', 1, 4, 1, 6, 35, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-35-21-01', 1, 4, 1, 6, 35, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-35-22-01', 1, 4, 1, 6, 35, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-36-01-01', 1, 4, 1, 6, 36, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-36-02-01', 1, 4, 1, 6, 36, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-36-03-01', 1, 4, 1, 6, 36, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-36-04-01', 1, 4, 1, 6, 36, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-36-05-01', 1, 4, 1, 6, 36, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-36-06-01', 1, 4, 1, 6, 36, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-36-07-01', 1, 4, 1, 6, 36, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-36-08-01', 1, 4, 1, 6, 36, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-36-09-01', 1, 4, 1, 6, 36, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-36-10-01', 1, 4, 1, 6, 36, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-36-11-01', 1, 4, 1, 6, 36, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-36-12-01', 1, 4, 1, 6, 36, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-36-13-01', 1, 4, 1, 6, 36, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-36-14-01', 1, 4, 1, 6, 36, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-36-15-01', 1, 4, 1, 6, 36, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-36-16-01', 1, 4, 1, 6, 36, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-36-17-01', 1, 4, 1, 6, 36, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-36-18-01', 1, 4, 1, 6, 36, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-36-19-01', 1, 4, 1, 6, 36, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-36-20-01', 1, 4, 1, 6, 36, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-36-21-01', 1, 4, 1, 6, 36, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-36-22-01', 1, 4, 1, 6, 36, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-37-01-01', 1, 4, 1, 6, 37, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-37-02-01', 1, 4, 1, 6, 37, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-37-03-01', 1, 4, 1, 6, 37, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-37-04-01', 1, 4, 1, 6, 37, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-37-05-01', 1, 4, 1, 6, 37, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-37-06-01', 1, 4, 1, 6, 37, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-37-07-01', 1, 4, 1, 6, 37, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-37-08-01', 1, 4, 1, 6, 37, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-37-09-01', 1, 4, 1, 6, 37, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-37-10-01', 1, 4, 1, 6, 37, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-37-11-01', 1, 4, 1, 6, 37, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-37-12-01', 1, 4, 1, 6, 37, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-37-13-01', 1, 4, 1, 6, 37, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-37-14-01', 1, 4, 1, 6, 37, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-37-15-01', 1, 4, 1, 6, 37, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-37-16-01', 1, 4, 1, 6, 37, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-37-17-01', 1, 4, 1, 6, 37, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-37-18-01', 1, 4, 1, 6, 37, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-37-19-01', 1, 4, 1, 6, 37, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-37-20-01', 1, 4, 1, 6, 37, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-37-21-01', 1, 4, 1, 6, 37, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-37-22-01', 1, 4, 1, 6, 37, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-38-01-01', 1, 4, 1, 6, 38, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-38-02-01', 1, 4, 1, 6, 38, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-38-03-01', 1, 4, 1, 6, 38, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-38-04-01', 1, 4, 1, 6, 38, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-38-05-01', 1, 4, 1, 6, 38, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-38-06-01', 1, 4, 1, 6, 38, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-38-07-01', 1, 4, 1, 6, 38, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-38-08-01', 1, 4, 1, 6, 38, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-38-09-01', 1, 4, 1, 6, 38, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-38-10-01', 1, 4, 1, 6, 38, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-38-11-01', 1, 4, 1, 6, 38, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-38-12-01', 1, 4, 1, 6, 38, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-38-13-01', 1, 4, 1, 6, 38, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-38-14-01', 1, 4, 1, 6, 38, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-38-15-01', 1, 4, 1, 6, 38, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-38-16-01', 1, 4, 1, 6, 38, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-38-17-01', 1, 4, 1, 6, 38, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-38-18-01', 1, 4, 1, 6, 38, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-38-19-01', 1, 4, 1, 6, 38, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-38-20-01', 1, 4, 1, 6, 38, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-38-21-01', 1, 4, 1, 6, 38, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-38-22-01', 1, 4, 1, 6, 38, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-39-01-01', 1, 4, 1, 6, 39, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-39-02-01', 1, 4, 1, 6, 39, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-39-03-01', 1, 4, 1, 6, 39, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-39-04-01', 1, 4, 1, 6, 39, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-39-05-01', 1, 4, 1, 6, 39, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-39-06-01', 1, 4, 1, 6, 39, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-39-07-01', 1, 4, 1, 6, 39, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-39-08-01', 1, 4, 1, 6, 39, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-39-09-01', 1, 4, 1, 6, 39, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-39-10-01', 1, 4, 1, 6, 39, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-39-11-01', 1, 4, 1, 6, 39, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-39-12-01', 1, 4, 1, 6, 39, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-39-13-01', 1, 4, 1, 6, 39, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-39-14-01', 1, 4, 1, 6, 39, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-39-15-01', 1, 4, 1, 6, 39, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-39-16-01', 1, 4, 1, 6, 39, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-39-17-01', 1, 4, 1, 6, 39, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-39-18-01', 1, 4, 1, 6, 39, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-39-19-01', 1, 4, 1, 6, 39, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-39-20-01', 1, 4, 1, 6, 39, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-39-21-01', 1, 4, 1, 6, 39, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-39-22-01', 1, 4, 1, 6, 39, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-40-01-01', 1, 4, 1, 6, 40, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-40-02-01', 1, 4, 1, 6, 40, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-40-03-01', 1, 4, 1, 6, 40, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-40-04-01', 1, 4, 1, 6, 40, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-40-05-01', 1, 4, 1, 6, 40, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-40-06-01', 1, 4, 1, 6, 40, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-40-07-01', 1, 4, 1, 6, 40, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-40-08-01', 1, 4, 1, 6, 40, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-40-09-01', 1, 4, 1, 6, 40, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-40-10-01', 1, 4, 1, 6, 40, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-40-11-01', 1, 4, 1, 6, 40, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-40-12-01', 1, 4, 1, 6, 40, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-40-13-01', 1, 4, 1, 6, 40, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-40-14-01', 1, 4, 1, 6, 40, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-40-15-01', 1, 4, 1, 6, 40, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-40-16-01', 1, 4, 1, 6, 40, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-40-17-01', 1, 4, 1, 6, 40, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-40-18-01', 1, 4, 1, 6, 40, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-40-19-01', 1, 4, 1, 6, 40, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-40-20-01', 1, 4, 1, 6, 40, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-40-21-01', 1, 4, 1, 6, 40, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-40-22-01', 1, 4, 1, 6, 40, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-41-01-01', 1, 4, 1, 6, 41, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-41-02-01', 1, 4, 1, 6, 41, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-41-03-01', 1, 4, 1, 6, 41, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-41-04-01', 1, 4, 1, 6, 41, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-41-05-01', 1, 4, 1, 6, 41, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-41-06-01', 1, 4, 1, 6, 41, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-41-07-01', 1, 4, 1, 6, 41, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-41-08-01', 1, 4, 1, 6, 41, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-41-09-01', 1, 4, 1, 6, 41, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-41-10-01', 1, 4, 1, 6, 41, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-41-11-01', 1, 4, 1, 6, 41, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-41-12-01', 1, 4, 1, 6, 41, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-41-13-01', 1, 4, 1, 6, 41, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-41-14-01', 1, 4, 1, 6, 41, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-41-15-01', 1, 4, 1, 6, 41, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-41-16-01', 1, 4, 1, 6, 41, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-41-17-01', 1, 4, 1, 6, 41, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-41-18-01', 1, 4, 1, 6, 41, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-41-19-01', 1, 4, 1, 6, 41, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-41-20-01', 1, 4, 1, 6, 41, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-41-21-01', 1, 4, 1, 6, 41, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-41-22-01', 1, 4, 1, 6, 41, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-42-01-01', 1, 4, 1, 6, 42, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-42-02-01', 1, 4, 1, 6, 42, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-42-03-01', 1, 4, 1, 6, 42, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-42-04-01', 1, 4, 1, 6, 42, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-42-05-01', 1, 4, 1, 6, 42, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-42-06-01', 1, 4, 1, 6, 42, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-42-07-01', 1, 4, 1, 6, 42, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-42-08-01', 1, 4, 1, 6, 42, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-42-09-01', 1, 4, 1, 6, 42, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-42-10-01', 1, 4, 1, 6, 42, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-42-11-01', 1, 4, 1, 6, 42, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-42-12-01', 1, 4, 1, 6, 42, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-42-13-01', 1, 4, 1, 6, 42, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-42-14-01', 1, 4, 1, 6, 42, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-42-15-01', 1, 4, 1, 6, 42, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-42-16-01', 1, 4, 1, 6, 42, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-42-17-01', 1, 4, 1, 6, 42, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-42-18-01', 1, 4, 1, 6, 42, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-42-19-01', 1, 4, 1, 6, 42, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-42-20-01', 1, 4, 1, 6, 42, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-42-21-01', 1, 4, 1, 6, 42, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-42-22-01', 1, 4, 1, 6, 42, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-43-01-01', 1, 4, 1, 6, 43, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-43-02-01', 1, 4, 1, 6, 43, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-43-03-01', 1, 4, 1, 6, 43, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-43-04-01', 1, 4, 1, 6, 43, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-43-05-01', 1, 4, 1, 6, 43, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-43-06-01', 1, 4, 1, 6, 43, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-43-07-01', 1, 4, 1, 6, 43, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-43-08-01', 1, 4, 1, 6, 43, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-43-09-01', 1, 4, 1, 6, 43, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-43-10-01', 1, 4, 1, 6, 43, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-43-11-01', 1, 4, 1, 6, 43, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-43-12-01', 1, 4, 1, 6, 43, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-43-13-01', 1, 4, 1, 6, 43, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-43-14-01', 1, 4, 1, 6, 43, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-43-15-01', 1, 4, 1, 6, 43, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-43-16-01', 1, 4, 1, 6, 43, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-43-17-01', 1, 4, 1, 6, 43, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-43-18-01', 1, 4, 1, 6, 43, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-43-19-01', 1, 4, 1, 6, 43, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-43-20-01', 1, 4, 1, 6, 43, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-43-21-01', 1, 4, 1, 6, 43, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-43-22-01', 1, 4, 1, 6, 43, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-44-01-01', 1, 4, 1, 6, 44, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-44-02-01', 1, 4, 1, 6, 44, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-44-03-01', 1, 4, 1, 6, 44, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-44-04-01', 1, 4, 1, 6, 44, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-44-05-01', 1, 4, 1, 6, 44, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-44-06-01', 1, 4, 1, 6, 44, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-44-07-01', 1, 4, 1, 6, 44, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-44-08-01', 1, 4, 1, 6, 44, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-44-09-01', 1, 4, 1, 6, 44, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-44-10-01', 1, 4, 1, 6, 44, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-44-11-01', 1, 4, 1, 6, 44, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-44-12-01', 1, 4, 1, 6, 44, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-44-13-01', 1, 4, 1, 6, 44, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-44-14-01', 1, 4, 1, 6, 44, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-44-15-01', 1, 4, 1, 6, 44, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-44-16-01', 1, 4, 1, 6, 44, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-44-17-01', 1, 4, 1, 6, 44, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-44-18-01', 1, 4, 1, 6, 44, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-44-19-01', 1, 4, 1, 6, 44, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-44-20-01', 1, 4, 1, 6, 44, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-44-21-01', 1, 4, 1, 6, 44, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-44-22-01', 1, 4, 1, 6, 44, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-45-01-01', 1, 4, 1, 6, 45, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-45-02-01', 1, 4, 1, 6, 45, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-45-03-01', 1, 4, 1, 6, 45, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-45-04-01', 1, 4, 1, 6, 45, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-45-05-01', 1, 4, 1, 6, 45, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-45-06-01', 1, 4, 1, 6, 45, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-45-07-01', 1, 4, 1, 6, 45, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-45-08-01', 1, 4, 1, 6, 45, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-45-09-01', 1, 4, 1, 6, 45, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-45-10-01', 1, 4, 1, 6, 45, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-45-11-01', 1, 4, 1, 6, 45, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-45-12-01', 1, 4, 1, 6, 45, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-45-13-01', 1, 4, 1, 6, 45, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-45-14-01', 1, 4, 1, 6, 45, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-45-15-01', 1, 4, 1, 6, 45, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-45-16-01', 1, 4, 1, 6, 45, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-45-17-01', 1, 4, 1, 6, 45, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-45-18-01', 1, 4, 1, 6, 45, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-45-19-01', 1, 4, 1, 6, 45, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-45-20-01', 1, 4, 1, 6, 45, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-45-21-01', 1, 4, 1, 6, 45, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-45-22-01', 1, 4, 1, 6, 45, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-46-01-01', 1, 4, 1, 6, 46, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-46-02-01', 1, 4, 1, 6, 46, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-46-03-01', 1, 4, 1, 6, 46, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-46-04-01', 1, 4, 1, 6, 46, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-46-05-01', 1, 4, 1, 6, 46, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-46-06-01', 1, 4, 1, 6, 46, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-46-07-01', 1, 4, 1, 6, 46, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-46-08-01', 1, 4, 1, 6, 46, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-46-09-01', 1, 4, 1, 6, 46, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-46-10-01', 1, 4, 1, 6, 46, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-46-11-01', 1, 4, 1, 6, 46, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-46-12-01', 1, 4, 1, 6, 46, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-46-13-01', 1, 4, 1, 6, 46, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-46-14-01', 1, 4, 1, 6, 46, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-46-15-01', 1, 4, 1, 6, 46, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-46-16-01', 1, 4, 1, 6, 46, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-46-17-01', 1, 4, 1, 6, 46, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-46-18-01', 1, 4, 1, 6, 46, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-46-19-01', 1, 4, 1, 6, 46, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-46-20-01', 1, 4, 1, 6, 46, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-46-21-01', 1, 4, 1, 6, 46, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-46-22-01', 1, 4, 1, 6, 46, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-47-01-01', 1, 4, 1, 6, 47, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-47-02-01', 1, 4, 1, 6, 47, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-47-03-01', 1, 4, 1, 6, 47, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-47-04-01', 1, 4, 1, 6, 47, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-47-05-01', 1, 4, 1, 6, 47, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-47-06-01', 1, 4, 1, 6, 47, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-47-07-01', 1, 4, 1, 6, 47, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-47-08-01', 1, 4, 1, 6, 47, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-47-09-01', 1, 4, 1, 6, 47, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-47-10-01', 1, 4, 1, 6, 47, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-47-11-01', 1, 4, 1, 6, 47, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-47-12-01', 1, 4, 1, 6, 47, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-47-13-01', 1, 4, 1, 6, 47, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-47-14-01', 1, 4, 1, 6, 47, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-47-15-01', 1, 4, 1, 6, 47, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-47-16-01', 1, 4, 1, 6, 47, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-47-17-01', 1, 4, 1, 6, 47, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-47-18-01', 1, 4, 1, 6, 47, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-47-19-01', 1, 4, 1, 6, 47, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-47-20-01', 1, 4, 1, 6, 47, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-47-21-01', 1, 4, 1, 6, 47, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-47-22-01', 1, 4, 1, 6, 47, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-48-01-01', 1, 4, 1, 6, 48, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-48-02-01', 1, 4, 1, 6, 48, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-48-03-01', 1, 4, 1, 6, 48, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-48-04-01', 1, 4, 1, 6, 48, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-48-05-01', 1, 4, 1, 6, 48, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-48-06-01', 1, 4, 1, 6, 48, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-48-07-01', 1, 4, 1, 6, 48, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-48-08-01', 1, 4, 1, 6, 48, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-48-09-01', 1, 4, 1, 6, 48, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-48-10-01', 1, 4, 1, 6, 48, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-48-11-01', 1, 4, 1, 6, 48, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-48-12-01', 1, 4, 1, 6, 48, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-48-13-01', 1, 4, 1, 6, 48, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-48-14-01', 1, 4, 1, 6, 48, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-48-15-01', 1, 4, 1, 6, 48, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-48-16-01', 1, 4, 1, 6, 48, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-48-17-01', 1, 4, 1, 6, 48, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-48-18-01', 1, 4, 1, 6, 48, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-48-19-01', 1, 4, 1, 6, 48, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-48-20-01', 1, 4, 1, 6, 48, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-48-21-01', 1, 4, 1, 6, 48, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-48-22-01', 1, 4, 1, 6, 48, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-49-01-01', 1, 4, 1, 6, 49, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-49-02-01', 1, 4, 1, 6, 49, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-49-03-01', 1, 4, 1, 6, 49, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-49-04-01', 1, 4, 1, 6, 49, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-49-05-01', 1, 4, 1, 6, 49, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-49-06-01', 1, 4, 1, 6, 49, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-49-07-01', 1, 4, 1, 6, 49, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-49-08-01', 1, 4, 1, 6, 49, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-49-09-01', 1, 4, 1, 6, 49, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-49-10-01', 1, 4, 1, 6, 49, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-49-11-01', 1, 4, 1, 6, 49, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-49-12-01', 1, 4, 1, 6, 49, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-49-13-01', 1, 4, 1, 6, 49, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-49-14-01', 1, 4, 1, 6, 49, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-49-15-01', 1, 4, 1, 6, 49, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-49-16-01', 1, 4, 1, 6, 49, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-49-17-01', 1, 4, 1, 6, 49, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-49-18-01', 1, 4, 1, 6, 49, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-49-19-01', 1, 4, 1, 6, 49, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-49-20-01', 1, 4, 1, 6, 49, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-49-21-01', 1, 4, 1, 6, 49, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-49-22-01', 1, 4, 1, 6, 49, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-50-01-01', 1, 4, 1, 6, 50, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-50-02-01', 1, 4, 1, 6, 50, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-50-03-01', 1, 4, 1, 6, 50, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-50-04-01', 1, 4, 1, 6, 50, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-50-05-01', 1, 4, 1, 6, 50, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-50-06-01', 1, 4, 1, 6, 50, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-50-07-01', 1, 4, 1, 6, 50, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-50-08-01', 1, 4, 1, 6, 50, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-50-09-01', 1, 4, 1, 6, 50, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-50-10-01', 1, 4, 1, 6, 50, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-50-11-01', 1, 4, 1, 6, 50, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-50-12-01', 1, 4, 1, 6, 50, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-50-13-01', 1, 4, 1, 6, 50, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-50-14-01', 1, 4, 1, 6, 50, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-50-15-01', 1, 4, 1, 6, 50, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-50-16-01', 1, 4, 1, 6, 50, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-50-17-01', 1, 4, 1, 6, 50, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-50-18-01', 1, 4, 1, 6, 50, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-50-19-01', 1, 4, 1, 6, 50, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-50-20-01', 1, 4, 1, 6, 50, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-50-21-01', 1, 4, 1, 6, 50, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-50-22-01', 1, 4, 1, 6, 50, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-51-01-01', 1, 4, 1, 6, 51, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-51-02-01', 1, 4, 1, 6, 51, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-51-03-01', 1, 4, 1, 6, 51, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-51-04-01', 1, 4, 1, 6, 51, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-51-05-01', 1, 4, 1, 6, 51, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-51-06-01', 1, 4, 1, 6, 51, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-51-07-01', 1, 4, 1, 6, 51, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-51-08-01', 1, 4, 1, 6, 51, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-51-09-01', 1, 4, 1, 6, 51, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-51-10-01', 1, 4, 1, 6, 51, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-51-11-01', 1, 4, 1, 6, 51, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-51-12-01', 1, 4, 1, 6, 51, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-51-13-01', 1, 4, 1, 6, 51, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-51-14-01', 1, 4, 1, 6, 51, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-51-15-01', 1, 4, 1, 6, 51, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-51-16-01', 1, 4, 1, 6, 51, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-51-17-01', 1, 4, 1, 6, 51, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-51-18-01', 1, 4, 1, 6, 51, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-51-19-01', 1, 4, 1, 6, 51, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-51-20-01', 1, 4, 1, 6, 51, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-51-21-01', 1, 4, 1, 6, 51, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-51-22-01', 1, 4, 1, 6, 51, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-52-01-01', 1, 4, 1, 6, 52, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-52-02-01', 1, 4, 1, 6, 52, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-52-03-01', 1, 4, 1, 6, 52, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-52-04-01', 1, 4, 1, 6, 52, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-52-05-01', 1, 4, 1, 6, 52, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-52-06-01', 1, 4, 1, 6, 52, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-52-07-01', 1, 4, 1, 6, 52, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-52-08-01', 1, 4, 1, 6, 52, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-52-09-01', 1, 4, 1, 6, 52, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-52-10-01', 1, 4, 1, 6, 52, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-52-11-01', 1, 4, 1, 6, 52, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-52-12-01', 1, 4, 1, 6, 52, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-52-13-01', 1, 4, 1, 6, 52, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-52-14-01', 1, 4, 1, 6, 52, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-52-15-01', 1, 4, 1, 6, 52, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-52-16-01', 1, 4, 1, 6, 52, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-52-17-01', 1, 4, 1, 6, 52, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-52-18-01', 1, 4, 1, 6, 52, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-52-19-01', 1, 4, 1, 6, 52, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-52-20-01', 1, 4, 1, 6, 52, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-52-21-01', 1, 4, 1, 6, 52, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-52-22-01', 1, 4, 1, 6, 52, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-53-01-01', 1, 4, 1, 6, 53, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-53-02-01', 1, 4, 1, 6, 53, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-53-03-01', 1, 4, 1, 6, 53, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-53-04-01', 1, 4, 1, 6, 53, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-53-05-01', 1, 4, 1, 6, 53, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-53-06-01', 1, 4, 1, 6, 53, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-53-07-01', 1, 4, 1, 6, 53, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-53-08-01', 1, 4, 1, 6, 53, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-53-09-01', 1, 4, 1, 6, 53, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-53-10-01', 1, 4, 1, 6, 53, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-53-11-01', 1, 4, 1, 6, 53, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-53-12-01', 1, 4, 1, 6, 53, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-53-13-01', 1, 4, 1, 6, 53, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-53-14-01', 1, 4, 1, 6, 53, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-53-15-01', 1, 4, 1, 6, 53, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-53-16-01', 1, 4, 1, 6, 53, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-53-17-01', 1, 4, 1, 6, 53, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-53-18-01', 1, 4, 1, 6, 53, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-53-19-01', 1, 4, 1, 6, 53, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-53-20-01', 1, 4, 1, 6, 53, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-53-21-01', 1, 4, 1, 6, 53, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-53-22-01', 1, 4, 1, 6, 53, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-54-01-01', 1, 4, 1, 6, 54, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-54-02-01', 1, 4, 1, 6, 54, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-54-03-01', 1, 4, 1, 6, 54, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-54-04-01', 1, 4, 1, 6, 54, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-54-05-01', 1, 4, 1, 6, 54, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-54-06-01', 1, 4, 1, 6, 54, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-54-07-01', 1, 4, 1, 6, 54, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-54-08-01', 1, 4, 1, 6, 54, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-54-09-01', 1, 4, 1, 6, 54, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-54-10-01', 1, 4, 1, 6, 54, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-54-11-01', 1, 4, 1, 6, 54, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-54-12-01', 1, 4, 1, 6, 54, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-54-13-01', 1, 4, 1, 6, 54, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-54-14-01', 1, 4, 1, 6, 54, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-54-15-01', 1, 4, 1, 6, 54, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-54-16-01', 1, 4, 1, 6, 54, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-54-17-01', 1, 4, 1, 6, 54, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-54-18-01', 1, 4, 1, 6, 54, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-54-19-01', 1, 4, 1, 6, 54, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-54-20-01', 1, 4, 1, 6, 54, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-54-21-01', 1, 4, 1, 6, 54, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-54-22-01', 1, 4, 1, 6, 54, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-55-01-01', 1, 4, 1, 6, 55, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-55-02-01', 1, 4, 1, 6, 55, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-55-03-01', 1, 4, 1, 6, 55, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-55-04-01', 1, 4, 1, 6, 55, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-55-05-01', 1, 4, 1, 6, 55, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-55-06-01', 1, 4, 1, 6, 55, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-55-07-01', 1, 4, 1, 6, 55, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-55-08-01', 1, 4, 1, 6, 55, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-55-09-01', 1, 4, 1, 6, 55, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-55-10-01', 1, 4, 1, 6, 55, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-55-11-01', 1, 4, 1, 6, 55, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-55-12-01', 1, 4, 1, 6, 55, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-55-13-01', 1, 4, 1, 6, 55, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-55-14-01', 1, 4, 1, 6, 55, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-55-15-01', 1, 4, 1, 6, 55, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-55-16-01', 1, 4, 1, 6, 55, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-55-17-01', 1, 4, 1, 6, 55, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-55-18-01', 1, 4, 1, 6, 55, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-55-19-01', 1, 4, 1, 6, 55, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-55-20-01', 1, 4, 1, 6, 55, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-55-21-01', 1, 4, 1, 6, 55, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-55-22-01', 1, 4, 1, 6, 55, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-56-01-01', 1, 4, 1, 6, 56, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-56-02-01', 1, 4, 1, 6, 56, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-56-03-01', 1, 4, 1, 6, 56, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-56-04-01', 1, 4, 1, 6, 56, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-56-05-01', 1, 4, 1, 6, 56, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-56-06-01', 1, 4, 1, 6, 56, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-56-07-01', 1, 4, 1, 6, 56, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-56-08-01', 1, 4, 1, 6, 56, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-56-09-01', 1, 4, 1, 6, 56, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-56-10-01', 1, 4, 1, 6, 56, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-56-11-01', 1, 4, 1, 6, 56, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-56-12-01', 1, 4, 1, 6, 56, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-56-13-01', 1, 4, 1, 6, 56, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-56-14-01', 1, 4, 1, 6, 56, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-56-15-01', 1, 4, 1, 6, 56, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-56-16-01', 1, 4, 1, 6, 56, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-56-17-01', 1, 4, 1, 6, 56, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-56-18-01', 1, 4, 1, 6, 56, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-56-19-01', 1, 4, 1, 6, 56, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-56-20-01', 1, 4, 1, 6, 56, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-56-21-01', 1, 4, 1, 6, 56, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-56-22-01', 1, 4, 1, 6, 56, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-57-01-01', 1, 4, 1, 6, 57, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-57-02-01', 1, 4, 1, 6, 57, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-57-03-01', 1, 4, 1, 6, 57, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-57-04-01', 1, 4, 1, 6, 57, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-57-05-01', 1, 4, 1, 6, 57, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-57-06-01', 1, 4, 1, 6, 57, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-57-07-01', 1, 4, 1, 6, 57, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-57-08-01', 1, 4, 1, 6, 57, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-57-09-01', 1, 4, 1, 6, 57, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-57-10-01', 1, 4, 1, 6, 57, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-57-11-01', 1, 4, 1, 6, 57, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-57-12-01', 1, 4, 1, 6, 57, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-57-13-01', 1, 4, 1, 6, 57, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-57-14-01', 1, 4, 1, 6, 57, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-57-15-01', 1, 4, 1, 6, 57, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-57-16-01', 1, 4, 1, 6, 57, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-57-17-01', 1, 4, 1, 6, 57, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-57-18-01', 1, 4, 1, 6, 57, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-57-19-01', 1, 4, 1, 6, 57, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-57-20-01', 1, 4, 1, 6, 57, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-57-21-01', 1, 4, 1, 6, 57, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-57-22-01', 1, 4, 1, 6, 57, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-58-01-01', 1, 4, 1, 6, 58, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-58-02-01', 1, 4, 1, 6, 58, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-58-03-01', 1, 4, 1, 6, 58, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-58-04-01', 1, 4, 1, 6, 58, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-58-05-01', 1, 4, 1, 6, 58, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-58-06-01', 1, 4, 1, 6, 58, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-58-07-01', 1, 4, 1, 6, 58, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-58-08-01', 1, 4, 1, 6, 58, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-58-09-01', 1, 4, 1, 6, 58, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-58-10-01', 1, 4, 1, 6, 58, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-58-11-01', 1, 4, 1, 6, 58, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-58-12-01', 1, 4, 1, 6, 58, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-58-13-01', 1, 4, 1, 6, 58, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-58-14-01', 1, 4, 1, 6, 58, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-58-15-01', 1, 4, 1, 6, 58, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-58-16-01', 1, 4, 1, 6, 58, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-58-17-01', 1, 4, 1, 6, 58, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-58-18-01', 1, 4, 1, 6, 58, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-58-19-01', 1, 4, 1, 6, 58, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-58-20-01', 1, 4, 1, 6, 58, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-58-21-01', 1, 4, 1, 6, 58, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-58-22-01', 1, 4, 1, 6, 58, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-59-01-01', 1, 4, 1, 6, 59, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-59-02-01', 1, 4, 1, 6, 59, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-59-03-01', 1, 4, 1, 6, 59, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-59-04-01', 1, 4, 1, 6, 59, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-59-05-01', 1, 4, 1, 6, 59, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-59-06-01', 1, 4, 1, 6, 59, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-59-07-01', 1, 4, 1, 6, 59, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-59-08-01', 1, 4, 1, 6, 59, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-59-09-01', 1, 4, 1, 6, 59, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-59-10-01', 1, 4, 1, 6, 59, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-59-11-01', 1, 4, 1, 6, 59, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-59-12-01', 1, 4, 1, 6, 59, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-59-13-01', 1, 4, 1, 6, 59, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-59-14-01', 1, 4, 1, 6, 59, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-59-15-01', 1, 4, 1, 6, 59, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-59-16-01', 1, 4, 1, 6, 59, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-59-17-01', 1, 4, 1, 6, 59, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-59-18-01', 1, 4, 1, 6, 59, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-59-19-01', 1, 4, 1, 6, 59, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-59-20-01', 1, 4, 1, 6, 59, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-59-21-01', 1, 4, 1, 6, 59, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-59-22-01', 1, 4, 1, 6, 59, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-60-01-01', 1, 4, 1, 6, 60, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-60-02-01', 1, 4, 1, 6, 60, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-60-03-01', 1, 4, 1, 6, 60, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-60-04-01', 1, 4, 1, 6, 60, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-60-05-01', 1, 4, 1, 6, 60, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-60-06-01', 1, 4, 1, 6, 60, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-60-07-01', 1, 4, 1, 6, 60, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-60-08-01', 1, 4, 1, 6, 60, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-60-09-01', 1, 4, 1, 6, 60, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-60-10-01', 1, 4, 1, 6, 60, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-60-11-01', 1, 4, 1, 6, 60, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-60-12-01', 1, 4, 1, 6, 60, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-60-13-01', 1, 4, 1, 6, 60, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-60-14-01', 1, 4, 1, 6, 60, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-60-15-01', 1, 4, 1, 6, 60, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-60-16-01', 1, 4, 1, 6, 60, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-60-17-01', 1, 4, 1, 6, 60, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-60-18-01', 1, 4, 1, 6, 60, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-60-19-01', 1, 4, 1, 6, 60, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-60-20-01', 1, 4, 1, 6, 60, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-60-21-01', 1, 4, 1, 6, 60, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-60-22-01', 1, 4, 1, 6, 60, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-61-01-01', 1, 4, 1, 6, 61, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-61-02-01', 1, 4, 1, 6, 61, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-61-03-01', 1, 4, 1, 6, 61, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-61-04-01', 1, 4, 1, 6, 61, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-61-05-01', 1, 4, 1, 6, 61, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-61-06-01', 1, 4, 1, 6, 61, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-61-07-01', 1, 4, 1, 6, 61, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-61-08-01', 1, 4, 1, 6, 61, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-61-09-01', 1, 4, 1, 6, 61, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-61-10-01', 1, 4, 1, 6, 61, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-61-11-01', 1, 4, 1, 6, 61, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-61-12-01', 1, 4, 1, 6, 61, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-61-13-01', 1, 4, 1, 6, 61, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-61-14-01', 1, 4, 1, 6, 61, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-61-15-01', 1, 4, 1, 6, 61, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-61-16-01', 1, 4, 1, 6, 61, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-61-17-01', 1, 4, 1, 6, 61, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-61-18-01', 1, 4, 1, 6, 61, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-61-19-01', 1, 4, 1, 6, 61, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-61-20-01', 1, 4, 1, 6, 61, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-61-21-01', 1, 4, 1, 6, 61, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-61-22-01', 1, 4, 1, 6, 61, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-62-01-01', 1, 4, 1, 6, 62, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-62-02-01', 1, 4, 1, 6, 62, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-62-03-01', 1, 4, 1, 6, 62, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-62-04-01', 1, 4, 1, 6, 62, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-62-05-01', 1, 4, 1, 6, 62, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-62-06-01', 1, 4, 1, 6, 62, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-62-07-01', 1, 4, 1, 6, 62, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-62-08-01', 1, 4, 1, 6, 62, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-62-09-01', 1, 4, 1, 6, 62, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-62-10-01', 1, 4, 1, 6, 62, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-62-11-01', 1, 4, 1, 6, 62, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-62-12-01', 1, 4, 1, 6, 62, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-62-13-01', 1, 4, 1, 6, 62, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-62-14-01', 1, 4, 1, 6, 62, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-62-15-01', 1, 4, 1, 6, 62, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-62-16-01', 1, 4, 1, 6, 62, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-62-17-01', 1, 4, 1, 6, 62, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-62-18-01', 1, 4, 1, 6, 62, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-62-19-01', 1, 4, 1, 6, 62, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-62-20-01', 1, 4, 1, 6, 62, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-62-21-01', 1, 4, 1, 6, 62, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-62-22-01', 1, 4, 1, 6, 62, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-63-01-01', 1, 4, 1, 6, 63, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-63-02-01', 1, 4, 1, 6, 63, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-63-03-01', 1, 4, 1, 6, 63, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-63-04-01', 1, 4, 1, 6, 63, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-63-05-01', 1, 4, 1, 6, 63, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-63-06-01', 1, 4, 1, 6, 63, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-63-07-01', 1, 4, 1, 6, 63, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-63-08-01', 1, 4, 1, 6, 63, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-63-09-01', 1, 4, 1, 6, 63, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-63-10-01', 1, 4, 1, 6, 63, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-63-11-01', 1, 4, 1, 6, 63, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-63-12-01', 1, 4, 1, 6, 63, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-63-13-01', 1, 4, 1, 6, 63, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-63-14-01', 1, 4, 1, 6, 63, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-63-15-01', 1, 4, 1, 6, 63, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-63-16-01', 1, 4, 1, 6, 63, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-63-17-01', 1, 4, 1, 6, 63, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-63-18-01', 1, 4, 1, 6, 63, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-63-19-01', 1, 4, 1, 6, 63, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-63-20-01', 1, 4, 1, 6, 63, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-63-21-01', 1, 4, 1, 6, 63, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-63-22-01', 1, 4, 1, 6, 63, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-64-01-01', 1, 4, 1, 6, 64, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-64-02-01', 1, 4, 1, 6, 64, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-64-03-01', 1, 4, 1, 6, 64, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-64-04-01', 1, 4, 1, 6, 64, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-64-05-01', 1, 4, 1, 6, 64, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-64-06-01', 1, 4, 1, 6, 64, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-64-07-01', 1, 4, 1, 6, 64, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-64-08-01', 1, 4, 1, 6, 64, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-64-09-01', 1, 4, 1, 6, 64, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-64-10-01', 1, 4, 1, 6, 64, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-64-11-01', 1, 4, 1, 6, 64, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-64-12-01', 1, 4, 1, 6, 64, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-64-13-01', 1, 4, 1, 6, 64, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-64-14-01', 1, 4, 1, 6, 64, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-64-15-01', 1, 4, 1, 6, 64, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-64-16-01', 1, 4, 1, 6, 64, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-64-17-01', 1, 4, 1, 6, 64, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-64-18-01', 1, 4, 1, 6, 64, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-64-19-01', 1, 4, 1, 6, 64, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-64-20-01', 1, 4, 1, 6, 64, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-64-21-01', 1, 4, 1, 6, 64, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('06-64-22-01', 1, 4, 1, 6, 64, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-01-01-01', 1, 4, 1, 7, 1, 1, 1, 0, 1, 'ASRS000037'); +INSERT INTO `tbl_app_location` VALUES ('07-01-02-01', 1, 4, 1, 7, 1, 2, 1, 0, 1, 'ASRS000009'); +INSERT INTO `tbl_app_location` VALUES ('07-01-03-01', 1, 4, 1, 7, 1, 3, 1, 0, 1, 'ASRS000017'); +INSERT INTO `tbl_app_location` VALUES ('07-01-04-01', 1, 4, 1, 7, 1, 4, 1, 0, 1, 'ASRS000057'); +INSERT INTO `tbl_app_location` VALUES ('07-01-05-01', 1, 4, 1, 7, 1, 5, 1, 0, 1, 'ASRS000039'); +INSERT INTO `tbl_app_location` VALUES ('07-01-06-01', 1, 4, 1, 7, 1, 6, 1, 0, 1, 'ASRS000025'); +INSERT INTO `tbl_app_location` VALUES ('07-01-07-01', 1, 4, 1, 7, 1, 7, 1, 0, 1, 'ASRS000198'); +INSERT INTO `tbl_app_location` VALUES ('07-01-08-01', 1, 4, 1, 7, 1, 8, 1, 0, 1, 'ASRS000168'); +INSERT INTO `tbl_app_location` VALUES ('07-01-09-01', 1, 4, 1, 7, 1, 9, 1, 0, 1, 'ASRS000044'); +INSERT INTO `tbl_app_location` VALUES ('07-01-10-01', 1, 4, 1, 7, 1, 10, 1, 0, 1, 'ASRS000199'); +INSERT INTO `tbl_app_location` VALUES ('07-01-11-01', 1, 4, 1, 7, 1, 11, 1, 0, 1, 'ASRS000076'); +INSERT INTO `tbl_app_location` VALUES ('07-01-12-01', 1, 4, 1, 7, 1, 12, 1, 0, 1, 'ASRS000113'); +INSERT INTO `tbl_app_location` VALUES ('07-01-13-01', 1, 4, 1, 7, 1, 13, 1, 0, 1, 'ASRS000151'); +INSERT INTO `tbl_app_location` VALUES ('07-01-14-01', 1, 4, 1, 7, 1, 14, 1, 0, 1, 'ASRS000152'); +INSERT INTO `tbl_app_location` VALUES ('07-01-15-01', 1, 4, 1, 7, 1, 15, 1, 0, 1, 'ASRS000162'); +INSERT INTO `tbl_app_location` VALUES ('07-01-16-01', 1, 4, 1, 7, 1, 16, 1, 0, 1, 'ASRS000129'); +INSERT INTO `tbl_app_location` VALUES ('07-01-17-01', 1, 4, 1, 7, 1, 17, 1, 0, 1, 'ASRS000127'); +INSERT INTO `tbl_app_location` VALUES ('07-01-18-01', 1, 4, 1, 7, 1, 18, 1, 0, 1, 'ASRS000078'); +INSERT INTO `tbl_app_location` VALUES ('07-01-19-01', 1, 4, 1, 7, 1, 19, 1, 0, 1, 'ASRS000154'); +INSERT INTO `tbl_app_location` VALUES ('07-01-20-01', 1, 4, 1, 7, 1, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-01-21-01', 1, 4, 1, 7, 1, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-01-22-01', 1, 4, 1, 7, 1, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-02-01-01', 1, 4, 1, 7, 2, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-02-02-01', 1, 4, 1, 7, 2, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-02-03-01', 1, 4, 1, 7, 2, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-02-04-01', 1, 4, 1, 7, 2, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-02-05-01', 1, 4, 1, 7, 2, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-02-06-01', 1, 4, 1, 7, 2, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-02-07-01', 1, 4, 1, 7, 2, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-02-08-01', 1, 4, 1, 7, 2, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-02-09-01', 1, 4, 1, 7, 2, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-02-10-01', 1, 4, 1, 7, 2, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-02-11-01', 1, 4, 1, 7, 2, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-02-12-01', 1, 4, 1, 7, 2, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-02-13-01', 1, 4, 1, 7, 2, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-02-14-01', 1, 4, 1, 7, 2, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-02-15-01', 1, 4, 1, 7, 2, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-02-16-01', 1, 4, 1, 7, 2, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-02-17-01', 1, 4, 1, 7, 2, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-02-18-01', 1, 4, 1, 7, 2, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-02-19-01', 1, 4, 1, 7, 2, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-02-20-01', 1, 4, 1, 7, 2, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-02-21-01', 1, 4, 1, 7, 2, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-02-22-01', 1, 4, 1, 7, 2, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-03-01-01', 1, 4, 1, 7, 3, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-03-02-01', 1, 4, 1, 7, 3, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-03-03-01', 1, 4, 1, 7, 3, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-03-04-01', 1, 4, 1, 7, 3, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-03-05-01', 1, 4, 1, 7, 3, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-03-06-01', 1, 4, 1, 7, 3, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-03-07-01', 1, 4, 1, 7, 3, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-03-08-01', 1, 4, 1, 7, 3, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-03-09-01', 1, 4, 1, 7, 3, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-03-10-01', 1, 4, 1, 7, 3, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-03-11-01', 1, 4, 1, 7, 3, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-03-12-01', 1, 4, 1, 7, 3, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-03-13-01', 1, 4, 1, 7, 3, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-03-14-01', 1, 4, 1, 7, 3, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-03-15-01', 1, 4, 1, 7, 3, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-03-16-01', 1, 4, 1, 7, 3, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-03-17-01', 1, 4, 1, 7, 3, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-03-18-01', 1, 4, 1, 7, 3, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-03-19-01', 1, 4, 1, 7, 3, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-03-20-01', 1, 4, 1, 7, 3, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-03-21-01', 1, 4, 1, 7, 3, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-03-22-01', 1, 4, 1, 7, 3, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-04-01-01', 1, 4, 1, 7, 4, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-04-02-01', 1, 4, 1, 7, 4, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-04-03-01', 1, 4, 1, 7, 4, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-04-04-01', 1, 4, 1, 7, 4, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-04-05-01', 1, 4, 1, 7, 4, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-04-06-01', 1, 4, 1, 7, 4, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-04-07-01', 1, 4, 1, 7, 4, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-04-08-01', 1, 4, 1, 7, 4, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-04-09-01', 1, 4, 1, 7, 4, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-04-10-01', 1, 4, 1, 7, 4, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-04-11-01', 1, 4, 1, 7, 4, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-04-12-01', 1, 4, 1, 7, 4, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-04-13-01', 1, 4, 1, 7, 4, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-04-14-01', 1, 4, 1, 7, 4, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-04-15-01', 1, 4, 1, 7, 4, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-04-16-01', 1, 4, 1, 7, 4, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-04-17-01', 1, 4, 1, 7, 4, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-04-18-01', 1, 4, 1, 7, 4, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-04-19-01', 1, 4, 1, 7, 4, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-04-20-01', 1, 4, 1, 7, 4, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-04-21-01', 1, 4, 1, 7, 4, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-04-22-01', 1, 4, 1, 7, 4, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-05-01-01', 1, 4, 1, 7, 5, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-05-02-01', 1, 4, 1, 7, 5, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-05-03-01', 1, 4, 1, 7, 5, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-05-04-01', 1, 4, 1, 7, 5, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-05-05-01', 1, 4, 1, 7, 5, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-05-06-01', 1, 4, 1, 7, 5, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-05-07-01', 1, 4, 1, 7, 5, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-05-08-01', 1, 4, 1, 7, 5, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-05-09-01', 1, 4, 1, 7, 5, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-05-10-01', 1, 4, 1, 7, 5, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-05-11-01', 1, 4, 1, 7, 5, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-05-12-01', 1, 4, 1, 7, 5, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-05-13-01', 1, 4, 1, 7, 5, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-05-14-01', 1, 4, 1, 7, 5, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-05-15-01', 1, 4, 1, 7, 5, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-05-16-01', 1, 4, 1, 7, 5, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-05-17-01', 1, 4, 1, 7, 5, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-05-18-01', 1, 4, 1, 7, 5, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-05-19-01', 1, 4, 1, 7, 5, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-05-20-01', 1, 4, 1, 7, 5, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-05-21-01', 1, 4, 1, 7, 5, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-05-22-01', 1, 4, 1, 7, 5, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-06-01-01', 1, 4, 1, 7, 6, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-06-02-01', 1, 4, 1, 7, 6, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-06-03-01', 1, 4, 1, 7, 6, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-06-04-01', 1, 4, 1, 7, 6, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-06-05-01', 1, 4, 1, 7, 6, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-06-06-01', 1, 4, 1, 7, 6, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-06-07-01', 1, 4, 1, 7, 6, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-06-08-01', 1, 4, 1, 7, 6, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-06-09-01', 1, 4, 1, 7, 6, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-06-10-01', 1, 4, 1, 7, 6, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-06-11-01', 1, 4, 1, 7, 6, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-06-12-01', 1, 4, 1, 7, 6, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-06-13-01', 1, 4, 1, 7, 6, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-06-14-01', 1, 4, 1, 7, 6, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-06-15-01', 1, 4, 1, 7, 6, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-06-16-01', 1, 4, 1, 7, 6, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-06-17-01', 1, 4, 1, 7, 6, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-06-18-01', 1, 4, 1, 7, 6, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-06-19-01', 1, 4, 1, 7, 6, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-06-20-01', 1, 4, 1, 7, 6, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-06-21-01', 1, 4, 1, 7, 6, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-06-22-01', 1, 4, 1, 7, 6, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-07-01-01', 1, 4, 1, 7, 7, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-07-02-01', 1, 4, 1, 7, 7, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-07-03-01', 1, 4, 1, 7, 7, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-07-04-01', 1, 4, 1, 7, 7, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-07-05-01', 1, 4, 1, 7, 7, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-07-06-01', 1, 4, 1, 7, 7, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-07-07-01', 1, 4, 1, 7, 7, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-07-08-01', 1, 4, 1, 7, 7, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-07-09-01', 1, 4, 1, 7, 7, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-07-10-01', 1, 4, 1, 7, 7, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-07-11-01', 1, 4, 1, 7, 7, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-07-12-01', 1, 4, 1, 7, 7, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-07-13-01', 1, 4, 1, 7, 7, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-07-14-01', 1, 4, 1, 7, 7, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-07-15-01', 1, 4, 1, 7, 7, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-07-16-01', 1, 4, 1, 7, 7, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-07-17-01', 1, 4, 1, 7, 7, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-07-18-01', 1, 4, 1, 7, 7, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-07-19-01', 1, 4, 1, 7, 7, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-07-20-01', 1, 4, 1, 7, 7, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-07-21-01', 1, 4, 1, 7, 7, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-07-22-01', 1, 4, 1, 7, 7, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-08-01-01', 1, 4, 1, 7, 8, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-08-02-01', 1, 4, 1, 7, 8, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-08-03-01', 1, 4, 1, 7, 8, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-08-04-01', 1, 4, 1, 7, 8, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-08-05-01', 1, 4, 1, 7, 8, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-08-06-01', 1, 4, 1, 7, 8, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-08-07-01', 1, 4, 1, 7, 8, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-08-08-01', 1, 4, 1, 7, 8, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-08-09-01', 1, 4, 1, 7, 8, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-08-10-01', 1, 4, 1, 7, 8, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-08-11-01', 1, 4, 1, 7, 8, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-08-12-01', 1, 4, 1, 7, 8, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-08-13-01', 1, 4, 1, 7, 8, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-08-14-01', 1, 4, 1, 7, 8, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-08-15-01', 1, 4, 1, 7, 8, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-08-16-01', 1, 4, 1, 7, 8, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-08-17-01', 1, 4, 1, 7, 8, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-08-18-01', 1, 4, 1, 7, 8, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-08-19-01', 1, 4, 1, 7, 8, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-08-20-01', 1, 4, 1, 7, 8, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-08-21-01', 1, 4, 1, 7, 8, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-08-22-01', 1, 4, 1, 7, 8, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-09-01-01', 1, 4, 1, 7, 9, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-09-02-01', 1, 4, 1, 7, 9, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-09-03-01', 1, 4, 1, 7, 9, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-09-04-01', 1, 4, 1, 7, 9, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-09-05-01', 1, 4, 1, 7, 9, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-09-06-01', 1, 4, 1, 7, 9, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-09-07-01', 1, 4, 1, 7, 9, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-09-08-01', 1, 4, 1, 7, 9, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-09-09-01', 1, 4, 1, 7, 9, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-09-10-01', 1, 4, 1, 7, 9, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-09-11-01', 1, 4, 1, 7, 9, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-09-12-01', 1, 4, 1, 7, 9, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-09-13-01', 1, 4, 1, 7, 9, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-09-14-01', 1, 4, 1, 7, 9, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-09-15-01', 1, 4, 1, 7, 9, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-09-16-01', 1, 4, 1, 7, 9, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-09-17-01', 1, 4, 1, 7, 9, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-09-18-01', 1, 4, 1, 7, 9, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-09-19-01', 1, 4, 1, 7, 9, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-09-20-01', 1, 4, 1, 7, 9, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-09-21-01', 1, 4, 1, 7, 9, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-09-22-01', 1, 4, 1, 7, 9, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-10-01-01', 1, 4, 1, 7, 10, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-10-02-01', 1, 4, 1, 7, 10, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-10-03-01', 1, 4, 1, 7, 10, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-10-04-01', 1, 4, 1, 7, 10, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-10-05-01', 1, 4, 1, 7, 10, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-10-06-01', 1, 4, 1, 7, 10, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-10-07-01', 1, 4, 1, 7, 10, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-10-08-01', 1, 4, 1, 7, 10, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-10-09-01', 1, 4, 1, 7, 10, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-10-10-01', 1, 4, 1, 7, 10, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-10-11-01', 1, 4, 1, 7, 10, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-10-12-01', 1, 4, 1, 7, 10, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-10-13-01', 1, 4, 1, 7, 10, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-10-14-01', 1, 4, 1, 7, 10, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-10-15-01', 1, 4, 1, 7, 10, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-10-16-01', 1, 4, 1, 7, 10, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-10-17-01', 1, 4, 1, 7, 10, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-10-18-01', 1, 4, 1, 7, 10, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-10-19-01', 1, 4, 1, 7, 10, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-10-20-01', 1, 4, 1, 7, 10, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-10-21-01', 1, 4, 1, 7, 10, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-10-22-01', 1, 4, 1, 7, 10, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-11-01-01', 1, 4, 1, 7, 11, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-11-02-01', 1, 4, 1, 7, 11, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-11-03-01', 1, 4, 1, 7, 11, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-11-04-01', 1, 4, 1, 7, 11, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-11-05-01', 1, 4, 1, 7, 11, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-11-06-01', 1, 4, 1, 7, 11, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-11-07-01', 1, 4, 1, 7, 11, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-11-08-01', 1, 4, 1, 7, 11, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-11-09-01', 1, 4, 1, 7, 11, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-11-10-01', 1, 4, 1, 7, 11, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-11-11-01', 1, 4, 1, 7, 11, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-11-12-01', 1, 4, 1, 7, 11, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-11-13-01', 1, 4, 1, 7, 11, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-11-14-01', 1, 4, 1, 7, 11, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-11-15-01', 1, 4, 1, 7, 11, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-11-16-01', 1, 4, 1, 7, 11, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-11-17-01', 1, 4, 1, 7, 11, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-11-18-01', 1, 4, 1, 7, 11, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-11-19-01', 1, 4, 1, 7, 11, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-11-20-01', 1, 4, 1, 7, 11, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-11-21-01', 1, 4, 1, 7, 11, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-11-22-01', 1, 4, 1, 7, 11, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-12-01-01', 1, 4, 1, 7, 12, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-12-02-01', 1, 4, 1, 7, 12, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-12-03-01', 1, 4, 1, 7, 12, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-12-04-01', 1, 4, 1, 7, 12, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-12-05-01', 1, 4, 1, 7, 12, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-12-06-01', 1, 4, 1, 7, 12, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-12-07-01', 1, 4, 1, 7, 12, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-12-08-01', 1, 4, 1, 7, 12, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-12-09-01', 1, 4, 1, 7, 12, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-12-10-01', 1, 4, 1, 7, 12, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-12-11-01', 1, 4, 1, 7, 12, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-12-12-01', 1, 4, 1, 7, 12, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-12-13-01', 1, 4, 1, 7, 12, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-12-14-01', 1, 4, 1, 7, 12, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-12-15-01', 1, 4, 1, 7, 12, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-12-16-01', 1, 4, 1, 7, 12, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-12-17-01', 1, 4, 1, 7, 12, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-12-18-01', 1, 4, 1, 7, 12, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-12-19-01', 1, 4, 1, 7, 12, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-12-20-01', 1, 4, 1, 7, 12, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-12-21-01', 1, 4, 1, 7, 12, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-12-22-01', 1, 4, 1, 7, 12, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-13-01-01', 1, 4, 1, 7, 13, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-13-02-01', 1, 4, 1, 7, 13, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-13-03-01', 1, 4, 1, 7, 13, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-13-04-01', 1, 4, 1, 7, 13, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-13-05-01', 1, 4, 1, 7, 13, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-13-06-01', 1, 4, 1, 7, 13, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-13-07-01', 1, 4, 1, 7, 13, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-13-08-01', 1, 4, 1, 7, 13, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-13-09-01', 1, 4, 1, 7, 13, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-13-10-01', 1, 4, 1, 7, 13, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-13-11-01', 1, 4, 1, 7, 13, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-13-12-01', 1, 4, 1, 7, 13, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-13-13-01', 1, 4, 1, 7, 13, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-13-14-01', 1, 4, 1, 7, 13, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-13-15-01', 1, 4, 1, 7, 13, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-13-16-01', 1, 4, 1, 7, 13, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-13-17-01', 1, 4, 1, 7, 13, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-13-18-01', 1, 4, 1, 7, 13, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-13-19-01', 1, 4, 1, 7, 13, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-13-20-01', 1, 4, 1, 7, 13, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-13-21-01', 1, 4, 1, 7, 13, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-13-22-01', 1, 4, 1, 7, 13, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-14-01-01', 1, 4, 1, 7, 14, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-14-02-01', 1, 4, 1, 7, 14, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-14-03-01', 1, 4, 1, 7, 14, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-14-04-01', 1, 4, 1, 7, 14, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-14-05-01', 1, 4, 1, 7, 14, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-14-06-01', 1, 4, 1, 7, 14, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-14-07-01', 1, 4, 1, 7, 14, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-14-08-01', 1, 4, 1, 7, 14, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-14-09-01', 1, 4, 1, 7, 14, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-14-10-01', 1, 4, 1, 7, 14, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-14-11-01', 1, 4, 1, 7, 14, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-14-12-01', 1, 4, 1, 7, 14, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-14-13-01', 1, 4, 1, 7, 14, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-14-14-01', 1, 4, 1, 7, 14, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-14-15-01', 1, 4, 1, 7, 14, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-14-16-01', 1, 4, 1, 7, 14, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-14-17-01', 1, 4, 1, 7, 14, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-14-18-01', 1, 4, 1, 7, 14, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-14-19-01', 1, 4, 1, 7, 14, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-14-20-01', 1, 4, 1, 7, 14, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-14-21-01', 1, 4, 1, 7, 14, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-14-22-01', 1, 4, 1, 7, 14, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-15-01-01', 1, 4, 1, 7, 15, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-15-02-01', 1, 4, 1, 7, 15, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-15-03-01', 1, 4, 1, 7, 15, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-15-04-01', 1, 4, 1, 7, 15, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-15-05-01', 1, 4, 1, 7, 15, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-15-06-01', 1, 4, 1, 7, 15, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-15-07-01', 1, 4, 1, 7, 15, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-15-08-01', 1, 4, 1, 7, 15, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-15-09-01', 1, 4, 1, 7, 15, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-15-10-01', 1, 4, 1, 7, 15, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-15-11-01', 1, 4, 1, 7, 15, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-15-12-01', 1, 4, 1, 7, 15, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-15-13-01', 1, 4, 1, 7, 15, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-15-14-01', 1, 4, 1, 7, 15, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-15-15-01', 1, 4, 1, 7, 15, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-15-16-01', 1, 4, 1, 7, 15, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-15-17-01', 1, 4, 1, 7, 15, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-15-18-01', 1, 4, 1, 7, 15, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-15-19-01', 1, 4, 1, 7, 15, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-15-20-01', 1, 4, 1, 7, 15, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-15-21-01', 1, 4, 1, 7, 15, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-15-22-01', 1, 4, 1, 7, 15, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-16-01-01', 1, 4, 1, 7, 16, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-16-02-01', 1, 4, 1, 7, 16, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-16-03-01', 1, 4, 1, 7, 16, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-16-04-01', 1, 4, 1, 7, 16, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-16-05-01', 1, 4, 1, 7, 16, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-16-06-01', 1, 4, 1, 7, 16, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-16-07-01', 1, 4, 1, 7, 16, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-16-08-01', 1, 4, 1, 7, 16, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-16-09-01', 1, 4, 1, 7, 16, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-16-10-01', 1, 4, 1, 7, 16, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-16-11-01', 1, 4, 1, 7, 16, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-16-12-01', 1, 4, 1, 7, 16, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-16-13-01', 1, 4, 1, 7, 16, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-16-14-01', 1, 4, 1, 7, 16, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-16-15-01', 1, 4, 1, 7, 16, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-16-16-01', 1, 4, 1, 7, 16, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-16-17-01', 1, 4, 1, 7, 16, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-16-18-01', 1, 4, 1, 7, 16, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-16-19-01', 1, 4, 1, 7, 16, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-16-20-01', 1, 4, 1, 7, 16, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-16-21-01', 1, 4, 1, 7, 16, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-16-22-01', 1, 4, 1, 7, 16, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-17-01-01', 1, 4, 1, 7, 17, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-17-02-01', 1, 4, 1, 7, 17, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-17-03-01', 1, 4, 1, 7, 17, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-17-04-01', 1, 4, 1, 7, 17, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-17-05-01', 1, 4, 1, 7, 17, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-17-06-01', 1, 4, 1, 7, 17, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-17-07-01', 1, 4, 1, 7, 17, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-17-08-01', 1, 4, 1, 7, 17, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-17-09-01', 1, 4, 1, 7, 17, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-17-10-01', 1, 4, 1, 7, 17, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-17-11-01', 1, 4, 1, 7, 17, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-17-12-01', 1, 4, 1, 7, 17, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-17-13-01', 1, 4, 1, 7, 17, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-17-14-01', 1, 4, 1, 7, 17, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-17-15-01', 1, 4, 1, 7, 17, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-17-16-01', 1, 4, 1, 7, 17, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-17-17-01', 1, 4, 1, 7, 17, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-17-18-01', 1, 4, 1, 7, 17, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-17-19-01', 1, 4, 1, 7, 17, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-17-20-01', 1, 4, 1, 7, 17, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-17-21-01', 1, 4, 1, 7, 17, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-17-22-01', 1, 4, 1, 7, 17, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-18-01-01', 1, 4, 1, 7, 18, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-18-02-01', 1, 4, 1, 7, 18, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-18-03-01', 1, 4, 1, 7, 18, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-18-04-01', 1, 4, 1, 7, 18, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-18-05-01', 1, 4, 1, 7, 18, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-18-06-01', 1, 4, 1, 7, 18, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-18-07-01', 1, 4, 1, 7, 18, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-18-08-01', 1, 4, 1, 7, 18, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-18-09-01', 1, 4, 1, 7, 18, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-18-10-01', 1, 4, 1, 7, 18, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-18-11-01', 1, 4, 1, 7, 18, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-18-12-01', 1, 4, 1, 7, 18, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-18-13-01', 1, 4, 1, 7, 18, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-18-14-01', 1, 4, 1, 7, 18, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-18-15-01', 1, 4, 1, 7, 18, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-18-16-01', 1, 4, 1, 7, 18, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-18-17-01', 1, 4, 1, 7, 18, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-18-18-01', 1, 4, 1, 7, 18, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-18-19-01', 1, 4, 1, 7, 18, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-18-20-01', 1, 4, 1, 7, 18, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-18-21-01', 1, 4, 1, 7, 18, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-18-22-01', 1, 4, 1, 7, 18, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-19-01-01', 1, 4, 1, 7, 19, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-19-02-01', 1, 4, 1, 7, 19, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-19-03-01', 1, 4, 1, 7, 19, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-19-04-01', 1, 4, 1, 7, 19, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-19-05-01', 1, 4, 1, 7, 19, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-19-06-01', 1, 4, 1, 7, 19, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-19-07-01', 1, 4, 1, 7, 19, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-19-08-01', 1, 4, 1, 7, 19, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-19-09-01', 1, 4, 1, 7, 19, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-19-10-01', 1, 4, 1, 7, 19, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-19-11-01', 1, 4, 1, 7, 19, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-19-12-01', 1, 4, 1, 7, 19, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-19-13-01', 1, 4, 1, 7, 19, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-19-14-01', 1, 4, 1, 7, 19, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-19-15-01', 1, 4, 1, 7, 19, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-19-16-01', 1, 4, 1, 7, 19, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-19-17-01', 1, 4, 1, 7, 19, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-19-18-01', 1, 4, 1, 7, 19, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-19-19-01', 1, 4, 1, 7, 19, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-19-20-01', 1, 4, 1, 7, 19, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-19-21-01', 1, 4, 1, 7, 19, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-19-22-01', 1, 4, 1, 7, 19, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-20-01-01', 1, 4, 1, 7, 20, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-20-02-01', 1, 4, 1, 7, 20, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-20-03-01', 1, 4, 1, 7, 20, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-20-04-01', 1, 4, 1, 7, 20, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-20-05-01', 1, 4, 1, 7, 20, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-20-06-01', 1, 4, 1, 7, 20, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-20-07-01', 1, 4, 1, 7, 20, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-20-08-01', 1, 4, 1, 7, 20, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-20-09-01', 1, 4, 1, 7, 20, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-20-10-01', 1, 4, 1, 7, 20, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-20-11-01', 1, 4, 1, 7, 20, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-20-12-01', 1, 4, 1, 7, 20, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-20-13-01', 1, 4, 1, 7, 20, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-20-14-01', 1, 4, 1, 7, 20, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-20-15-01', 1, 4, 1, 7, 20, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-20-16-01', 1, 4, 1, 7, 20, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-20-17-01', 1, 4, 1, 7, 20, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-20-18-01', 1, 4, 1, 7, 20, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-20-19-01', 1, 4, 1, 7, 20, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-20-20-01', 1, 4, 1, 7, 20, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-20-21-01', 1, 4, 1, 7, 20, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-20-22-01', 1, 4, 1, 7, 20, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-21-01-01', 1, 4, 1, 7, 21, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-21-02-01', 1, 4, 1, 7, 21, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-21-03-01', 1, 4, 1, 7, 21, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-21-04-01', 1, 4, 1, 7, 21, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-21-05-01', 1, 4, 1, 7, 21, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-21-06-01', 1, 4, 1, 7, 21, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-21-07-01', 1, 4, 1, 7, 21, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-21-08-01', 1, 4, 1, 7, 21, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-21-09-01', 1, 4, 1, 7, 21, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-21-10-01', 1, 4, 1, 7, 21, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-21-11-01', 1, 4, 1, 7, 21, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-21-12-01', 1, 4, 1, 7, 21, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-21-13-01', 1, 4, 1, 7, 21, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-21-14-01', 1, 4, 1, 7, 21, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-21-15-01', 1, 4, 1, 7, 21, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-21-16-01', 1, 4, 1, 7, 21, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-21-17-01', 1, 4, 1, 7, 21, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-21-18-01', 1, 4, 1, 7, 21, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-21-19-01', 1, 4, 1, 7, 21, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-21-20-01', 1, 4, 1, 7, 21, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-21-21-01', 1, 4, 1, 7, 21, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-21-22-01', 1, 4, 1, 7, 21, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-22-01-01', 1, 4, 1, 7, 22, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-22-02-01', 1, 4, 1, 7, 22, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-22-03-01', 1, 4, 1, 7, 22, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-22-04-01', 1, 4, 1, 7, 22, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-22-05-01', 1, 4, 1, 7, 22, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-22-06-01', 1, 4, 1, 7, 22, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-22-07-01', 1, 4, 1, 7, 22, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-22-08-01', 1, 4, 1, 7, 22, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-22-09-01', 1, 4, 1, 7, 22, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-22-10-01', 1, 4, 1, 7, 22, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-22-11-01', 1, 4, 1, 7, 22, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-22-12-01', 1, 4, 1, 7, 22, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-22-13-01', 1, 4, 1, 7, 22, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-22-14-01', 1, 4, 1, 7, 22, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-22-15-01', 1, 4, 1, 7, 22, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-22-16-01', 1, 4, 1, 7, 22, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-22-17-01', 1, 4, 1, 7, 22, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-22-18-01', 1, 4, 1, 7, 22, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-22-19-01', 1, 4, 1, 7, 22, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-22-20-01', 1, 4, 1, 7, 22, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-22-21-01', 1, 4, 1, 7, 22, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-22-22-01', 1, 4, 1, 7, 22, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-23-01-01', 1, 4, 1, 7, 23, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-23-02-01', 1, 4, 1, 7, 23, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-23-03-01', 1, 4, 1, 7, 23, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-23-04-01', 1, 4, 1, 7, 23, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-23-05-01', 1, 4, 1, 7, 23, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-23-06-01', 1, 4, 1, 7, 23, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-23-07-01', 1, 4, 1, 7, 23, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-23-08-01', 1, 4, 1, 7, 23, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-23-09-01', 1, 4, 1, 7, 23, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-23-10-01', 1, 4, 1, 7, 23, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-23-11-01', 1, 4, 1, 7, 23, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-23-12-01', 1, 4, 1, 7, 23, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-23-13-01', 1, 4, 1, 7, 23, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-23-14-01', 1, 4, 1, 7, 23, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-23-15-01', 1, 4, 1, 7, 23, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-23-16-01', 1, 4, 1, 7, 23, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-23-17-01', 1, 4, 1, 7, 23, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-23-18-01', 1, 4, 1, 7, 23, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-23-19-01', 1, 4, 1, 7, 23, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-23-20-01', 1, 4, 1, 7, 23, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-23-21-01', 1, 4, 1, 7, 23, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-23-22-01', 1, 4, 1, 7, 23, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-24-01-01', 1, 4, 1, 7, 24, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-24-02-01', 1, 4, 1, 7, 24, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-24-03-01', 1, 4, 1, 7, 24, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-24-04-01', 1, 4, 1, 7, 24, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-24-05-01', 1, 4, 1, 7, 24, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-24-06-01', 1, 4, 1, 7, 24, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-24-07-01', 1, 4, 1, 7, 24, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-24-08-01', 1, 4, 1, 7, 24, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-24-09-01', 1, 4, 1, 7, 24, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-24-10-01', 1, 4, 1, 7, 24, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-24-11-01', 1, 4, 1, 7, 24, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-24-12-01', 1, 4, 1, 7, 24, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-24-13-01', 1, 4, 1, 7, 24, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-24-14-01', 1, 4, 1, 7, 24, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-24-15-01', 1, 4, 1, 7, 24, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-24-16-01', 1, 4, 1, 7, 24, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-24-17-01', 1, 4, 1, 7, 24, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-24-18-01', 1, 4, 1, 7, 24, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-24-19-01', 1, 4, 1, 7, 24, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-24-20-01', 1, 4, 1, 7, 24, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-24-21-01', 1, 4, 1, 7, 24, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-24-22-01', 1, 4, 1, 7, 24, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-25-01-01', 1, 4, 1, 7, 25, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-25-02-01', 1, 4, 1, 7, 25, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-25-03-01', 1, 4, 1, 7, 25, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-25-04-01', 1, 4, 1, 7, 25, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-25-05-01', 1, 4, 1, 7, 25, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-25-06-01', 1, 4, 1, 7, 25, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-25-07-01', 1, 4, 1, 7, 25, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-25-08-01', 1, 4, 1, 7, 25, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-25-09-01', 1, 4, 1, 7, 25, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-25-10-01', 1, 4, 1, 7, 25, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-25-11-01', 1, 4, 1, 7, 25, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-25-12-01', 1, 4, 1, 7, 25, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-25-13-01', 1, 4, 1, 7, 25, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-25-14-01', 1, 4, 1, 7, 25, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-25-15-01', 1, 4, 1, 7, 25, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-25-16-01', 1, 4, 1, 7, 25, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-25-17-01', 1, 4, 1, 7, 25, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-25-18-01', 1, 4, 1, 7, 25, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-25-19-01', 1, 4, 1, 7, 25, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-25-20-01', 1, 4, 1, 7, 25, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-25-21-01', 1, 4, 1, 7, 25, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-25-22-01', 1, 4, 1, 7, 25, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-26-01-01', 1, 4, 1, 7, 26, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-26-02-01', 1, 4, 1, 7, 26, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-26-03-01', 1, 4, 1, 7, 26, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-26-04-01', 1, 4, 1, 7, 26, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-26-05-01', 1, 4, 1, 7, 26, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-26-06-01', 1, 4, 1, 7, 26, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-26-07-01', 1, 4, 1, 7, 26, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-26-08-01', 1, 4, 1, 7, 26, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-26-09-01', 1, 4, 1, 7, 26, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-26-10-01', 1, 4, 1, 7, 26, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-26-11-01', 1, 4, 1, 7, 26, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-26-12-01', 1, 4, 1, 7, 26, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-26-13-01', 1, 4, 1, 7, 26, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-26-14-01', 1, 4, 1, 7, 26, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-26-15-01', 1, 4, 1, 7, 26, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-26-16-01', 1, 4, 1, 7, 26, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-26-17-01', 1, 4, 1, 7, 26, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-26-18-01', 1, 4, 1, 7, 26, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-26-19-01', 1, 4, 1, 7, 26, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-26-20-01', 1, 4, 1, 7, 26, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-26-21-01', 1, 4, 1, 7, 26, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-26-22-01', 1, 4, 1, 7, 26, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-27-01-01', 1, 4, 1, 7, 27, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-27-02-01', 1, 4, 1, 7, 27, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-27-03-01', 1, 4, 1, 7, 27, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-27-04-01', 1, 4, 1, 7, 27, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-27-05-01', 1, 4, 1, 7, 27, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-27-06-01', 1, 4, 1, 7, 27, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-27-07-01', 1, 4, 1, 7, 27, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-27-08-01', 1, 4, 1, 7, 27, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-27-09-01', 1, 4, 1, 7, 27, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-27-10-01', 1, 4, 1, 7, 27, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-27-11-01', 1, 4, 1, 7, 27, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-27-12-01', 1, 4, 1, 7, 27, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-27-13-01', 1, 4, 1, 7, 27, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-27-14-01', 1, 4, 1, 7, 27, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-27-15-01', 1, 4, 1, 7, 27, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-27-16-01', 1, 4, 1, 7, 27, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-27-17-01', 1, 4, 1, 7, 27, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-27-18-01', 1, 4, 1, 7, 27, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-27-19-01', 1, 4, 1, 7, 27, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-27-20-01', 1, 4, 1, 7, 27, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-27-21-01', 1, 4, 1, 7, 27, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-27-22-01', 1, 4, 1, 7, 27, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-28-01-01', 1, 4, 1, 7, 28, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-28-02-01', 1, 4, 1, 7, 28, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-28-03-01', 1, 4, 1, 7, 28, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-28-04-01', 1, 4, 1, 7, 28, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-28-05-01', 1, 4, 1, 7, 28, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-28-06-01', 1, 4, 1, 7, 28, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-28-07-01', 1, 4, 1, 7, 28, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-28-08-01', 1, 4, 1, 7, 28, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-28-09-01', 1, 4, 1, 7, 28, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-28-10-01', 1, 4, 1, 7, 28, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-28-11-01', 1, 4, 1, 7, 28, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-28-12-01', 1, 4, 1, 7, 28, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-28-13-01', 1, 4, 1, 7, 28, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-28-14-01', 1, 4, 1, 7, 28, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-28-15-01', 1, 4, 1, 7, 28, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-28-16-01', 1, 4, 1, 7, 28, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-28-17-01', 1, 4, 1, 7, 28, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-28-18-01', 1, 4, 1, 7, 28, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-28-19-01', 1, 4, 1, 7, 28, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-28-20-01', 1, 4, 1, 7, 28, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-28-21-01', 1, 4, 1, 7, 28, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-28-22-01', 1, 4, 1, 7, 28, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-29-01-01', 1, 4, 1, 7, 29, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-29-02-01', 1, 4, 1, 7, 29, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-29-03-01', 1, 4, 1, 7, 29, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-29-04-01', 1, 4, 1, 7, 29, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-29-05-01', 1, 4, 1, 7, 29, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-29-06-01', 1, 4, 1, 7, 29, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-29-07-01', 1, 4, 1, 7, 29, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-29-08-01', 1, 4, 1, 7, 29, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-29-09-01', 1, 4, 1, 7, 29, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-29-10-01', 1, 4, 1, 7, 29, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-29-11-01', 1, 4, 1, 7, 29, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-29-12-01', 1, 4, 1, 7, 29, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-29-13-01', 1, 4, 1, 7, 29, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-29-14-01', 1, 4, 1, 7, 29, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-29-15-01', 1, 4, 1, 7, 29, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-29-16-01', 1, 4, 1, 7, 29, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-29-17-01', 1, 4, 1, 7, 29, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-29-18-01', 1, 4, 1, 7, 29, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-29-19-01', 1, 4, 1, 7, 29, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-29-20-01', 1, 4, 1, 7, 29, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-29-21-01', 1, 4, 1, 7, 29, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-29-22-01', 1, 4, 1, 7, 29, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-30-01-01', 1, 4, 1, 7, 30, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-30-02-01', 1, 4, 1, 7, 30, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-30-03-01', 1, 4, 1, 7, 30, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-30-04-01', 1, 4, 1, 7, 30, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-30-05-01', 1, 4, 1, 7, 30, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-30-06-01', 1, 4, 1, 7, 30, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-30-07-01', 1, 4, 1, 7, 30, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-30-08-01', 1, 4, 1, 7, 30, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-30-09-01', 1, 4, 1, 7, 30, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-30-10-01', 1, 4, 1, 7, 30, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-30-11-01', 1, 4, 1, 7, 30, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-30-12-01', 1, 4, 1, 7, 30, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-30-13-01', 1, 4, 1, 7, 30, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-30-14-01', 1, 4, 1, 7, 30, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-30-15-01', 1, 4, 1, 7, 30, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-30-16-01', 1, 4, 1, 7, 30, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-30-17-01', 1, 4, 1, 7, 30, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-30-18-01', 1, 4, 1, 7, 30, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-30-19-01', 1, 4, 1, 7, 30, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-30-20-01', 1, 4, 1, 7, 30, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-30-21-01', 1, 4, 1, 7, 30, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-30-22-01', 1, 4, 1, 7, 30, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-31-01-01', 1, 4, 1, 7, 31, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-31-02-01', 1, 4, 1, 7, 31, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-31-03-01', 1, 4, 1, 7, 31, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-31-04-01', 1, 4, 1, 7, 31, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-31-05-01', 1, 4, 1, 7, 31, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-31-06-01', 1, 4, 1, 7, 31, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-31-07-01', 1, 4, 1, 7, 31, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-31-08-01', 1, 4, 1, 7, 31, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-31-09-01', 1, 4, 1, 7, 31, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-31-10-01', 1, 4, 1, 7, 31, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-31-11-01', 1, 4, 1, 7, 31, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-31-12-01', 1, 4, 1, 7, 31, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-31-13-01', 1, 4, 1, 7, 31, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-31-14-01', 1, 4, 1, 7, 31, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-31-15-01', 1, 4, 1, 7, 31, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-31-16-01', 1, 4, 1, 7, 31, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-31-17-01', 1, 4, 1, 7, 31, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-31-18-01', 1, 4, 1, 7, 31, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-31-19-01', 1, 4, 1, 7, 31, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-31-20-01', 1, 4, 1, 7, 31, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-31-21-01', 1, 4, 1, 7, 31, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-31-22-01', 1, 4, 1, 7, 31, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-32-01-01', 1, 4, 1, 7, 32, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-32-02-01', 1, 4, 1, 7, 32, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-32-03-01', 1, 4, 1, 7, 32, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-32-04-01', 1, 4, 1, 7, 32, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-32-05-01', 1, 4, 1, 7, 32, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-32-06-01', 1, 4, 1, 7, 32, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-32-07-01', 1, 4, 1, 7, 32, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-32-08-01', 1, 4, 1, 7, 32, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-32-09-01', 1, 4, 1, 7, 32, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-32-10-01', 1, 4, 1, 7, 32, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-32-11-01', 1, 4, 1, 7, 32, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-32-12-01', 1, 4, 1, 7, 32, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-32-13-01', 1, 4, 1, 7, 32, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-32-14-01', 1, 4, 1, 7, 32, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-32-15-01', 1, 4, 1, 7, 32, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-32-16-01', 1, 4, 1, 7, 32, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-32-17-01', 1, 4, 1, 7, 32, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-32-18-01', 1, 4, 1, 7, 32, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-32-19-01', 1, 4, 1, 7, 32, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-32-20-01', 1, 4, 1, 7, 32, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-32-21-01', 1, 4, 1, 7, 32, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-32-22-01', 1, 4, 1, 7, 32, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-33-01-01', 1, 4, 1, 7, 33, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-33-02-01', 1, 4, 1, 7, 33, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-33-03-01', 1, 4, 1, 7, 33, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-33-04-01', 1, 4, 1, 7, 33, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-33-05-01', 1, 4, 1, 7, 33, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-33-06-01', 1, 4, 1, 7, 33, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-33-07-01', 1, 4, 1, 7, 33, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-33-08-01', 1, 4, 1, 7, 33, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-33-09-01', 1, 4, 1, 7, 33, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-33-10-01', 1, 4, 1, 7, 33, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-33-11-01', 1, 4, 1, 7, 33, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-33-12-01', 1, 4, 1, 7, 33, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-33-13-01', 1, 4, 1, 7, 33, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-33-14-01', 1, 4, 1, 7, 33, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-33-15-01', 1, 4, 1, 7, 33, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-33-16-01', 1, 4, 1, 7, 33, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-33-17-01', 1, 4, 1, 7, 33, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-33-18-01', 1, 4, 1, 7, 33, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-33-19-01', 1, 4, 1, 7, 33, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-33-20-01', 1, 4, 1, 7, 33, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-33-21-01', 1, 4, 1, 7, 33, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-33-22-01', 1, 4, 1, 7, 33, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-34-01-01', 1, 4, 1, 7, 34, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-34-02-01', 1, 4, 1, 7, 34, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-34-03-01', 1, 4, 1, 7, 34, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-34-04-01', 1, 4, 1, 7, 34, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-34-05-01', 1, 4, 1, 7, 34, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-34-06-01', 1, 4, 1, 7, 34, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-34-07-01', 1, 4, 1, 7, 34, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-34-08-01', 1, 4, 1, 7, 34, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-34-09-01', 1, 4, 1, 7, 34, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-34-10-01', 1, 4, 1, 7, 34, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-34-11-01', 1, 4, 1, 7, 34, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-34-12-01', 1, 4, 1, 7, 34, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-34-13-01', 1, 4, 1, 7, 34, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-34-14-01', 1, 4, 1, 7, 34, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-34-15-01', 1, 4, 1, 7, 34, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-34-16-01', 1, 4, 1, 7, 34, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-34-17-01', 1, 4, 1, 7, 34, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-34-18-01', 1, 4, 1, 7, 34, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-34-19-01', 1, 4, 1, 7, 34, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-34-20-01', 1, 4, 1, 7, 34, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-34-21-01', 1, 4, 1, 7, 34, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-34-22-01', 1, 4, 1, 7, 34, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-35-01-01', 1, 4, 1, 7, 35, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-35-02-01', 1, 4, 1, 7, 35, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-35-03-01', 1, 4, 1, 7, 35, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-35-04-01', 1, 4, 1, 7, 35, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-35-05-01', 1, 4, 1, 7, 35, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-35-06-01', 1, 4, 1, 7, 35, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-35-07-01', 1, 4, 1, 7, 35, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-35-08-01', 1, 4, 1, 7, 35, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-35-09-01', 1, 4, 1, 7, 35, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-35-10-01', 1, 4, 1, 7, 35, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-35-11-01', 1, 4, 1, 7, 35, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-35-12-01', 1, 4, 1, 7, 35, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-35-13-01', 1, 4, 1, 7, 35, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-35-14-01', 1, 4, 1, 7, 35, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-35-15-01', 1, 4, 1, 7, 35, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-35-16-01', 1, 4, 1, 7, 35, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-35-17-01', 1, 4, 1, 7, 35, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-35-18-01', 1, 4, 1, 7, 35, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-35-19-01', 1, 4, 1, 7, 35, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-35-20-01', 1, 4, 1, 7, 35, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-35-21-01', 1, 4, 1, 7, 35, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-35-22-01', 1, 4, 1, 7, 35, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-36-01-01', 1, 4, 1, 7, 36, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-36-02-01', 1, 4, 1, 7, 36, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-36-03-01', 1, 4, 1, 7, 36, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-36-04-01', 1, 4, 1, 7, 36, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-36-05-01', 1, 4, 1, 7, 36, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-36-06-01', 1, 4, 1, 7, 36, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-36-07-01', 1, 4, 1, 7, 36, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-36-08-01', 1, 4, 1, 7, 36, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-36-09-01', 1, 4, 1, 7, 36, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-36-10-01', 1, 4, 1, 7, 36, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-36-11-01', 1, 4, 1, 7, 36, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-36-12-01', 1, 4, 1, 7, 36, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-36-13-01', 1, 4, 1, 7, 36, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-36-14-01', 1, 4, 1, 7, 36, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-36-15-01', 1, 4, 1, 7, 36, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-36-16-01', 1, 4, 1, 7, 36, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-36-17-01', 1, 4, 1, 7, 36, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-36-18-01', 1, 4, 1, 7, 36, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-36-19-01', 1, 4, 1, 7, 36, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-36-20-01', 1, 4, 1, 7, 36, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-36-21-01', 1, 4, 1, 7, 36, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-36-22-01', 1, 4, 1, 7, 36, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-37-01-01', 1, 4, 1, 7, 37, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-37-02-01', 1, 4, 1, 7, 37, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-37-03-01', 1, 4, 1, 7, 37, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-37-04-01', 1, 4, 1, 7, 37, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-37-05-01', 1, 4, 1, 7, 37, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-37-06-01', 1, 4, 1, 7, 37, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-37-07-01', 1, 4, 1, 7, 37, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-37-08-01', 1, 4, 1, 7, 37, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-37-09-01', 1, 4, 1, 7, 37, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-37-10-01', 1, 4, 1, 7, 37, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-37-11-01', 1, 4, 1, 7, 37, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-37-12-01', 1, 4, 1, 7, 37, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-37-13-01', 1, 4, 1, 7, 37, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-37-14-01', 1, 4, 1, 7, 37, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-37-15-01', 1, 4, 1, 7, 37, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-37-16-01', 1, 4, 1, 7, 37, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-37-17-01', 1, 4, 1, 7, 37, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-37-18-01', 1, 4, 1, 7, 37, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-37-19-01', 1, 4, 1, 7, 37, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-37-20-01', 1, 4, 1, 7, 37, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-37-21-01', 1, 4, 1, 7, 37, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-37-22-01', 1, 4, 1, 7, 37, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-38-01-01', 1, 4, 1, 7, 38, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-38-02-01', 1, 4, 1, 7, 38, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-38-03-01', 1, 4, 1, 7, 38, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-38-04-01', 1, 4, 1, 7, 38, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-38-05-01', 1, 4, 1, 7, 38, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-38-06-01', 1, 4, 1, 7, 38, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-38-07-01', 1, 4, 1, 7, 38, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-38-08-01', 1, 4, 1, 7, 38, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-38-09-01', 1, 4, 1, 7, 38, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-38-10-01', 1, 4, 1, 7, 38, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-38-11-01', 1, 4, 1, 7, 38, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-38-12-01', 1, 4, 1, 7, 38, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-38-13-01', 1, 4, 1, 7, 38, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-38-14-01', 1, 4, 1, 7, 38, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-38-15-01', 1, 4, 1, 7, 38, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-38-16-01', 1, 4, 1, 7, 38, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-38-17-01', 1, 4, 1, 7, 38, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-38-18-01', 1, 4, 1, 7, 38, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-38-19-01', 1, 4, 1, 7, 38, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-38-20-01', 1, 4, 1, 7, 38, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-38-21-01', 1, 4, 1, 7, 38, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-38-22-01', 1, 4, 1, 7, 38, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-39-01-01', 1, 4, 1, 7, 39, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-39-02-01', 1, 4, 1, 7, 39, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-39-03-01', 1, 4, 1, 7, 39, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-39-04-01', 1, 4, 1, 7, 39, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-39-05-01', 1, 4, 1, 7, 39, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-39-06-01', 1, 4, 1, 7, 39, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-39-07-01', 1, 4, 1, 7, 39, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-39-08-01', 1, 4, 1, 7, 39, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-39-09-01', 1, 4, 1, 7, 39, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-39-10-01', 1, 4, 1, 7, 39, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-39-11-01', 1, 4, 1, 7, 39, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-39-12-01', 1, 4, 1, 7, 39, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-39-13-01', 1, 4, 1, 7, 39, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-39-14-01', 1, 4, 1, 7, 39, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-39-15-01', 1, 4, 1, 7, 39, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-39-16-01', 1, 4, 1, 7, 39, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-39-17-01', 1, 4, 1, 7, 39, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-39-18-01', 1, 4, 1, 7, 39, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-39-19-01', 1, 4, 1, 7, 39, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-39-20-01', 1, 4, 1, 7, 39, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-39-21-01', 1, 4, 1, 7, 39, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-39-22-01', 1, 4, 1, 7, 39, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-40-01-01', 1, 4, 1, 7, 40, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-40-02-01', 1, 4, 1, 7, 40, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-40-03-01', 1, 4, 1, 7, 40, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-40-04-01', 1, 4, 1, 7, 40, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-40-05-01', 1, 4, 1, 7, 40, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-40-06-01', 1, 4, 1, 7, 40, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-40-07-01', 1, 4, 1, 7, 40, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-40-08-01', 1, 4, 1, 7, 40, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-40-09-01', 1, 4, 1, 7, 40, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-40-10-01', 1, 4, 1, 7, 40, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-40-11-01', 1, 4, 1, 7, 40, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-40-12-01', 1, 4, 1, 7, 40, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-40-13-01', 1, 4, 1, 7, 40, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-40-14-01', 1, 4, 1, 7, 40, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-40-15-01', 1, 4, 1, 7, 40, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-40-16-01', 1, 4, 1, 7, 40, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-40-17-01', 1, 4, 1, 7, 40, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-40-18-01', 1, 4, 1, 7, 40, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-40-19-01', 1, 4, 1, 7, 40, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-40-20-01', 1, 4, 1, 7, 40, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-40-21-01', 1, 4, 1, 7, 40, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-40-22-01', 1, 4, 1, 7, 40, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-41-01-01', 1, 4, 1, 7, 41, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-41-02-01', 1, 4, 1, 7, 41, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-41-03-01', 1, 4, 1, 7, 41, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-41-04-01', 1, 4, 1, 7, 41, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-41-05-01', 1, 4, 1, 7, 41, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-41-06-01', 1, 4, 1, 7, 41, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-41-07-01', 1, 4, 1, 7, 41, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-41-08-01', 1, 4, 1, 7, 41, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-41-09-01', 1, 4, 1, 7, 41, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-41-10-01', 1, 4, 1, 7, 41, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-41-11-01', 1, 4, 1, 7, 41, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-41-12-01', 1, 4, 1, 7, 41, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-41-13-01', 1, 4, 1, 7, 41, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-41-14-01', 1, 4, 1, 7, 41, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-41-15-01', 1, 4, 1, 7, 41, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-41-16-01', 1, 4, 1, 7, 41, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-41-17-01', 1, 4, 1, 7, 41, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-41-18-01', 1, 4, 1, 7, 41, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-41-19-01', 1, 4, 1, 7, 41, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-41-20-01', 1, 4, 1, 7, 41, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-41-21-01', 1, 4, 1, 7, 41, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-41-22-01', 1, 4, 1, 7, 41, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-42-01-01', 1, 4, 1, 7, 42, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-42-02-01', 1, 4, 1, 7, 42, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-42-03-01', 1, 4, 1, 7, 42, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-42-04-01', 1, 4, 1, 7, 42, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-42-05-01', 1, 4, 1, 7, 42, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-42-06-01', 1, 4, 1, 7, 42, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-42-07-01', 1, 4, 1, 7, 42, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-42-08-01', 1, 4, 1, 7, 42, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-42-09-01', 1, 4, 1, 7, 42, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-42-10-01', 1, 4, 1, 7, 42, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-42-11-01', 1, 4, 1, 7, 42, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-42-12-01', 1, 4, 1, 7, 42, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-42-13-01', 1, 4, 1, 7, 42, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-42-14-01', 1, 4, 1, 7, 42, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-42-15-01', 1, 4, 1, 7, 42, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-42-16-01', 1, 4, 1, 7, 42, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-42-17-01', 1, 4, 1, 7, 42, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-42-18-01', 1, 4, 1, 7, 42, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-42-19-01', 1, 4, 1, 7, 42, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-42-20-01', 1, 4, 1, 7, 42, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-42-21-01', 1, 4, 1, 7, 42, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-42-22-01', 1, 4, 1, 7, 42, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-43-01-01', 1, 4, 1, 7, 43, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-43-02-01', 1, 4, 1, 7, 43, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-43-03-01', 1, 4, 1, 7, 43, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-43-04-01', 1, 4, 1, 7, 43, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-43-05-01', 1, 4, 1, 7, 43, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-43-06-01', 1, 4, 1, 7, 43, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-43-07-01', 1, 4, 1, 7, 43, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-43-08-01', 1, 4, 1, 7, 43, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-43-09-01', 1, 4, 1, 7, 43, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-43-10-01', 1, 4, 1, 7, 43, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-43-11-01', 1, 4, 1, 7, 43, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-43-12-01', 1, 4, 1, 7, 43, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-43-13-01', 1, 4, 1, 7, 43, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-43-14-01', 1, 4, 1, 7, 43, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-43-15-01', 1, 4, 1, 7, 43, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-43-16-01', 1, 4, 1, 7, 43, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-43-17-01', 1, 4, 1, 7, 43, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-43-18-01', 1, 4, 1, 7, 43, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-43-19-01', 1, 4, 1, 7, 43, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-43-20-01', 1, 4, 1, 7, 43, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-43-21-01', 1, 4, 1, 7, 43, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-43-22-01', 1, 4, 1, 7, 43, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-44-01-01', 1, 4, 1, 7, 44, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-44-02-01', 1, 4, 1, 7, 44, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-44-03-01', 1, 4, 1, 7, 44, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-44-04-01', 1, 4, 1, 7, 44, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-44-05-01', 1, 4, 1, 7, 44, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-44-06-01', 1, 4, 1, 7, 44, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-44-07-01', 1, 4, 1, 7, 44, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-44-08-01', 1, 4, 1, 7, 44, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-44-09-01', 1, 4, 1, 7, 44, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-44-10-01', 1, 4, 1, 7, 44, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-44-11-01', 1, 4, 1, 7, 44, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-44-12-01', 1, 4, 1, 7, 44, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-44-13-01', 1, 4, 1, 7, 44, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-44-14-01', 1, 4, 1, 7, 44, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-44-15-01', 1, 4, 1, 7, 44, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-44-16-01', 1, 4, 1, 7, 44, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-44-17-01', 1, 4, 1, 7, 44, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-44-18-01', 1, 4, 1, 7, 44, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-44-19-01', 1, 4, 1, 7, 44, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-44-20-01', 1, 4, 1, 7, 44, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-44-21-01', 1, 4, 1, 7, 44, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-44-22-01', 1, 4, 1, 7, 44, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-45-01-01', 1, 4, 1, 7, 45, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-45-02-01', 1, 4, 1, 7, 45, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-45-03-01', 1, 4, 1, 7, 45, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-45-04-01', 1, 4, 1, 7, 45, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-45-05-01', 1, 4, 1, 7, 45, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-45-06-01', 1, 4, 1, 7, 45, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-45-07-01', 1, 4, 1, 7, 45, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-45-08-01', 1, 4, 1, 7, 45, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-45-09-01', 1, 4, 1, 7, 45, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-45-10-01', 1, 4, 1, 7, 45, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-45-11-01', 1, 4, 1, 7, 45, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-45-12-01', 1, 4, 1, 7, 45, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-45-13-01', 1, 4, 1, 7, 45, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-45-14-01', 1, 4, 1, 7, 45, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-45-15-01', 1, 4, 1, 7, 45, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-45-16-01', 1, 4, 1, 7, 45, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-45-17-01', 1, 4, 1, 7, 45, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-45-18-01', 1, 4, 1, 7, 45, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-45-19-01', 1, 4, 1, 7, 45, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-45-20-01', 1, 4, 1, 7, 45, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-45-21-01', 1, 4, 1, 7, 45, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-45-22-01', 1, 4, 1, 7, 45, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-46-01-01', 1, 4, 1, 7, 46, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-46-02-01', 1, 4, 1, 7, 46, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-46-03-01', 1, 4, 1, 7, 46, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-46-04-01', 1, 4, 1, 7, 46, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-46-05-01', 1, 4, 1, 7, 46, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-46-06-01', 1, 4, 1, 7, 46, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-46-07-01', 1, 4, 1, 7, 46, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-46-08-01', 1, 4, 1, 7, 46, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-46-09-01', 1, 4, 1, 7, 46, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-46-10-01', 1, 4, 1, 7, 46, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-46-11-01', 1, 4, 1, 7, 46, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-46-12-01', 1, 4, 1, 7, 46, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-46-13-01', 1, 4, 1, 7, 46, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-46-14-01', 1, 4, 1, 7, 46, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-46-15-01', 1, 4, 1, 7, 46, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-46-16-01', 1, 4, 1, 7, 46, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-46-17-01', 1, 4, 1, 7, 46, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-46-18-01', 1, 4, 1, 7, 46, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-46-19-01', 1, 4, 1, 7, 46, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-46-20-01', 1, 4, 1, 7, 46, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-46-21-01', 1, 4, 1, 7, 46, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-46-22-01', 1, 4, 1, 7, 46, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-47-01-01', 1, 4, 1, 7, 47, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-47-02-01', 1, 4, 1, 7, 47, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-47-03-01', 1, 4, 1, 7, 47, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-47-04-01', 1, 4, 1, 7, 47, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-47-05-01', 1, 4, 1, 7, 47, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-47-06-01', 1, 4, 1, 7, 47, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-47-07-01', 1, 4, 1, 7, 47, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-47-08-01', 1, 4, 1, 7, 47, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-47-09-01', 1, 4, 1, 7, 47, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-47-10-01', 1, 4, 1, 7, 47, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-47-11-01', 1, 4, 1, 7, 47, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-47-12-01', 1, 4, 1, 7, 47, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-47-13-01', 1, 4, 1, 7, 47, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-47-14-01', 1, 4, 1, 7, 47, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-47-15-01', 1, 4, 1, 7, 47, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-47-16-01', 1, 4, 1, 7, 47, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-47-17-01', 1, 4, 1, 7, 47, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-47-18-01', 1, 4, 1, 7, 47, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-47-19-01', 1, 4, 1, 7, 47, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-47-20-01', 1, 4, 1, 7, 47, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-47-21-01', 1, 4, 1, 7, 47, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-47-22-01', 1, 4, 1, 7, 47, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-48-01-01', 1, 4, 1, 7, 48, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-48-02-01', 1, 4, 1, 7, 48, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-48-03-01', 1, 4, 1, 7, 48, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-48-04-01', 1, 4, 1, 7, 48, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-48-05-01', 1, 4, 1, 7, 48, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-48-06-01', 1, 4, 1, 7, 48, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-48-07-01', 1, 4, 1, 7, 48, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-48-08-01', 1, 4, 1, 7, 48, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-48-09-01', 1, 4, 1, 7, 48, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-48-10-01', 1, 4, 1, 7, 48, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-48-11-01', 1, 4, 1, 7, 48, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-48-12-01', 1, 4, 1, 7, 48, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-48-13-01', 1, 4, 1, 7, 48, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-48-14-01', 1, 4, 1, 7, 48, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-48-15-01', 1, 4, 1, 7, 48, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-48-16-01', 1, 4, 1, 7, 48, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-48-17-01', 1, 4, 1, 7, 48, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-48-18-01', 1, 4, 1, 7, 48, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-48-19-01', 1, 4, 1, 7, 48, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-48-20-01', 1, 4, 1, 7, 48, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-48-21-01', 1, 4, 1, 7, 48, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-48-22-01', 1, 4, 1, 7, 48, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-49-01-01', 1, 4, 1, 7, 49, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-49-02-01', 1, 4, 1, 7, 49, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-49-03-01', 1, 4, 1, 7, 49, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-49-04-01', 1, 4, 1, 7, 49, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-49-05-01', 1, 4, 1, 7, 49, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-49-06-01', 1, 4, 1, 7, 49, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-49-07-01', 1, 4, 1, 7, 49, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-49-08-01', 1, 4, 1, 7, 49, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-49-09-01', 1, 4, 1, 7, 49, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-49-10-01', 1, 4, 1, 7, 49, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-49-11-01', 1, 4, 1, 7, 49, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-49-12-01', 1, 4, 1, 7, 49, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-49-13-01', 1, 4, 1, 7, 49, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-49-14-01', 1, 4, 1, 7, 49, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-49-15-01', 1, 4, 1, 7, 49, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-49-16-01', 1, 4, 1, 7, 49, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-49-17-01', 1, 4, 1, 7, 49, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-49-18-01', 1, 4, 1, 7, 49, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-49-19-01', 1, 4, 1, 7, 49, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-49-20-01', 1, 4, 1, 7, 49, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-49-21-01', 1, 4, 1, 7, 49, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-49-22-01', 1, 4, 1, 7, 49, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-50-01-01', 1, 4, 1, 7, 50, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-50-02-01', 1, 4, 1, 7, 50, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-50-03-01', 1, 4, 1, 7, 50, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-50-04-01', 1, 4, 1, 7, 50, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-50-05-01', 1, 4, 1, 7, 50, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-50-06-01', 1, 4, 1, 7, 50, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-50-07-01', 1, 4, 1, 7, 50, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-50-08-01', 1, 4, 1, 7, 50, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-50-09-01', 1, 4, 1, 7, 50, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-50-10-01', 1, 4, 1, 7, 50, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-50-11-01', 1, 4, 1, 7, 50, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-50-12-01', 1, 4, 1, 7, 50, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-50-13-01', 1, 4, 1, 7, 50, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-50-14-01', 1, 4, 1, 7, 50, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-50-15-01', 1, 4, 1, 7, 50, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-50-16-01', 1, 4, 1, 7, 50, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-50-17-01', 1, 4, 1, 7, 50, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-50-18-01', 1, 4, 1, 7, 50, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-50-19-01', 1, 4, 1, 7, 50, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-50-20-01', 1, 4, 1, 7, 50, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-50-21-01', 1, 4, 1, 7, 50, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-50-22-01', 1, 4, 1, 7, 50, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-51-01-01', 1, 4, 1, 7, 51, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-51-02-01', 1, 4, 1, 7, 51, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-51-03-01', 1, 4, 1, 7, 51, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-51-04-01', 1, 4, 1, 7, 51, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-51-05-01', 1, 4, 1, 7, 51, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-51-06-01', 1, 4, 1, 7, 51, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-51-07-01', 1, 4, 1, 7, 51, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-51-08-01', 1, 4, 1, 7, 51, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-51-09-01', 1, 4, 1, 7, 51, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-51-10-01', 1, 4, 1, 7, 51, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-51-11-01', 1, 4, 1, 7, 51, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-51-12-01', 1, 4, 1, 7, 51, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-51-13-01', 1, 4, 1, 7, 51, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-51-14-01', 1, 4, 1, 7, 51, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-51-15-01', 1, 4, 1, 7, 51, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-51-16-01', 1, 4, 1, 7, 51, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-51-17-01', 1, 4, 1, 7, 51, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-51-18-01', 1, 4, 1, 7, 51, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-51-19-01', 1, 4, 1, 7, 51, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-51-20-01', 1, 4, 1, 7, 51, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-51-21-01', 1, 4, 1, 7, 51, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-51-22-01', 1, 4, 1, 7, 51, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-52-01-01', 1, 4, 1, 7, 52, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-52-02-01', 1, 4, 1, 7, 52, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-52-03-01', 1, 4, 1, 7, 52, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-52-04-01', 1, 4, 1, 7, 52, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-52-05-01', 1, 4, 1, 7, 52, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-52-06-01', 1, 4, 1, 7, 52, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-52-07-01', 1, 4, 1, 7, 52, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-52-08-01', 1, 4, 1, 7, 52, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-52-09-01', 1, 4, 1, 7, 52, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-52-10-01', 1, 4, 1, 7, 52, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-52-11-01', 1, 4, 1, 7, 52, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-52-12-01', 1, 4, 1, 7, 52, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-52-13-01', 1, 4, 1, 7, 52, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-52-14-01', 1, 4, 1, 7, 52, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-52-15-01', 1, 4, 1, 7, 52, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-52-16-01', 1, 4, 1, 7, 52, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-52-17-01', 1, 4, 1, 7, 52, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-52-18-01', 1, 4, 1, 7, 52, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-52-19-01', 1, 4, 1, 7, 52, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-52-20-01', 1, 4, 1, 7, 52, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-52-21-01', 1, 4, 1, 7, 52, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-52-22-01', 1, 4, 1, 7, 52, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-53-01-01', 1, 4, 1, 7, 53, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-53-02-01', 1, 4, 1, 7, 53, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-53-03-01', 1, 4, 1, 7, 53, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-53-04-01', 1, 4, 1, 7, 53, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-53-05-01', 1, 4, 1, 7, 53, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-53-06-01', 1, 4, 1, 7, 53, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-53-07-01', 1, 4, 1, 7, 53, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-53-08-01', 1, 4, 1, 7, 53, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-53-09-01', 1, 4, 1, 7, 53, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-53-10-01', 1, 4, 1, 7, 53, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-53-11-01', 1, 4, 1, 7, 53, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-53-12-01', 1, 4, 1, 7, 53, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-53-13-01', 1, 4, 1, 7, 53, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-53-14-01', 1, 4, 1, 7, 53, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-53-15-01', 1, 4, 1, 7, 53, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-53-16-01', 1, 4, 1, 7, 53, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-53-17-01', 1, 4, 1, 7, 53, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-53-18-01', 1, 4, 1, 7, 53, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-53-19-01', 1, 4, 1, 7, 53, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-53-20-01', 1, 4, 1, 7, 53, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-53-21-01', 1, 4, 1, 7, 53, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-53-22-01', 1, 4, 1, 7, 53, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-54-01-01', 1, 4, 1, 7, 54, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-54-02-01', 1, 4, 1, 7, 54, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-54-03-01', 1, 4, 1, 7, 54, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-54-04-01', 1, 4, 1, 7, 54, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-54-05-01', 1, 4, 1, 7, 54, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-54-06-01', 1, 4, 1, 7, 54, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-54-07-01', 1, 4, 1, 7, 54, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-54-08-01', 1, 4, 1, 7, 54, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-54-09-01', 1, 4, 1, 7, 54, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-54-10-01', 1, 4, 1, 7, 54, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-54-11-01', 1, 4, 1, 7, 54, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-54-12-01', 1, 4, 1, 7, 54, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-54-13-01', 1, 4, 1, 7, 54, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-54-14-01', 1, 4, 1, 7, 54, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-54-15-01', 1, 4, 1, 7, 54, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-54-16-01', 1, 4, 1, 7, 54, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-54-17-01', 1, 4, 1, 7, 54, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-54-18-01', 1, 4, 1, 7, 54, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-54-19-01', 1, 4, 1, 7, 54, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-54-20-01', 1, 4, 1, 7, 54, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-54-21-01', 1, 4, 1, 7, 54, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-54-22-01', 1, 4, 1, 7, 54, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-55-01-01', 1, 4, 1, 7, 55, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-55-02-01', 1, 4, 1, 7, 55, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-55-03-01', 1, 4, 1, 7, 55, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-55-04-01', 1, 4, 1, 7, 55, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-55-05-01', 1, 4, 1, 7, 55, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-55-06-01', 1, 4, 1, 7, 55, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-55-07-01', 1, 4, 1, 7, 55, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-55-08-01', 1, 4, 1, 7, 55, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-55-09-01', 1, 4, 1, 7, 55, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-55-10-01', 1, 4, 1, 7, 55, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-55-11-01', 1, 4, 1, 7, 55, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-55-12-01', 1, 4, 1, 7, 55, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-55-13-01', 1, 4, 1, 7, 55, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-55-14-01', 1, 4, 1, 7, 55, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-55-15-01', 1, 4, 1, 7, 55, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-55-16-01', 1, 4, 1, 7, 55, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-55-17-01', 1, 4, 1, 7, 55, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-55-18-01', 1, 4, 1, 7, 55, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-55-19-01', 1, 4, 1, 7, 55, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-55-20-01', 1, 4, 1, 7, 55, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-55-21-01', 1, 4, 1, 7, 55, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-55-22-01', 1, 4, 1, 7, 55, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-56-01-01', 1, 4, 1, 7, 56, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-56-02-01', 1, 4, 1, 7, 56, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-56-03-01', 1, 4, 1, 7, 56, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-56-04-01', 1, 4, 1, 7, 56, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-56-05-01', 1, 4, 1, 7, 56, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-56-06-01', 1, 4, 1, 7, 56, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-56-07-01', 1, 4, 1, 7, 56, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-56-08-01', 1, 4, 1, 7, 56, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-56-09-01', 1, 4, 1, 7, 56, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-56-10-01', 1, 4, 1, 7, 56, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-56-11-01', 1, 4, 1, 7, 56, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-56-12-01', 1, 4, 1, 7, 56, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-56-13-01', 1, 4, 1, 7, 56, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-56-14-01', 1, 4, 1, 7, 56, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-56-15-01', 1, 4, 1, 7, 56, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-56-16-01', 1, 4, 1, 7, 56, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-56-17-01', 1, 4, 1, 7, 56, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-56-18-01', 1, 4, 1, 7, 56, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-56-19-01', 1, 4, 1, 7, 56, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-56-20-01', 1, 4, 1, 7, 56, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-56-21-01', 1, 4, 1, 7, 56, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-56-22-01', 1, 4, 1, 7, 56, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-57-01-01', 1, 4, 1, 7, 57, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-57-02-01', 1, 4, 1, 7, 57, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-57-03-01', 1, 4, 1, 7, 57, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-57-04-01', 1, 4, 1, 7, 57, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-57-05-01', 1, 4, 1, 7, 57, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-57-06-01', 1, 4, 1, 7, 57, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-57-07-01', 1, 4, 1, 7, 57, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-57-08-01', 1, 4, 1, 7, 57, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-57-09-01', 1, 4, 1, 7, 57, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-57-10-01', 1, 4, 1, 7, 57, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-57-11-01', 1, 4, 1, 7, 57, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-57-12-01', 1, 4, 1, 7, 57, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-57-13-01', 1, 4, 1, 7, 57, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-57-14-01', 1, 4, 1, 7, 57, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-57-15-01', 1, 4, 1, 7, 57, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-57-16-01', 1, 4, 1, 7, 57, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-57-17-01', 1, 4, 1, 7, 57, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-57-18-01', 1, 4, 1, 7, 57, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-57-19-01', 1, 4, 1, 7, 57, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-57-20-01', 1, 4, 1, 7, 57, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-57-21-01', 1, 4, 1, 7, 57, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-57-22-01', 1, 4, 1, 7, 57, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-58-01-01', 1, 4, 1, 7, 58, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-58-02-01', 1, 4, 1, 7, 58, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-58-03-01', 1, 4, 1, 7, 58, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-58-04-01', 1, 4, 1, 7, 58, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-58-05-01', 1, 4, 1, 7, 58, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-58-06-01', 1, 4, 1, 7, 58, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-58-07-01', 1, 4, 1, 7, 58, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-58-08-01', 1, 4, 1, 7, 58, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-58-09-01', 1, 4, 1, 7, 58, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-58-10-01', 1, 4, 1, 7, 58, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-58-11-01', 1, 4, 1, 7, 58, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-58-12-01', 1, 4, 1, 7, 58, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-58-13-01', 1, 4, 1, 7, 58, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-58-14-01', 1, 4, 1, 7, 58, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-58-15-01', 1, 4, 1, 7, 58, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-58-16-01', 1, 4, 1, 7, 58, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-58-17-01', 1, 4, 1, 7, 58, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-58-18-01', 1, 4, 1, 7, 58, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-58-19-01', 1, 4, 1, 7, 58, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-58-20-01', 1, 4, 1, 7, 58, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-58-21-01', 1, 4, 1, 7, 58, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-58-22-01', 1, 4, 1, 7, 58, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-59-01-01', 1, 4, 1, 7, 59, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-59-02-01', 1, 4, 1, 7, 59, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-59-03-01', 1, 4, 1, 7, 59, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-59-04-01', 1, 4, 1, 7, 59, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-59-05-01', 1, 4, 1, 7, 59, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-59-06-01', 1, 4, 1, 7, 59, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-59-07-01', 1, 4, 1, 7, 59, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-59-08-01', 1, 4, 1, 7, 59, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-59-09-01', 1, 4, 1, 7, 59, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-59-10-01', 1, 4, 1, 7, 59, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-59-11-01', 1, 4, 1, 7, 59, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-59-12-01', 1, 4, 1, 7, 59, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-59-13-01', 1, 4, 1, 7, 59, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-59-14-01', 1, 4, 1, 7, 59, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-59-15-01', 1, 4, 1, 7, 59, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-59-16-01', 1, 4, 1, 7, 59, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-59-17-01', 1, 4, 1, 7, 59, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-59-18-01', 1, 4, 1, 7, 59, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-59-19-01', 1, 4, 1, 7, 59, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-59-20-01', 1, 4, 1, 7, 59, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-59-21-01', 1, 4, 1, 7, 59, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-59-22-01', 1, 4, 1, 7, 59, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-60-01-01', 1, 4, 1, 7, 60, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-60-02-01', 1, 4, 1, 7, 60, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-60-03-01', 1, 4, 1, 7, 60, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-60-04-01', 1, 4, 1, 7, 60, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-60-05-01', 1, 4, 1, 7, 60, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-60-06-01', 1, 4, 1, 7, 60, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-60-07-01', 1, 4, 1, 7, 60, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-60-08-01', 1, 4, 1, 7, 60, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-60-09-01', 1, 4, 1, 7, 60, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-60-10-01', 1, 4, 1, 7, 60, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-60-11-01', 1, 4, 1, 7, 60, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-60-12-01', 1, 4, 1, 7, 60, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-60-13-01', 1, 4, 1, 7, 60, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-60-14-01', 1, 4, 1, 7, 60, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-60-15-01', 1, 4, 1, 7, 60, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-60-16-01', 1, 4, 1, 7, 60, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-60-17-01', 1, 4, 1, 7, 60, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-60-18-01', 1, 4, 1, 7, 60, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-60-19-01', 1, 4, 1, 7, 60, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-60-20-01', 1, 4, 1, 7, 60, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-60-21-01', 1, 4, 1, 7, 60, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-60-22-01', 1, 4, 1, 7, 60, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-61-01-01', 1, 4, 1, 7, 61, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-61-02-01', 1, 4, 1, 7, 61, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-61-03-01', 1, 4, 1, 7, 61, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-61-04-01', 1, 4, 1, 7, 61, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-61-05-01', 1, 4, 1, 7, 61, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-61-06-01', 1, 4, 1, 7, 61, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-61-07-01', 1, 4, 1, 7, 61, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-61-08-01', 1, 4, 1, 7, 61, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-61-09-01', 1, 4, 1, 7, 61, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-61-10-01', 1, 4, 1, 7, 61, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-61-11-01', 1, 4, 1, 7, 61, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-61-12-01', 1, 4, 1, 7, 61, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-61-13-01', 1, 4, 1, 7, 61, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-61-14-01', 1, 4, 1, 7, 61, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-61-15-01', 1, 4, 1, 7, 61, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-61-16-01', 1, 4, 1, 7, 61, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-61-17-01', 1, 4, 1, 7, 61, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-61-18-01', 1, 4, 1, 7, 61, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-61-19-01', 1, 4, 1, 7, 61, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-61-20-01', 1, 4, 1, 7, 61, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-61-21-01', 1, 4, 1, 7, 61, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-61-22-01', 1, 4, 1, 7, 61, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-62-01-01', 1, 4, 1, 7, 62, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-62-02-01', 1, 4, 1, 7, 62, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-62-03-01', 1, 4, 1, 7, 62, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-62-04-01', 1, 4, 1, 7, 62, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-62-05-01', 1, 4, 1, 7, 62, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-62-06-01', 1, 4, 1, 7, 62, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-62-07-01', 1, 4, 1, 7, 62, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-62-08-01', 1, 4, 1, 7, 62, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-62-09-01', 1, 4, 1, 7, 62, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-62-10-01', 1, 4, 1, 7, 62, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-62-11-01', 1, 4, 1, 7, 62, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-62-12-01', 1, 4, 1, 7, 62, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-62-13-01', 1, 4, 1, 7, 62, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-62-14-01', 1, 4, 1, 7, 62, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-62-15-01', 1, 4, 1, 7, 62, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-62-16-01', 1, 4, 1, 7, 62, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-62-17-01', 1, 4, 1, 7, 62, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-62-18-01', 1, 4, 1, 7, 62, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-62-19-01', 1, 4, 1, 7, 62, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-62-20-01', 1, 4, 1, 7, 62, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-62-21-01', 1, 4, 1, 7, 62, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-62-22-01', 1, 4, 1, 7, 62, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-63-01-01', 1, 4, 1, 7, 63, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-63-02-01', 1, 4, 1, 7, 63, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-63-03-01', 1, 4, 1, 7, 63, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-63-04-01', 1, 4, 1, 7, 63, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-63-05-01', 1, 4, 1, 7, 63, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-63-06-01', 1, 4, 1, 7, 63, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-63-07-01', 1, 4, 1, 7, 63, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-63-08-01', 1, 4, 1, 7, 63, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-63-09-01', 1, 4, 1, 7, 63, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-63-10-01', 1, 4, 1, 7, 63, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-63-11-01', 1, 4, 1, 7, 63, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-63-12-01', 1, 4, 1, 7, 63, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-63-13-01', 1, 4, 1, 7, 63, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-63-14-01', 1, 4, 1, 7, 63, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-63-15-01', 1, 4, 1, 7, 63, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-63-16-01', 1, 4, 1, 7, 63, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-63-17-01', 1, 4, 1, 7, 63, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-63-18-01', 1, 4, 1, 7, 63, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-63-19-01', 1, 4, 1, 7, 63, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-63-20-01', 1, 4, 1, 7, 63, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-63-21-01', 1, 4, 1, 7, 63, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-63-22-01', 1, 4, 1, 7, 63, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-64-01-01', 1, 4, 1, 7, 64, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-64-02-01', 1, 4, 1, 7, 64, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-64-03-01', 1, 4, 1, 7, 64, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-64-04-01', 1, 4, 1, 7, 64, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-64-05-01', 1, 4, 1, 7, 64, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-64-06-01', 1, 4, 1, 7, 64, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-64-07-01', 1, 4, 1, 7, 64, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-64-08-01', 1, 4, 1, 7, 64, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-64-09-01', 1, 4, 1, 7, 64, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-64-10-01', 1, 4, 1, 7, 64, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-64-11-01', 1, 4, 1, 7, 64, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-64-12-01', 1, 4, 1, 7, 64, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-64-13-01', 1, 4, 1, 7, 64, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-64-14-01', 1, 4, 1, 7, 64, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-64-15-01', 1, 4, 1, 7, 64, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-64-16-01', 1, 4, 1, 7, 64, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-64-17-01', 1, 4, 1, 7, 64, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-64-18-01', 1, 4, 1, 7, 64, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-64-19-01', 1, 4, 1, 7, 64, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-64-20-01', 1, 4, 1, 7, 64, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-64-21-01', 1, 4, 1, 7, 64, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('07-64-22-01', 1, 4, 1, 7, 64, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-01-01-01', 1, 5, 1, 8, 1, 1, 1, 0, 1, 'ASRS000002'); +INSERT INTO `tbl_app_location` VALUES ('08-01-02-01', 1, 5, 1, 8, 1, 2, 1, 0, 1, 'ASRS000090'); +INSERT INTO `tbl_app_location` VALUES ('08-01-03-01', 1, 5, 1, 8, 1, 3, 1, 0, 1, 'ASRS000089'); +INSERT INTO `tbl_app_location` VALUES ('08-01-04-01', 1, 5, 1, 8, 1, 4, 1, 0, 1, 'ASRS000100'); +INSERT INTO `tbl_app_location` VALUES ('08-01-05-01', 1, 5, 1, 8, 1, 5, 1, 0, 1, 'ASRS000040'); +INSERT INTO `tbl_app_location` VALUES ('08-01-06-01', 1, 5, 1, 8, 1, 6, 1, 0, 1, 'ASRS000188'); +INSERT INTO `tbl_app_location` VALUES ('08-01-07-01', 1, 5, 1, 8, 1, 7, 1, 0, 1, 'ASRS000086'); +INSERT INTO `tbl_app_location` VALUES ('08-01-08-01', 1, 5, 1, 8, 1, 8, 1, 0, 1, 'ASRS000038'); +INSERT INTO `tbl_app_location` VALUES ('08-01-09-01', 1, 5, 1, 8, 1, 9, 1, 0, 1, 'ASRS000116'); +INSERT INTO `tbl_app_location` VALUES ('08-01-10-01', 1, 5, 1, 8, 1, 10, 1, 0, 1, 'ASRS000022'); +INSERT INTO `tbl_app_location` VALUES ('08-01-11-01', 1, 5, 1, 8, 1, 11, 1, 0, 0, 'ASRS000035'); +INSERT INTO `tbl_app_location` VALUES ('08-01-12-01', 1, 5, 1, 8, 1, 12, 1, 0, 0, 'ASRS000026'); +INSERT INTO `tbl_app_location` VALUES ('08-01-13-01', 1, 5, 1, 8, 1, 13, 1, 0, 1, 'ASRS000105'); +INSERT INTO `tbl_app_location` VALUES ('08-01-14-01', 1, 5, 1, 8, 1, 14, 1, 0, 1, 'ASRS000158'); +INSERT INTO `tbl_app_location` VALUES ('08-01-15-01', 1, 5, 1, 8, 1, 15, 1, 0, 1, 'ASRS000159'); +INSERT INTO `tbl_app_location` VALUES ('08-01-16-01', 1, 5, 1, 8, 1, 16, 1, 0, 1, 'ASRS000131'); +INSERT INTO `tbl_app_location` VALUES ('08-01-17-01', 1, 5, 1, 8, 1, 17, 1, 0, 1, 'ASRS000183'); +INSERT INTO `tbl_app_location` VALUES ('08-01-18-01', 1, 5, 1, 8, 1, 18, 1, 0, 1, 'ASRS000133'); +INSERT INTO `tbl_app_location` VALUES ('08-01-19-01', 1, 5, 1, 8, 1, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-01-20-01', 1, 5, 1, 8, 1, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-01-21-01', 1, 5, 1, 8, 1, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-01-22-01', 1, 5, 1, 8, 1, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-02-01-01', 1, 5, 1, 8, 2, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-02-02-01', 1, 5, 1, 8, 2, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-02-03-01', 1, 5, 1, 8, 2, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-02-04-01', 1, 5, 1, 8, 2, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-02-05-01', 1, 5, 1, 8, 2, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-02-06-01', 1, 5, 1, 8, 2, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-02-07-01', 1, 5, 1, 8, 2, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-02-08-01', 1, 5, 1, 8, 2, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-02-09-01', 1, 5, 1, 8, 2, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-02-10-01', 1, 5, 1, 8, 2, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-02-11-01', 1, 5, 1, 8, 2, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-02-12-01', 1, 5, 1, 8, 2, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-02-13-01', 1, 5, 1, 8, 2, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-02-14-01', 1, 5, 1, 8, 2, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-02-15-01', 1, 5, 1, 8, 2, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-02-16-01', 1, 5, 1, 8, 2, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-02-17-01', 1, 5, 1, 8, 2, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-02-18-01', 1, 5, 1, 8, 2, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-02-19-01', 1, 5, 1, 8, 2, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-02-20-01', 1, 5, 1, 8, 2, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-02-21-01', 1, 5, 1, 8, 2, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-02-22-01', 1, 5, 1, 8, 2, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-03-01-01', 1, 5, 1, 8, 3, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-03-02-01', 1, 5, 1, 8, 3, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-03-03-01', 1, 5, 1, 8, 3, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-03-04-01', 1, 5, 1, 8, 3, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-03-05-01', 1, 5, 1, 8, 3, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-03-06-01', 1, 5, 1, 8, 3, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-03-07-01', 1, 5, 1, 8, 3, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-03-08-01', 1, 5, 1, 8, 3, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-03-09-01', 1, 5, 1, 8, 3, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-03-10-01', 1, 5, 1, 8, 3, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-03-11-01', 1, 5, 1, 8, 3, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-03-12-01', 1, 5, 1, 8, 3, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-03-13-01', 1, 5, 1, 8, 3, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-03-14-01', 1, 5, 1, 8, 3, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-03-15-01', 1, 5, 1, 8, 3, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-03-16-01', 1, 5, 1, 8, 3, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-03-17-01', 1, 5, 1, 8, 3, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-03-18-01', 1, 5, 1, 8, 3, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-03-19-01', 1, 5, 1, 8, 3, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-03-20-01', 1, 5, 1, 8, 3, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-03-21-01', 1, 5, 1, 8, 3, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-03-22-01', 1, 5, 1, 8, 3, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-04-01-01', 1, 5, 1, 8, 4, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-04-02-01', 1, 5, 1, 8, 4, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-04-03-01', 1, 5, 1, 8, 4, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-04-04-01', 1, 5, 1, 8, 4, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-04-05-01', 1, 5, 1, 8, 4, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-04-06-01', 1, 5, 1, 8, 4, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-04-07-01', 1, 5, 1, 8, 4, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-04-08-01', 1, 5, 1, 8, 4, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-04-09-01', 1, 5, 1, 8, 4, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-04-10-01', 1, 5, 1, 8, 4, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-04-11-01', 1, 5, 1, 8, 4, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-04-12-01', 1, 5, 1, 8, 4, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-04-13-01', 1, 5, 1, 8, 4, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-04-14-01', 1, 5, 1, 8, 4, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-04-15-01', 1, 5, 1, 8, 4, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-04-16-01', 1, 5, 1, 8, 4, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-04-17-01', 1, 5, 1, 8, 4, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-04-18-01', 1, 5, 1, 8, 4, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-04-19-01', 1, 5, 1, 8, 4, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-04-20-01', 1, 5, 1, 8, 4, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-04-21-01', 1, 5, 1, 8, 4, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-04-22-01', 1, 5, 1, 8, 4, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-05-01-01', 1, 5, 1, 8, 5, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-05-02-01', 1, 5, 1, 8, 5, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-05-03-01', 1, 5, 1, 8, 5, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-05-04-01', 1, 5, 1, 8, 5, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-05-05-01', 1, 5, 1, 8, 5, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-05-06-01', 1, 5, 1, 8, 5, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-05-07-01', 1, 5, 1, 8, 5, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-05-08-01', 1, 5, 1, 8, 5, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-05-09-01', 1, 5, 1, 8, 5, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-05-10-01', 1, 5, 1, 8, 5, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-05-11-01', 1, 5, 1, 8, 5, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-05-12-01', 1, 5, 1, 8, 5, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-05-13-01', 1, 5, 1, 8, 5, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-05-14-01', 1, 5, 1, 8, 5, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-05-15-01', 1, 5, 1, 8, 5, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-05-16-01', 1, 5, 1, 8, 5, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-05-17-01', 1, 5, 1, 8, 5, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-05-18-01', 1, 5, 1, 8, 5, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-05-19-01', 1, 5, 1, 8, 5, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-05-20-01', 1, 5, 1, 8, 5, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-05-21-01', 1, 5, 1, 8, 5, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-05-22-01', 1, 5, 1, 8, 5, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-06-01-01', 1, 5, 1, 8, 6, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-06-02-01', 1, 5, 1, 8, 6, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-06-03-01', 1, 5, 1, 8, 6, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-06-04-01', 1, 5, 1, 8, 6, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-06-05-01', 1, 5, 1, 8, 6, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-06-06-01', 1, 5, 1, 8, 6, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-06-07-01', 1, 5, 1, 8, 6, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-06-08-01', 1, 5, 1, 8, 6, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-06-09-01', 1, 5, 1, 8, 6, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-06-10-01', 1, 5, 1, 8, 6, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-06-11-01', 1, 5, 1, 8, 6, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-06-12-01', 1, 5, 1, 8, 6, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-06-13-01', 1, 5, 1, 8, 6, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-06-14-01', 1, 5, 1, 8, 6, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-06-15-01', 1, 5, 1, 8, 6, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-06-16-01', 1, 5, 1, 8, 6, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-06-17-01', 1, 5, 1, 8, 6, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-06-18-01', 1, 5, 1, 8, 6, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-06-19-01', 1, 5, 1, 8, 6, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-06-20-01', 1, 5, 1, 8, 6, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-06-21-01', 1, 5, 1, 8, 6, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-06-22-01', 1, 5, 1, 8, 6, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-07-01-01', 1, 5, 1, 8, 7, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-07-02-01', 1, 5, 1, 8, 7, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-07-03-01', 1, 5, 1, 8, 7, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-07-04-01', 1, 5, 1, 8, 7, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-07-05-01', 1, 5, 1, 8, 7, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-07-06-01', 1, 5, 1, 8, 7, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-07-07-01', 1, 5, 1, 8, 7, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-07-08-01', 1, 5, 1, 8, 7, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-07-09-01', 1, 5, 1, 8, 7, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-07-10-01', 1, 5, 1, 8, 7, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-07-11-01', 1, 5, 1, 8, 7, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-07-12-01', 1, 5, 1, 8, 7, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-07-13-01', 1, 5, 1, 8, 7, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-07-14-01', 1, 5, 1, 8, 7, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-07-15-01', 1, 5, 1, 8, 7, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-07-16-01', 1, 5, 1, 8, 7, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-07-17-01', 1, 5, 1, 8, 7, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-07-18-01', 1, 5, 1, 8, 7, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-07-19-01', 1, 5, 1, 8, 7, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-07-20-01', 1, 5, 1, 8, 7, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-07-21-01', 1, 5, 1, 8, 7, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-07-22-01', 1, 5, 1, 8, 7, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-08-01-01', 1, 5, 1, 8, 8, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-08-02-01', 1, 5, 1, 8, 8, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-08-03-01', 1, 5, 1, 8, 8, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-08-04-01', 1, 5, 1, 8, 8, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-08-05-01', 1, 5, 1, 8, 8, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-08-06-01', 1, 5, 1, 8, 8, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-08-07-01', 1, 5, 1, 8, 8, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-08-08-01', 1, 5, 1, 8, 8, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-08-09-01', 1, 5, 1, 8, 8, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-08-10-01', 1, 5, 1, 8, 8, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-08-11-01', 1, 5, 1, 8, 8, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-08-12-01', 1, 5, 1, 8, 8, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-08-13-01', 1, 5, 1, 8, 8, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-08-14-01', 1, 5, 1, 8, 8, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-08-15-01', 1, 5, 1, 8, 8, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-08-16-01', 1, 5, 1, 8, 8, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-08-17-01', 1, 5, 1, 8, 8, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-08-18-01', 1, 5, 1, 8, 8, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-08-19-01', 1, 5, 1, 8, 8, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-08-20-01', 1, 5, 1, 8, 8, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-08-21-01', 1, 5, 1, 8, 8, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-08-22-01', 1, 5, 1, 8, 8, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-09-01-01', 1, 5, 1, 8, 9, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-09-02-01', 1, 5, 1, 8, 9, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-09-03-01', 1, 5, 1, 8, 9, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-09-04-01', 1, 5, 1, 8, 9, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-09-05-01', 1, 5, 1, 8, 9, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-09-06-01', 1, 5, 1, 8, 9, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-09-07-01', 1, 5, 1, 8, 9, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-09-08-01', 1, 5, 1, 8, 9, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-09-09-01', 1, 5, 1, 8, 9, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-09-10-01', 1, 5, 1, 8, 9, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-09-11-01', 1, 5, 1, 8, 9, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-09-12-01', 1, 5, 1, 8, 9, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-09-13-01', 1, 5, 1, 8, 9, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-09-14-01', 1, 5, 1, 8, 9, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-09-15-01', 1, 5, 1, 8, 9, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-09-16-01', 1, 5, 1, 8, 9, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-09-17-01', 1, 5, 1, 8, 9, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-09-18-01', 1, 5, 1, 8, 9, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-09-19-01', 1, 5, 1, 8, 9, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-09-20-01', 1, 5, 1, 8, 9, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-09-21-01', 1, 5, 1, 8, 9, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-09-22-01', 1, 5, 1, 8, 9, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-10-01-01', 1, 5, 1, 8, 10, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-10-02-01', 1, 5, 1, 8, 10, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-10-03-01', 1, 5, 1, 8, 10, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-10-04-01', 1, 5, 1, 8, 10, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-10-05-01', 1, 5, 1, 8, 10, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-10-06-01', 1, 5, 1, 8, 10, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-10-07-01', 1, 5, 1, 8, 10, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-10-08-01', 1, 5, 1, 8, 10, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-10-09-01', 1, 5, 1, 8, 10, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-10-10-01', 1, 5, 1, 8, 10, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-10-11-01', 1, 5, 1, 8, 10, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-10-12-01', 1, 5, 1, 8, 10, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-10-13-01', 1, 5, 1, 8, 10, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-10-14-01', 1, 5, 1, 8, 10, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-10-15-01', 1, 5, 1, 8, 10, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-10-16-01', 1, 5, 1, 8, 10, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-10-17-01', 1, 5, 1, 8, 10, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-10-18-01', 1, 5, 1, 8, 10, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-10-19-01', 1, 5, 1, 8, 10, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-10-20-01', 1, 5, 1, 8, 10, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-10-21-01', 1, 5, 1, 8, 10, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-10-22-01', 1, 5, 1, 8, 10, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-11-01-01', 1, 5, 1, 8, 11, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-11-02-01', 1, 5, 1, 8, 11, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-11-03-01', 1, 5, 1, 8, 11, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-11-04-01', 1, 5, 1, 8, 11, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-11-05-01', 1, 5, 1, 8, 11, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-11-06-01', 1, 5, 1, 8, 11, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-11-07-01', 1, 5, 1, 8, 11, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-11-08-01', 1, 5, 1, 8, 11, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-11-09-01', 1, 5, 1, 8, 11, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-11-10-01', 1, 5, 1, 8, 11, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-11-11-01', 1, 5, 1, 8, 11, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-11-12-01', 1, 5, 1, 8, 11, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-11-13-01', 1, 5, 1, 8, 11, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-11-14-01', 1, 5, 1, 8, 11, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-11-15-01', 1, 5, 1, 8, 11, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-11-16-01', 1, 5, 1, 8, 11, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-11-17-01', 1, 5, 1, 8, 11, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-11-18-01', 1, 5, 1, 8, 11, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-11-19-01', 1, 5, 1, 8, 11, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-11-20-01', 1, 5, 1, 8, 11, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-11-21-01', 1, 5, 1, 8, 11, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-11-22-01', 1, 5, 1, 8, 11, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-12-01-01', 1, 5, 1, 8, 12, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-12-02-01', 1, 5, 1, 8, 12, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-12-03-01', 1, 5, 1, 8, 12, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-12-04-01', 1, 5, 1, 8, 12, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-12-05-01', 1, 5, 1, 8, 12, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-12-06-01', 1, 5, 1, 8, 12, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-12-07-01', 1, 5, 1, 8, 12, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-12-08-01', 1, 5, 1, 8, 12, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-12-09-01', 1, 5, 1, 8, 12, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-12-10-01', 1, 5, 1, 8, 12, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-12-11-01', 1, 5, 1, 8, 12, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-12-12-01', 1, 5, 1, 8, 12, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-12-13-01', 1, 5, 1, 8, 12, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-12-14-01', 1, 5, 1, 8, 12, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-12-15-01', 1, 5, 1, 8, 12, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-12-16-01', 1, 5, 1, 8, 12, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-12-17-01', 1, 5, 1, 8, 12, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-12-18-01', 1, 5, 1, 8, 12, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-12-19-01', 1, 5, 1, 8, 12, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-12-20-01', 1, 5, 1, 8, 12, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-12-21-01', 1, 5, 1, 8, 12, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-12-22-01', 1, 5, 1, 8, 12, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-13-01-01', 1, 5, 1, 8, 13, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-13-02-01', 1, 5, 1, 8, 13, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-13-03-01', 1, 5, 1, 8, 13, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-13-04-01', 1, 5, 1, 8, 13, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-13-05-01', 1, 5, 1, 8, 13, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-13-06-01', 1, 5, 1, 8, 13, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-13-07-01', 1, 5, 1, 8, 13, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-13-08-01', 1, 5, 1, 8, 13, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-13-09-01', 1, 5, 1, 8, 13, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-13-10-01', 1, 5, 1, 8, 13, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-13-11-01', 1, 5, 1, 8, 13, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-13-12-01', 1, 5, 1, 8, 13, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-13-13-01', 1, 5, 1, 8, 13, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-13-14-01', 1, 5, 1, 8, 13, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-13-15-01', 1, 5, 1, 8, 13, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-13-16-01', 1, 5, 1, 8, 13, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-13-17-01', 1, 5, 1, 8, 13, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-13-18-01', 1, 5, 1, 8, 13, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-13-19-01', 1, 5, 1, 8, 13, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-13-20-01', 1, 5, 1, 8, 13, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-13-21-01', 1, 5, 1, 8, 13, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-13-22-01', 1, 5, 1, 8, 13, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-14-01-01', 1, 5, 1, 8, 14, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-14-02-01', 1, 5, 1, 8, 14, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-14-03-01', 1, 5, 1, 8, 14, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-14-04-01', 1, 5, 1, 8, 14, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-14-05-01', 1, 5, 1, 8, 14, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-14-06-01', 1, 5, 1, 8, 14, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-14-07-01', 1, 5, 1, 8, 14, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-14-08-01', 1, 5, 1, 8, 14, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-14-09-01', 1, 5, 1, 8, 14, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-14-10-01', 1, 5, 1, 8, 14, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-14-11-01', 1, 5, 1, 8, 14, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-14-12-01', 1, 5, 1, 8, 14, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-14-13-01', 1, 5, 1, 8, 14, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-14-14-01', 1, 5, 1, 8, 14, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-14-15-01', 1, 5, 1, 8, 14, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-14-16-01', 1, 5, 1, 8, 14, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-14-17-01', 1, 5, 1, 8, 14, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-14-18-01', 1, 5, 1, 8, 14, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-14-19-01', 1, 5, 1, 8, 14, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-14-20-01', 1, 5, 1, 8, 14, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-14-21-01', 1, 5, 1, 8, 14, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-14-22-01', 1, 5, 1, 8, 14, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-15-01-01', 1, 5, 1, 8, 15, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-15-02-01', 1, 5, 1, 8, 15, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-15-03-01', 1, 5, 1, 8, 15, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-15-04-01', 1, 5, 1, 8, 15, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-15-05-01', 1, 5, 1, 8, 15, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-15-06-01', 1, 5, 1, 8, 15, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-15-07-01', 1, 5, 1, 8, 15, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-15-08-01', 1, 5, 1, 8, 15, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-15-09-01', 1, 5, 1, 8, 15, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-15-10-01', 1, 5, 1, 8, 15, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-15-11-01', 1, 5, 1, 8, 15, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-15-12-01', 1, 5, 1, 8, 15, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-15-13-01', 1, 5, 1, 8, 15, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-15-14-01', 1, 5, 1, 8, 15, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-15-15-01', 1, 5, 1, 8, 15, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-15-16-01', 1, 5, 1, 8, 15, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-15-17-01', 1, 5, 1, 8, 15, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-15-18-01', 1, 5, 1, 8, 15, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-15-19-01', 1, 5, 1, 8, 15, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-15-20-01', 1, 5, 1, 8, 15, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-15-21-01', 1, 5, 1, 8, 15, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-15-22-01', 1, 5, 1, 8, 15, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-16-01-01', 1, 5, 1, 8, 16, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-16-02-01', 1, 5, 1, 8, 16, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-16-03-01', 1, 5, 1, 8, 16, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-16-04-01', 1, 5, 1, 8, 16, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-16-05-01', 1, 5, 1, 8, 16, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-16-06-01', 1, 5, 1, 8, 16, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-16-07-01', 1, 5, 1, 8, 16, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-16-08-01', 1, 5, 1, 8, 16, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-16-09-01', 1, 5, 1, 8, 16, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-16-10-01', 1, 5, 1, 8, 16, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-16-11-01', 1, 5, 1, 8, 16, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-16-12-01', 1, 5, 1, 8, 16, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-16-13-01', 1, 5, 1, 8, 16, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-16-14-01', 1, 5, 1, 8, 16, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-16-15-01', 1, 5, 1, 8, 16, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-16-16-01', 1, 5, 1, 8, 16, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-16-17-01', 1, 5, 1, 8, 16, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-16-18-01', 1, 5, 1, 8, 16, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-16-19-01', 1, 5, 1, 8, 16, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-16-20-01', 1, 5, 1, 8, 16, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-16-21-01', 1, 5, 1, 8, 16, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-16-22-01', 1, 5, 1, 8, 16, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-17-01-01', 1, 5, 1, 8, 17, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-17-02-01', 1, 5, 1, 8, 17, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-17-03-01', 1, 5, 1, 8, 17, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-17-04-01', 1, 5, 1, 8, 17, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-17-05-01', 1, 5, 1, 8, 17, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-17-06-01', 1, 5, 1, 8, 17, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-17-07-01', 1, 5, 1, 8, 17, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-17-08-01', 1, 5, 1, 8, 17, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-17-09-01', 1, 5, 1, 8, 17, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-17-10-01', 1, 5, 1, 8, 17, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-17-11-01', 1, 5, 1, 8, 17, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-17-12-01', 1, 5, 1, 8, 17, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-17-13-01', 1, 5, 1, 8, 17, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-17-14-01', 1, 5, 1, 8, 17, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-17-15-01', 1, 5, 1, 8, 17, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-17-16-01', 1, 5, 1, 8, 17, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-17-17-01', 1, 5, 1, 8, 17, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-17-18-01', 1, 5, 1, 8, 17, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-17-19-01', 1, 5, 1, 8, 17, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-17-20-01', 1, 5, 1, 8, 17, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-17-21-01', 1, 5, 1, 8, 17, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-17-22-01', 1, 5, 1, 8, 17, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-18-01-01', 1, 5, 1, 8, 18, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-18-02-01', 1, 5, 1, 8, 18, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-18-03-01', 1, 5, 1, 8, 18, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-18-04-01', 1, 5, 1, 8, 18, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-18-05-01', 1, 5, 1, 8, 18, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-18-06-01', 1, 5, 1, 8, 18, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-18-07-01', 1, 5, 1, 8, 18, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-18-08-01', 1, 5, 1, 8, 18, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-18-09-01', 1, 5, 1, 8, 18, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-18-10-01', 1, 5, 1, 8, 18, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-18-11-01', 1, 5, 1, 8, 18, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-18-12-01', 1, 5, 1, 8, 18, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-18-13-01', 1, 5, 1, 8, 18, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-18-14-01', 1, 5, 1, 8, 18, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-18-15-01', 1, 5, 1, 8, 18, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-18-16-01', 1, 5, 1, 8, 18, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-18-17-01', 1, 5, 1, 8, 18, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-18-18-01', 1, 5, 1, 8, 18, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-18-19-01', 1, 5, 1, 8, 18, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-18-20-01', 1, 5, 1, 8, 18, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-18-21-01', 1, 5, 1, 8, 18, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-18-22-01', 1, 5, 1, 8, 18, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-19-01-01', 1, 5, 1, 8, 19, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-19-02-01', 1, 5, 1, 8, 19, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-19-03-01', 1, 5, 1, 8, 19, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-19-04-01', 1, 5, 1, 8, 19, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-19-05-01', 1, 5, 1, 8, 19, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-19-06-01', 1, 5, 1, 8, 19, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-19-07-01', 1, 5, 1, 8, 19, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-19-08-01', 1, 5, 1, 8, 19, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-19-09-01', 1, 5, 1, 8, 19, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-19-10-01', 1, 5, 1, 8, 19, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-19-11-01', 1, 5, 1, 8, 19, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-19-12-01', 1, 5, 1, 8, 19, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-19-13-01', 1, 5, 1, 8, 19, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-19-14-01', 1, 5, 1, 8, 19, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-19-15-01', 1, 5, 1, 8, 19, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-19-16-01', 1, 5, 1, 8, 19, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-19-17-01', 1, 5, 1, 8, 19, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-19-18-01', 1, 5, 1, 8, 19, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-19-19-01', 1, 5, 1, 8, 19, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-19-20-01', 1, 5, 1, 8, 19, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-19-21-01', 1, 5, 1, 8, 19, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-19-22-01', 1, 5, 1, 8, 19, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-20-01-01', 1, 5, 1, 8, 20, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-20-02-01', 1, 5, 1, 8, 20, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-20-03-01', 1, 5, 1, 8, 20, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-20-04-01', 1, 5, 1, 8, 20, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-20-05-01', 1, 5, 1, 8, 20, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-20-06-01', 1, 5, 1, 8, 20, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-20-07-01', 1, 5, 1, 8, 20, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-20-08-01', 1, 5, 1, 8, 20, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-20-09-01', 1, 5, 1, 8, 20, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-20-10-01', 1, 5, 1, 8, 20, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-20-11-01', 1, 5, 1, 8, 20, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-20-12-01', 1, 5, 1, 8, 20, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-20-13-01', 1, 5, 1, 8, 20, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-20-14-01', 1, 5, 1, 8, 20, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-20-15-01', 1, 5, 1, 8, 20, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-20-16-01', 1, 5, 1, 8, 20, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-20-17-01', 1, 5, 1, 8, 20, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-20-18-01', 1, 5, 1, 8, 20, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-20-19-01', 1, 5, 1, 8, 20, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-20-20-01', 1, 5, 1, 8, 20, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-20-21-01', 1, 5, 1, 8, 20, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-20-22-01', 1, 5, 1, 8, 20, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-21-01-01', 1, 5, 1, 8, 21, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-21-02-01', 1, 5, 1, 8, 21, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-21-03-01', 1, 5, 1, 8, 21, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-21-04-01', 1, 5, 1, 8, 21, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-21-05-01', 1, 5, 1, 8, 21, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-21-06-01', 1, 5, 1, 8, 21, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-21-07-01', 1, 5, 1, 8, 21, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-21-08-01', 1, 5, 1, 8, 21, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-21-09-01', 1, 5, 1, 8, 21, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-21-10-01', 1, 5, 1, 8, 21, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-21-11-01', 1, 5, 1, 8, 21, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-21-12-01', 1, 5, 1, 8, 21, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-21-13-01', 1, 5, 1, 8, 21, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-21-14-01', 1, 5, 1, 8, 21, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-21-15-01', 1, 5, 1, 8, 21, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-21-16-01', 1, 5, 1, 8, 21, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-21-17-01', 1, 5, 1, 8, 21, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-21-18-01', 1, 5, 1, 8, 21, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-21-19-01', 1, 5, 1, 8, 21, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-21-20-01', 1, 5, 1, 8, 21, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-21-21-01', 1, 5, 1, 8, 21, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-21-22-01', 1, 5, 1, 8, 21, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-22-01-01', 1, 5, 1, 8, 22, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-22-02-01', 1, 5, 1, 8, 22, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-22-03-01', 1, 5, 1, 8, 22, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-22-04-01', 1, 5, 1, 8, 22, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-22-05-01', 1, 5, 1, 8, 22, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-22-06-01', 1, 5, 1, 8, 22, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-22-07-01', 1, 5, 1, 8, 22, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-22-08-01', 1, 5, 1, 8, 22, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-22-09-01', 1, 5, 1, 8, 22, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-22-10-01', 1, 5, 1, 8, 22, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-22-11-01', 1, 5, 1, 8, 22, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-22-12-01', 1, 5, 1, 8, 22, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-22-13-01', 1, 5, 1, 8, 22, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-22-14-01', 1, 5, 1, 8, 22, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-22-15-01', 1, 5, 1, 8, 22, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-22-16-01', 1, 5, 1, 8, 22, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-22-17-01', 1, 5, 1, 8, 22, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-22-18-01', 1, 5, 1, 8, 22, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-22-19-01', 1, 5, 1, 8, 22, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-22-20-01', 1, 5, 1, 8, 22, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-22-21-01', 1, 5, 1, 8, 22, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-22-22-01', 1, 5, 1, 8, 22, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-23-01-01', 1, 5, 1, 8, 23, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-23-02-01', 1, 5, 1, 8, 23, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-23-03-01', 1, 5, 1, 8, 23, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-23-04-01', 1, 5, 1, 8, 23, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-23-05-01', 1, 5, 1, 8, 23, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-23-06-01', 1, 5, 1, 8, 23, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-23-07-01', 1, 5, 1, 8, 23, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-23-08-01', 1, 5, 1, 8, 23, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-23-09-01', 1, 5, 1, 8, 23, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-23-10-01', 1, 5, 1, 8, 23, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-23-11-01', 1, 5, 1, 8, 23, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-23-12-01', 1, 5, 1, 8, 23, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-23-13-01', 1, 5, 1, 8, 23, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-23-14-01', 1, 5, 1, 8, 23, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-23-15-01', 1, 5, 1, 8, 23, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-23-16-01', 1, 5, 1, 8, 23, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-23-17-01', 1, 5, 1, 8, 23, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-23-18-01', 1, 5, 1, 8, 23, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-23-19-01', 1, 5, 1, 8, 23, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-23-20-01', 1, 5, 1, 8, 23, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-23-21-01', 1, 5, 1, 8, 23, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-23-22-01', 1, 5, 1, 8, 23, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-24-01-01', 1, 5, 1, 8, 24, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-24-02-01', 1, 5, 1, 8, 24, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-24-03-01', 1, 5, 1, 8, 24, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-24-04-01', 1, 5, 1, 8, 24, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-24-05-01', 1, 5, 1, 8, 24, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-24-06-01', 1, 5, 1, 8, 24, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-24-07-01', 1, 5, 1, 8, 24, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-24-08-01', 1, 5, 1, 8, 24, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-24-09-01', 1, 5, 1, 8, 24, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-24-10-01', 1, 5, 1, 8, 24, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-24-11-01', 1, 5, 1, 8, 24, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-24-12-01', 1, 5, 1, 8, 24, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-24-13-01', 1, 5, 1, 8, 24, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-24-14-01', 1, 5, 1, 8, 24, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-24-15-01', 1, 5, 1, 8, 24, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-24-16-01', 1, 5, 1, 8, 24, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-24-17-01', 1, 5, 1, 8, 24, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-24-18-01', 1, 5, 1, 8, 24, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-24-19-01', 1, 5, 1, 8, 24, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-24-20-01', 1, 5, 1, 8, 24, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-24-21-01', 1, 5, 1, 8, 24, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-24-22-01', 1, 5, 1, 8, 24, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-25-01-01', 1, 5, 1, 8, 25, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-25-02-01', 1, 5, 1, 8, 25, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-25-03-01', 1, 5, 1, 8, 25, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-25-04-01', 1, 5, 1, 8, 25, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-25-05-01', 1, 5, 1, 8, 25, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-25-06-01', 1, 5, 1, 8, 25, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-25-07-01', 1, 5, 1, 8, 25, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-25-08-01', 1, 5, 1, 8, 25, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-25-09-01', 1, 5, 1, 8, 25, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-25-10-01', 1, 5, 1, 8, 25, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-25-11-01', 1, 5, 1, 8, 25, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-25-12-01', 1, 5, 1, 8, 25, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-25-13-01', 1, 5, 1, 8, 25, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-25-14-01', 1, 5, 1, 8, 25, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-25-15-01', 1, 5, 1, 8, 25, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-25-16-01', 1, 5, 1, 8, 25, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-25-17-01', 1, 5, 1, 8, 25, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-25-18-01', 1, 5, 1, 8, 25, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-25-19-01', 1, 5, 1, 8, 25, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-25-20-01', 1, 5, 1, 8, 25, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-25-21-01', 1, 5, 1, 8, 25, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-25-22-01', 1, 5, 1, 8, 25, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-26-01-01', 1, 5, 1, 8, 26, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-26-02-01', 1, 5, 1, 8, 26, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-26-03-01', 1, 5, 1, 8, 26, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-26-04-01', 1, 5, 1, 8, 26, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-26-05-01', 1, 5, 1, 8, 26, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-26-06-01', 1, 5, 1, 8, 26, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-26-07-01', 1, 5, 1, 8, 26, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-26-08-01', 1, 5, 1, 8, 26, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-26-09-01', 1, 5, 1, 8, 26, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-26-10-01', 1, 5, 1, 8, 26, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-26-11-01', 1, 5, 1, 8, 26, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-26-12-01', 1, 5, 1, 8, 26, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-26-13-01', 1, 5, 1, 8, 26, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-26-14-01', 1, 5, 1, 8, 26, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-26-15-01', 1, 5, 1, 8, 26, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-26-16-01', 1, 5, 1, 8, 26, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-26-17-01', 1, 5, 1, 8, 26, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-26-18-01', 1, 5, 1, 8, 26, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-26-19-01', 1, 5, 1, 8, 26, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-26-20-01', 1, 5, 1, 8, 26, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-26-21-01', 1, 5, 1, 8, 26, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-26-22-01', 1, 5, 1, 8, 26, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-27-01-01', 1, 5, 1, 8, 27, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-27-02-01', 1, 5, 1, 8, 27, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-27-03-01', 1, 5, 1, 8, 27, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-27-04-01', 1, 5, 1, 8, 27, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-27-05-01', 1, 5, 1, 8, 27, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-27-06-01', 1, 5, 1, 8, 27, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-27-07-01', 1, 5, 1, 8, 27, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-27-08-01', 1, 5, 1, 8, 27, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-27-09-01', 1, 5, 1, 8, 27, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-27-10-01', 1, 5, 1, 8, 27, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-27-11-01', 1, 5, 1, 8, 27, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-27-12-01', 1, 5, 1, 8, 27, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-27-13-01', 1, 5, 1, 8, 27, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-27-14-01', 1, 5, 1, 8, 27, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-27-15-01', 1, 5, 1, 8, 27, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-27-16-01', 1, 5, 1, 8, 27, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-27-17-01', 1, 5, 1, 8, 27, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-27-18-01', 1, 5, 1, 8, 27, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-27-19-01', 1, 5, 1, 8, 27, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-27-20-01', 1, 5, 1, 8, 27, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-27-21-01', 1, 5, 1, 8, 27, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-27-22-01', 1, 5, 1, 8, 27, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-28-01-01', 1, 5, 1, 8, 28, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-28-02-01', 1, 5, 1, 8, 28, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-28-03-01', 1, 5, 1, 8, 28, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-28-04-01', 1, 5, 1, 8, 28, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-28-05-01', 1, 5, 1, 8, 28, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-28-06-01', 1, 5, 1, 8, 28, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-28-07-01', 1, 5, 1, 8, 28, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-28-08-01', 1, 5, 1, 8, 28, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-28-09-01', 1, 5, 1, 8, 28, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-28-10-01', 1, 5, 1, 8, 28, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-28-11-01', 1, 5, 1, 8, 28, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-28-12-01', 1, 5, 1, 8, 28, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-28-13-01', 1, 5, 1, 8, 28, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-28-14-01', 1, 5, 1, 8, 28, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-28-15-01', 1, 5, 1, 8, 28, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-28-16-01', 1, 5, 1, 8, 28, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-28-17-01', 1, 5, 1, 8, 28, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-28-18-01', 1, 5, 1, 8, 28, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-28-19-01', 1, 5, 1, 8, 28, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-28-20-01', 1, 5, 1, 8, 28, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-28-21-01', 1, 5, 1, 8, 28, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-28-22-01', 1, 5, 1, 8, 28, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-29-01-01', 1, 5, 1, 8, 29, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-29-02-01', 1, 5, 1, 8, 29, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-29-03-01', 1, 5, 1, 8, 29, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-29-04-01', 1, 5, 1, 8, 29, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-29-05-01', 1, 5, 1, 8, 29, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-29-06-01', 1, 5, 1, 8, 29, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-29-07-01', 1, 5, 1, 8, 29, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-29-08-01', 1, 5, 1, 8, 29, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-29-09-01', 1, 5, 1, 8, 29, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-29-10-01', 1, 5, 1, 8, 29, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-29-11-01', 1, 5, 1, 8, 29, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-29-12-01', 1, 5, 1, 8, 29, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-29-13-01', 1, 5, 1, 8, 29, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-29-14-01', 1, 5, 1, 8, 29, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-29-15-01', 1, 5, 1, 8, 29, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-29-16-01', 1, 5, 1, 8, 29, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-29-17-01', 1, 5, 1, 8, 29, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-29-18-01', 1, 5, 1, 8, 29, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-29-19-01', 1, 5, 1, 8, 29, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-29-20-01', 1, 5, 1, 8, 29, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-29-21-01', 1, 5, 1, 8, 29, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-29-22-01', 1, 5, 1, 8, 29, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-30-01-01', 1, 5, 1, 8, 30, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-30-02-01', 1, 5, 1, 8, 30, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-30-03-01', 1, 5, 1, 8, 30, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-30-04-01', 1, 5, 1, 8, 30, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-30-05-01', 1, 5, 1, 8, 30, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-30-06-01', 1, 5, 1, 8, 30, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-30-07-01', 1, 5, 1, 8, 30, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-30-08-01', 1, 5, 1, 8, 30, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-30-09-01', 1, 5, 1, 8, 30, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-30-10-01', 1, 5, 1, 8, 30, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-30-11-01', 1, 5, 1, 8, 30, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-30-12-01', 1, 5, 1, 8, 30, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-30-13-01', 1, 5, 1, 8, 30, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-30-14-01', 1, 5, 1, 8, 30, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-30-15-01', 1, 5, 1, 8, 30, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-30-16-01', 1, 5, 1, 8, 30, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-30-17-01', 1, 5, 1, 8, 30, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-30-18-01', 1, 5, 1, 8, 30, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-30-19-01', 1, 5, 1, 8, 30, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-30-20-01', 1, 5, 1, 8, 30, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-30-21-01', 1, 5, 1, 8, 30, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-30-22-01', 1, 5, 1, 8, 30, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-31-01-01', 1, 5, 1, 8, 31, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-31-02-01', 1, 5, 1, 8, 31, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-31-03-01', 1, 5, 1, 8, 31, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-31-04-01', 1, 5, 1, 8, 31, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-31-05-01', 1, 5, 1, 8, 31, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-31-06-01', 1, 5, 1, 8, 31, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-31-07-01', 1, 5, 1, 8, 31, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-31-08-01', 1, 5, 1, 8, 31, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-31-09-01', 1, 5, 1, 8, 31, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-31-10-01', 1, 5, 1, 8, 31, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-31-11-01', 1, 5, 1, 8, 31, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-31-12-01', 1, 5, 1, 8, 31, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-31-13-01', 1, 5, 1, 8, 31, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-31-14-01', 1, 5, 1, 8, 31, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-31-15-01', 1, 5, 1, 8, 31, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-31-16-01', 1, 5, 1, 8, 31, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-31-17-01', 1, 5, 1, 8, 31, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-31-18-01', 1, 5, 1, 8, 31, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-31-19-01', 1, 5, 1, 8, 31, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-31-20-01', 1, 5, 1, 8, 31, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-31-21-01', 1, 5, 1, 8, 31, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-31-22-01', 1, 5, 1, 8, 31, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-32-01-01', 1, 5, 1, 8, 32, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-32-02-01', 1, 5, 1, 8, 32, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-32-03-01', 1, 5, 1, 8, 32, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-32-04-01', 1, 5, 1, 8, 32, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-32-05-01', 1, 5, 1, 8, 32, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-32-06-01', 1, 5, 1, 8, 32, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-32-07-01', 1, 5, 1, 8, 32, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-32-08-01', 1, 5, 1, 8, 32, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-32-09-01', 1, 5, 1, 8, 32, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-32-10-01', 1, 5, 1, 8, 32, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-32-11-01', 1, 5, 1, 8, 32, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-32-12-01', 1, 5, 1, 8, 32, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-32-13-01', 1, 5, 1, 8, 32, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-32-14-01', 1, 5, 1, 8, 32, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-32-15-01', 1, 5, 1, 8, 32, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-32-16-01', 1, 5, 1, 8, 32, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-32-17-01', 1, 5, 1, 8, 32, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-32-18-01', 1, 5, 1, 8, 32, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-32-19-01', 1, 5, 1, 8, 32, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-32-20-01', 1, 5, 1, 8, 32, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-32-21-01', 1, 5, 1, 8, 32, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-32-22-01', 1, 5, 1, 8, 32, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-33-01-01', 1, 5, 1, 8, 33, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-33-02-01', 1, 5, 1, 8, 33, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-33-03-01', 1, 5, 1, 8, 33, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-33-04-01', 1, 5, 1, 8, 33, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-33-05-01', 1, 5, 1, 8, 33, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-33-06-01', 1, 5, 1, 8, 33, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-33-07-01', 1, 5, 1, 8, 33, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-33-08-01', 1, 5, 1, 8, 33, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-33-09-01', 1, 5, 1, 8, 33, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-33-10-01', 1, 5, 1, 8, 33, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-33-11-01', 1, 5, 1, 8, 33, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-33-12-01', 1, 5, 1, 8, 33, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-33-13-01', 1, 5, 1, 8, 33, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-33-14-01', 1, 5, 1, 8, 33, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-33-15-01', 1, 5, 1, 8, 33, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-33-16-01', 1, 5, 1, 8, 33, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-33-17-01', 1, 5, 1, 8, 33, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-33-18-01', 1, 5, 1, 8, 33, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-33-19-01', 1, 5, 1, 8, 33, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-33-20-01', 1, 5, 1, 8, 33, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-33-21-01', 1, 5, 1, 8, 33, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-33-22-01', 1, 5, 1, 8, 33, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-34-01-01', 1, 5, 1, 8, 34, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-34-02-01', 1, 5, 1, 8, 34, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-34-03-01', 1, 5, 1, 8, 34, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-34-04-01', 1, 5, 1, 8, 34, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-34-05-01', 1, 5, 1, 8, 34, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-34-06-01', 1, 5, 1, 8, 34, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-34-07-01', 1, 5, 1, 8, 34, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-34-08-01', 1, 5, 1, 8, 34, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-34-09-01', 1, 5, 1, 8, 34, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-34-10-01', 1, 5, 1, 8, 34, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-34-11-01', 1, 5, 1, 8, 34, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-34-12-01', 1, 5, 1, 8, 34, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-34-13-01', 1, 5, 1, 8, 34, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-34-14-01', 1, 5, 1, 8, 34, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-34-15-01', 1, 5, 1, 8, 34, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-34-16-01', 1, 5, 1, 8, 34, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-34-17-01', 1, 5, 1, 8, 34, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-34-18-01', 1, 5, 1, 8, 34, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-34-19-01', 1, 5, 1, 8, 34, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-34-20-01', 1, 5, 1, 8, 34, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-34-21-01', 1, 5, 1, 8, 34, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-34-22-01', 1, 5, 1, 8, 34, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-35-01-01', 1, 5, 1, 8, 35, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-35-02-01', 1, 5, 1, 8, 35, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-35-03-01', 1, 5, 1, 8, 35, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-35-04-01', 1, 5, 1, 8, 35, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-35-05-01', 1, 5, 1, 8, 35, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-35-06-01', 1, 5, 1, 8, 35, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-35-07-01', 1, 5, 1, 8, 35, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-35-08-01', 1, 5, 1, 8, 35, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-35-09-01', 1, 5, 1, 8, 35, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-35-10-01', 1, 5, 1, 8, 35, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-35-11-01', 1, 5, 1, 8, 35, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-35-12-01', 1, 5, 1, 8, 35, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-35-13-01', 1, 5, 1, 8, 35, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-35-14-01', 1, 5, 1, 8, 35, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-35-15-01', 1, 5, 1, 8, 35, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-35-16-01', 1, 5, 1, 8, 35, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-35-17-01', 1, 5, 1, 8, 35, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-35-18-01', 1, 5, 1, 8, 35, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-35-19-01', 1, 5, 1, 8, 35, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-35-20-01', 1, 5, 1, 8, 35, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-35-21-01', 1, 5, 1, 8, 35, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-35-22-01', 1, 5, 1, 8, 35, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-36-01-01', 1, 5, 1, 8, 36, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-36-02-01', 1, 5, 1, 8, 36, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-36-03-01', 1, 5, 1, 8, 36, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-36-04-01', 1, 5, 1, 8, 36, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-36-05-01', 1, 5, 1, 8, 36, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-36-06-01', 1, 5, 1, 8, 36, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-36-07-01', 1, 5, 1, 8, 36, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-36-08-01', 1, 5, 1, 8, 36, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-36-09-01', 1, 5, 1, 8, 36, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-36-10-01', 1, 5, 1, 8, 36, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-36-11-01', 1, 5, 1, 8, 36, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-36-12-01', 1, 5, 1, 8, 36, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-36-13-01', 1, 5, 1, 8, 36, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-36-14-01', 1, 5, 1, 8, 36, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-36-15-01', 1, 5, 1, 8, 36, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-36-16-01', 1, 5, 1, 8, 36, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-36-17-01', 1, 5, 1, 8, 36, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-36-18-01', 1, 5, 1, 8, 36, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-36-19-01', 1, 5, 1, 8, 36, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-36-20-01', 1, 5, 1, 8, 36, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-36-21-01', 1, 5, 1, 8, 36, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-36-22-01', 1, 5, 1, 8, 36, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-37-01-01', 1, 5, 1, 8, 37, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-37-02-01', 1, 5, 1, 8, 37, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-37-03-01', 1, 5, 1, 8, 37, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-37-04-01', 1, 5, 1, 8, 37, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-37-05-01', 1, 5, 1, 8, 37, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-37-06-01', 1, 5, 1, 8, 37, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-37-07-01', 1, 5, 1, 8, 37, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-37-08-01', 1, 5, 1, 8, 37, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-37-09-01', 1, 5, 1, 8, 37, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-37-10-01', 1, 5, 1, 8, 37, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-37-11-01', 1, 5, 1, 8, 37, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-37-12-01', 1, 5, 1, 8, 37, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-37-13-01', 1, 5, 1, 8, 37, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-37-14-01', 1, 5, 1, 8, 37, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-37-15-01', 1, 5, 1, 8, 37, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-37-16-01', 1, 5, 1, 8, 37, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-37-17-01', 1, 5, 1, 8, 37, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-37-18-01', 1, 5, 1, 8, 37, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-37-19-01', 1, 5, 1, 8, 37, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-37-20-01', 1, 5, 1, 8, 37, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-37-21-01', 1, 5, 1, 8, 37, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-37-22-01', 1, 5, 1, 8, 37, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-38-01-01', 1, 5, 1, 8, 38, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-38-02-01', 1, 5, 1, 8, 38, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-38-03-01', 1, 5, 1, 8, 38, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-38-04-01', 1, 5, 1, 8, 38, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-38-05-01', 1, 5, 1, 8, 38, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-38-06-01', 1, 5, 1, 8, 38, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-38-07-01', 1, 5, 1, 8, 38, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-38-08-01', 1, 5, 1, 8, 38, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-38-09-01', 1, 5, 1, 8, 38, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-38-10-01', 1, 5, 1, 8, 38, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-38-11-01', 1, 5, 1, 8, 38, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-38-12-01', 1, 5, 1, 8, 38, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-38-13-01', 1, 5, 1, 8, 38, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-38-14-01', 1, 5, 1, 8, 38, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-38-15-01', 1, 5, 1, 8, 38, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-38-16-01', 1, 5, 1, 8, 38, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-38-17-01', 1, 5, 1, 8, 38, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-38-18-01', 1, 5, 1, 8, 38, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-38-19-01', 1, 5, 1, 8, 38, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-38-20-01', 1, 5, 1, 8, 38, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-38-21-01', 1, 5, 1, 8, 38, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-38-22-01', 1, 5, 1, 8, 38, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-39-01-01', 1, 5, 1, 8, 39, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-39-02-01', 1, 5, 1, 8, 39, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-39-03-01', 1, 5, 1, 8, 39, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-39-04-01', 1, 5, 1, 8, 39, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-39-05-01', 1, 5, 1, 8, 39, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-39-06-01', 1, 5, 1, 8, 39, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-39-07-01', 1, 5, 1, 8, 39, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-39-08-01', 1, 5, 1, 8, 39, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-39-09-01', 1, 5, 1, 8, 39, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-39-10-01', 1, 5, 1, 8, 39, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-39-11-01', 1, 5, 1, 8, 39, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-39-12-01', 1, 5, 1, 8, 39, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-39-13-01', 1, 5, 1, 8, 39, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-39-14-01', 1, 5, 1, 8, 39, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-39-15-01', 1, 5, 1, 8, 39, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-39-16-01', 1, 5, 1, 8, 39, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-39-17-01', 1, 5, 1, 8, 39, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-39-18-01', 1, 5, 1, 8, 39, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-39-19-01', 1, 5, 1, 8, 39, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-39-20-01', 1, 5, 1, 8, 39, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-39-21-01', 1, 5, 1, 8, 39, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-39-22-01', 1, 5, 1, 8, 39, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-40-01-01', 1, 5, 1, 8, 40, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-40-02-01', 1, 5, 1, 8, 40, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-40-03-01', 1, 5, 1, 8, 40, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-40-04-01', 1, 5, 1, 8, 40, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-40-05-01', 1, 5, 1, 8, 40, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-40-06-01', 1, 5, 1, 8, 40, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-40-07-01', 1, 5, 1, 8, 40, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-40-08-01', 1, 5, 1, 8, 40, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-40-09-01', 1, 5, 1, 8, 40, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-40-10-01', 1, 5, 1, 8, 40, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-40-11-01', 1, 5, 1, 8, 40, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-40-12-01', 1, 5, 1, 8, 40, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-40-13-01', 1, 5, 1, 8, 40, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-40-14-01', 1, 5, 1, 8, 40, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-40-15-01', 1, 5, 1, 8, 40, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-40-16-01', 1, 5, 1, 8, 40, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-40-17-01', 1, 5, 1, 8, 40, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-40-18-01', 1, 5, 1, 8, 40, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-40-19-01', 1, 5, 1, 8, 40, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-40-20-01', 1, 5, 1, 8, 40, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-40-21-01', 1, 5, 1, 8, 40, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-40-22-01', 1, 5, 1, 8, 40, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-41-01-01', 1, 5, 1, 8, 41, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-41-02-01', 1, 5, 1, 8, 41, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-41-03-01', 1, 5, 1, 8, 41, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-41-04-01', 1, 5, 1, 8, 41, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-41-05-01', 1, 5, 1, 8, 41, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-41-06-01', 1, 5, 1, 8, 41, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-41-07-01', 1, 5, 1, 8, 41, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-41-08-01', 1, 5, 1, 8, 41, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-41-09-01', 1, 5, 1, 8, 41, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-41-10-01', 1, 5, 1, 8, 41, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-41-11-01', 1, 5, 1, 8, 41, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-41-12-01', 1, 5, 1, 8, 41, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-41-13-01', 1, 5, 1, 8, 41, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-41-14-01', 1, 5, 1, 8, 41, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-41-15-01', 1, 5, 1, 8, 41, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-41-16-01', 1, 5, 1, 8, 41, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-41-17-01', 1, 5, 1, 8, 41, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-41-18-01', 1, 5, 1, 8, 41, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-41-19-01', 1, 5, 1, 8, 41, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-41-20-01', 1, 5, 1, 8, 41, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-41-21-01', 1, 5, 1, 8, 41, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-41-22-01', 1, 5, 1, 8, 41, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-42-01-01', 1, 5, 1, 8, 42, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-42-02-01', 1, 5, 1, 8, 42, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-42-03-01', 1, 5, 1, 8, 42, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-42-04-01', 1, 5, 1, 8, 42, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-42-05-01', 1, 5, 1, 8, 42, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-42-06-01', 1, 5, 1, 8, 42, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-42-07-01', 1, 5, 1, 8, 42, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-42-08-01', 1, 5, 1, 8, 42, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-42-09-01', 1, 5, 1, 8, 42, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-42-10-01', 1, 5, 1, 8, 42, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-42-11-01', 1, 5, 1, 8, 42, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-42-12-01', 1, 5, 1, 8, 42, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-42-13-01', 1, 5, 1, 8, 42, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-42-14-01', 1, 5, 1, 8, 42, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-42-15-01', 1, 5, 1, 8, 42, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-42-16-01', 1, 5, 1, 8, 42, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-42-17-01', 1, 5, 1, 8, 42, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-42-18-01', 1, 5, 1, 8, 42, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-42-19-01', 1, 5, 1, 8, 42, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-42-20-01', 1, 5, 1, 8, 42, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-42-21-01', 1, 5, 1, 8, 42, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-42-22-01', 1, 5, 1, 8, 42, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-43-01-01', 1, 5, 1, 8, 43, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-43-02-01', 1, 5, 1, 8, 43, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-43-03-01', 1, 5, 1, 8, 43, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-43-04-01', 1, 5, 1, 8, 43, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-43-05-01', 1, 5, 1, 8, 43, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-43-06-01', 1, 5, 1, 8, 43, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-43-07-01', 1, 5, 1, 8, 43, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-43-08-01', 1, 5, 1, 8, 43, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-43-09-01', 1, 5, 1, 8, 43, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-43-10-01', 1, 5, 1, 8, 43, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-43-11-01', 1, 5, 1, 8, 43, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-43-12-01', 1, 5, 1, 8, 43, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-43-13-01', 1, 5, 1, 8, 43, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-43-14-01', 1, 5, 1, 8, 43, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-43-15-01', 1, 5, 1, 8, 43, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-43-16-01', 1, 5, 1, 8, 43, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-43-17-01', 1, 5, 1, 8, 43, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-43-18-01', 1, 5, 1, 8, 43, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-43-19-01', 1, 5, 1, 8, 43, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-43-20-01', 1, 5, 1, 8, 43, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-43-21-01', 1, 5, 1, 8, 43, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-43-22-01', 1, 5, 1, 8, 43, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-44-01-01', 1, 5, 1, 8, 44, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-44-02-01', 1, 5, 1, 8, 44, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-44-03-01', 1, 5, 1, 8, 44, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-44-04-01', 1, 5, 1, 8, 44, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-44-05-01', 1, 5, 1, 8, 44, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-44-06-01', 1, 5, 1, 8, 44, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-44-07-01', 1, 5, 1, 8, 44, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-44-08-01', 1, 5, 1, 8, 44, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-44-09-01', 1, 5, 1, 8, 44, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-44-10-01', 1, 5, 1, 8, 44, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-44-11-01', 1, 5, 1, 8, 44, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-44-12-01', 1, 5, 1, 8, 44, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-44-13-01', 1, 5, 1, 8, 44, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-44-14-01', 1, 5, 1, 8, 44, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-44-15-01', 1, 5, 1, 8, 44, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-44-16-01', 1, 5, 1, 8, 44, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-44-17-01', 1, 5, 1, 8, 44, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-44-18-01', 1, 5, 1, 8, 44, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-44-19-01', 1, 5, 1, 8, 44, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-44-20-01', 1, 5, 1, 8, 44, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-44-21-01', 1, 5, 1, 8, 44, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-44-22-01', 1, 5, 1, 8, 44, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-45-01-01', 1, 5, 1, 8, 45, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-45-02-01', 1, 5, 1, 8, 45, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-45-03-01', 1, 5, 1, 8, 45, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-45-04-01', 1, 5, 1, 8, 45, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-45-05-01', 1, 5, 1, 8, 45, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-45-06-01', 1, 5, 1, 8, 45, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-45-07-01', 1, 5, 1, 8, 45, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-45-08-01', 1, 5, 1, 8, 45, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-45-09-01', 1, 5, 1, 8, 45, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-45-10-01', 1, 5, 1, 8, 45, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-45-11-01', 1, 5, 1, 8, 45, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-45-12-01', 1, 5, 1, 8, 45, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-45-13-01', 1, 5, 1, 8, 45, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-45-14-01', 1, 5, 1, 8, 45, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-45-15-01', 1, 5, 1, 8, 45, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-45-16-01', 1, 5, 1, 8, 45, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-45-17-01', 1, 5, 1, 8, 45, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-45-18-01', 1, 5, 1, 8, 45, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-45-19-01', 1, 5, 1, 8, 45, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-45-20-01', 1, 5, 1, 8, 45, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-45-21-01', 1, 5, 1, 8, 45, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-45-22-01', 1, 5, 1, 8, 45, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-46-01-01', 1, 5, 1, 8, 46, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-46-02-01', 1, 5, 1, 8, 46, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-46-03-01', 1, 5, 1, 8, 46, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-46-04-01', 1, 5, 1, 8, 46, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-46-05-01', 1, 5, 1, 8, 46, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-46-06-01', 1, 5, 1, 8, 46, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-46-07-01', 1, 5, 1, 8, 46, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-46-08-01', 1, 5, 1, 8, 46, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-46-09-01', 1, 5, 1, 8, 46, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-46-10-01', 1, 5, 1, 8, 46, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-46-11-01', 1, 5, 1, 8, 46, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-46-12-01', 1, 5, 1, 8, 46, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-46-13-01', 1, 5, 1, 8, 46, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-46-14-01', 1, 5, 1, 8, 46, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-46-15-01', 1, 5, 1, 8, 46, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-46-16-01', 1, 5, 1, 8, 46, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-46-17-01', 1, 5, 1, 8, 46, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-46-18-01', 1, 5, 1, 8, 46, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-46-19-01', 1, 5, 1, 8, 46, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-46-20-01', 1, 5, 1, 8, 46, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-46-21-01', 1, 5, 1, 8, 46, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-46-22-01', 1, 5, 1, 8, 46, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-47-01-01', 1, 5, 1, 8, 47, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-47-02-01', 1, 5, 1, 8, 47, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-47-03-01', 1, 5, 1, 8, 47, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-47-04-01', 1, 5, 1, 8, 47, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-47-05-01', 1, 5, 1, 8, 47, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-47-06-01', 1, 5, 1, 8, 47, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-47-07-01', 1, 5, 1, 8, 47, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-47-08-01', 1, 5, 1, 8, 47, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-47-09-01', 1, 5, 1, 8, 47, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-47-10-01', 1, 5, 1, 8, 47, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-47-11-01', 1, 5, 1, 8, 47, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-47-12-01', 1, 5, 1, 8, 47, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-47-13-01', 1, 5, 1, 8, 47, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-47-14-01', 1, 5, 1, 8, 47, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-47-15-01', 1, 5, 1, 8, 47, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-47-16-01', 1, 5, 1, 8, 47, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-47-17-01', 1, 5, 1, 8, 47, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-47-18-01', 1, 5, 1, 8, 47, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-47-19-01', 1, 5, 1, 8, 47, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-47-20-01', 1, 5, 1, 8, 47, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-47-21-01', 1, 5, 1, 8, 47, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-47-22-01', 1, 5, 1, 8, 47, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-48-01-01', 1, 5, 1, 8, 48, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-48-02-01', 1, 5, 1, 8, 48, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-48-03-01', 1, 5, 1, 8, 48, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-48-04-01', 1, 5, 1, 8, 48, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-48-05-01', 1, 5, 1, 8, 48, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-48-06-01', 1, 5, 1, 8, 48, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-48-07-01', 1, 5, 1, 8, 48, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-48-08-01', 1, 5, 1, 8, 48, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-48-09-01', 1, 5, 1, 8, 48, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-48-10-01', 1, 5, 1, 8, 48, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-48-11-01', 1, 5, 1, 8, 48, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-48-12-01', 1, 5, 1, 8, 48, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-48-13-01', 1, 5, 1, 8, 48, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-48-14-01', 1, 5, 1, 8, 48, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-48-15-01', 1, 5, 1, 8, 48, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-48-16-01', 1, 5, 1, 8, 48, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-48-17-01', 1, 5, 1, 8, 48, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-48-18-01', 1, 5, 1, 8, 48, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-48-19-01', 1, 5, 1, 8, 48, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-48-20-01', 1, 5, 1, 8, 48, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-48-21-01', 1, 5, 1, 8, 48, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-48-22-01', 1, 5, 1, 8, 48, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-49-01-01', 1, 5, 1, 8, 49, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-49-02-01', 1, 5, 1, 8, 49, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-49-03-01', 1, 5, 1, 8, 49, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-49-04-01', 1, 5, 1, 8, 49, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-49-05-01', 1, 5, 1, 8, 49, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-49-06-01', 1, 5, 1, 8, 49, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-49-07-01', 1, 5, 1, 8, 49, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-49-08-01', 1, 5, 1, 8, 49, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-49-09-01', 1, 5, 1, 8, 49, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-49-10-01', 1, 5, 1, 8, 49, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-49-11-01', 1, 5, 1, 8, 49, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-49-12-01', 1, 5, 1, 8, 49, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-49-13-01', 1, 5, 1, 8, 49, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-49-14-01', 1, 5, 1, 8, 49, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-49-15-01', 1, 5, 1, 8, 49, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-49-16-01', 1, 5, 1, 8, 49, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-49-17-01', 1, 5, 1, 8, 49, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-49-18-01', 1, 5, 1, 8, 49, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-49-19-01', 1, 5, 1, 8, 49, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-49-20-01', 1, 5, 1, 8, 49, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-49-21-01', 1, 5, 1, 8, 49, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-49-22-01', 1, 5, 1, 8, 49, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-50-01-01', 1, 5, 1, 8, 50, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-50-02-01', 1, 5, 1, 8, 50, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-50-03-01', 1, 5, 1, 8, 50, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-50-04-01', 1, 5, 1, 8, 50, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-50-05-01', 1, 5, 1, 8, 50, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-50-06-01', 1, 5, 1, 8, 50, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-50-07-01', 1, 5, 1, 8, 50, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-50-08-01', 1, 5, 1, 8, 50, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-50-09-01', 1, 5, 1, 8, 50, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-50-10-01', 1, 5, 1, 8, 50, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-50-11-01', 1, 5, 1, 8, 50, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-50-12-01', 1, 5, 1, 8, 50, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-50-13-01', 1, 5, 1, 8, 50, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-50-14-01', 1, 5, 1, 8, 50, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-50-15-01', 1, 5, 1, 8, 50, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-50-16-01', 1, 5, 1, 8, 50, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-50-17-01', 1, 5, 1, 8, 50, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-50-18-01', 1, 5, 1, 8, 50, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-50-19-01', 1, 5, 1, 8, 50, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-50-20-01', 1, 5, 1, 8, 50, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-50-21-01', 1, 5, 1, 8, 50, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-50-22-01', 1, 5, 1, 8, 50, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-51-01-01', 1, 5, 1, 8, 51, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-51-02-01', 1, 5, 1, 8, 51, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-51-03-01', 1, 5, 1, 8, 51, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-51-04-01', 1, 5, 1, 8, 51, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-51-05-01', 1, 5, 1, 8, 51, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-51-06-01', 1, 5, 1, 8, 51, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-51-07-01', 1, 5, 1, 8, 51, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-51-08-01', 1, 5, 1, 8, 51, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-51-09-01', 1, 5, 1, 8, 51, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-51-10-01', 1, 5, 1, 8, 51, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-51-11-01', 1, 5, 1, 8, 51, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-51-12-01', 1, 5, 1, 8, 51, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-51-13-01', 1, 5, 1, 8, 51, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-51-14-01', 1, 5, 1, 8, 51, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-51-15-01', 1, 5, 1, 8, 51, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-51-16-01', 1, 5, 1, 8, 51, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-51-17-01', 1, 5, 1, 8, 51, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-51-18-01', 1, 5, 1, 8, 51, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-51-19-01', 1, 5, 1, 8, 51, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-51-20-01', 1, 5, 1, 8, 51, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-51-21-01', 1, 5, 1, 8, 51, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-51-22-01', 1, 5, 1, 8, 51, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-52-01-01', 1, 5, 1, 8, 52, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-52-02-01', 1, 5, 1, 8, 52, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-52-03-01', 1, 5, 1, 8, 52, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-52-04-01', 1, 5, 1, 8, 52, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-52-05-01', 1, 5, 1, 8, 52, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-52-06-01', 1, 5, 1, 8, 52, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-52-07-01', 1, 5, 1, 8, 52, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-52-08-01', 1, 5, 1, 8, 52, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-52-09-01', 1, 5, 1, 8, 52, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-52-10-01', 1, 5, 1, 8, 52, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-52-11-01', 1, 5, 1, 8, 52, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-52-12-01', 1, 5, 1, 8, 52, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-52-13-01', 1, 5, 1, 8, 52, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-52-14-01', 1, 5, 1, 8, 52, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-52-15-01', 1, 5, 1, 8, 52, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-52-16-01', 1, 5, 1, 8, 52, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-52-17-01', 1, 5, 1, 8, 52, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-52-18-01', 1, 5, 1, 8, 52, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-52-19-01', 1, 5, 1, 8, 52, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-52-20-01', 1, 5, 1, 8, 52, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-52-21-01', 1, 5, 1, 8, 52, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-52-22-01', 1, 5, 1, 8, 52, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-53-01-01', 1, 5, 1, 8, 53, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-53-02-01', 1, 5, 1, 8, 53, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-53-03-01', 1, 5, 1, 8, 53, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-53-04-01', 1, 5, 1, 8, 53, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-53-05-01', 1, 5, 1, 8, 53, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-53-06-01', 1, 5, 1, 8, 53, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-53-07-01', 1, 5, 1, 8, 53, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-53-08-01', 1, 5, 1, 8, 53, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-53-09-01', 1, 5, 1, 8, 53, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-53-10-01', 1, 5, 1, 8, 53, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-53-11-01', 1, 5, 1, 8, 53, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-53-12-01', 1, 5, 1, 8, 53, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-53-13-01', 1, 5, 1, 8, 53, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-53-14-01', 1, 5, 1, 8, 53, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-53-15-01', 1, 5, 1, 8, 53, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-53-16-01', 1, 5, 1, 8, 53, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-53-17-01', 1, 5, 1, 8, 53, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-53-18-01', 1, 5, 1, 8, 53, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-53-19-01', 1, 5, 1, 8, 53, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-53-20-01', 1, 5, 1, 8, 53, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-53-21-01', 1, 5, 1, 8, 53, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-53-22-01', 1, 5, 1, 8, 53, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-54-01-01', 1, 5, 1, 8, 54, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-54-02-01', 1, 5, 1, 8, 54, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-54-03-01', 1, 5, 1, 8, 54, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-54-04-01', 1, 5, 1, 8, 54, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-54-05-01', 1, 5, 1, 8, 54, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-54-06-01', 1, 5, 1, 8, 54, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-54-07-01', 1, 5, 1, 8, 54, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-54-08-01', 1, 5, 1, 8, 54, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-54-09-01', 1, 5, 1, 8, 54, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-54-10-01', 1, 5, 1, 8, 54, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-54-11-01', 1, 5, 1, 8, 54, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-54-12-01', 1, 5, 1, 8, 54, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-54-13-01', 1, 5, 1, 8, 54, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-54-14-01', 1, 5, 1, 8, 54, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-54-15-01', 1, 5, 1, 8, 54, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-54-16-01', 1, 5, 1, 8, 54, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-54-17-01', 1, 5, 1, 8, 54, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-54-18-01', 1, 5, 1, 8, 54, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-54-19-01', 1, 5, 1, 8, 54, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-54-20-01', 1, 5, 1, 8, 54, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-54-21-01', 1, 5, 1, 8, 54, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-54-22-01', 1, 5, 1, 8, 54, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-55-01-01', 1, 5, 1, 8, 55, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-55-02-01', 1, 5, 1, 8, 55, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-55-03-01', 1, 5, 1, 8, 55, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-55-04-01', 1, 5, 1, 8, 55, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-55-05-01', 1, 5, 1, 8, 55, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-55-06-01', 1, 5, 1, 8, 55, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-55-07-01', 1, 5, 1, 8, 55, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-55-08-01', 1, 5, 1, 8, 55, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-55-09-01', 1, 5, 1, 8, 55, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-55-10-01', 1, 5, 1, 8, 55, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-55-11-01', 1, 5, 1, 8, 55, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-55-12-01', 1, 5, 1, 8, 55, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-55-13-01', 1, 5, 1, 8, 55, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-55-14-01', 1, 5, 1, 8, 55, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-55-15-01', 1, 5, 1, 8, 55, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-55-16-01', 1, 5, 1, 8, 55, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-55-17-01', 1, 5, 1, 8, 55, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-55-18-01', 1, 5, 1, 8, 55, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-55-19-01', 1, 5, 1, 8, 55, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-55-20-01', 1, 5, 1, 8, 55, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-55-21-01', 1, 5, 1, 8, 55, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-55-22-01', 1, 5, 1, 8, 55, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-56-01-01', 1, 5, 1, 8, 56, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-56-02-01', 1, 5, 1, 8, 56, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-56-03-01', 1, 5, 1, 8, 56, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-56-04-01', 1, 5, 1, 8, 56, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-56-05-01', 1, 5, 1, 8, 56, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-56-06-01', 1, 5, 1, 8, 56, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-56-07-01', 1, 5, 1, 8, 56, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-56-08-01', 1, 5, 1, 8, 56, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-56-09-01', 1, 5, 1, 8, 56, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-56-10-01', 1, 5, 1, 8, 56, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-56-11-01', 1, 5, 1, 8, 56, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-56-12-01', 1, 5, 1, 8, 56, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-56-13-01', 1, 5, 1, 8, 56, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-56-14-01', 1, 5, 1, 8, 56, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-56-15-01', 1, 5, 1, 8, 56, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-56-16-01', 1, 5, 1, 8, 56, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-56-17-01', 1, 5, 1, 8, 56, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-56-18-01', 1, 5, 1, 8, 56, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-56-19-01', 1, 5, 1, 8, 56, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-56-20-01', 1, 5, 1, 8, 56, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-56-21-01', 1, 5, 1, 8, 56, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-56-22-01', 1, 5, 1, 8, 56, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-57-01-01', 1, 5, 1, 8, 57, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-57-02-01', 1, 5, 1, 8, 57, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-57-03-01', 1, 5, 1, 8, 57, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-57-04-01', 1, 5, 1, 8, 57, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-57-05-01', 1, 5, 1, 8, 57, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-57-06-01', 1, 5, 1, 8, 57, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-57-07-01', 1, 5, 1, 8, 57, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-57-08-01', 1, 5, 1, 8, 57, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-57-09-01', 1, 5, 1, 8, 57, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-57-10-01', 1, 5, 1, 8, 57, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-57-11-01', 1, 5, 1, 8, 57, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-57-12-01', 1, 5, 1, 8, 57, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-57-13-01', 1, 5, 1, 8, 57, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-57-14-01', 1, 5, 1, 8, 57, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-57-15-01', 1, 5, 1, 8, 57, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-57-16-01', 1, 5, 1, 8, 57, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-57-17-01', 1, 5, 1, 8, 57, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-57-18-01', 1, 5, 1, 8, 57, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-57-19-01', 1, 5, 1, 8, 57, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-57-20-01', 1, 5, 1, 8, 57, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-57-21-01', 1, 5, 1, 8, 57, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-57-22-01', 1, 5, 1, 8, 57, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-58-01-01', 1, 5, 1, 8, 58, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-58-02-01', 1, 5, 1, 8, 58, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-58-03-01', 1, 5, 1, 8, 58, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-58-04-01', 1, 5, 1, 8, 58, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-58-05-01', 1, 5, 1, 8, 58, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-58-06-01', 1, 5, 1, 8, 58, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-58-07-01', 1, 5, 1, 8, 58, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-58-08-01', 1, 5, 1, 8, 58, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-58-09-01', 1, 5, 1, 8, 58, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-58-10-01', 1, 5, 1, 8, 58, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-58-11-01', 1, 5, 1, 8, 58, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-58-12-01', 1, 5, 1, 8, 58, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-58-13-01', 1, 5, 1, 8, 58, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-58-14-01', 1, 5, 1, 8, 58, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-58-15-01', 1, 5, 1, 8, 58, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-58-16-01', 1, 5, 1, 8, 58, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-58-17-01', 1, 5, 1, 8, 58, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-58-18-01', 1, 5, 1, 8, 58, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-58-19-01', 1, 5, 1, 8, 58, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-58-20-01', 1, 5, 1, 8, 58, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-58-21-01', 1, 5, 1, 8, 58, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-58-22-01', 1, 5, 1, 8, 58, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-59-01-01', 1, 5, 1, 8, 59, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-59-02-01', 1, 5, 1, 8, 59, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-59-03-01', 1, 5, 1, 8, 59, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-59-04-01', 1, 5, 1, 8, 59, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-59-05-01', 1, 5, 1, 8, 59, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-59-06-01', 1, 5, 1, 8, 59, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-59-07-01', 1, 5, 1, 8, 59, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-59-08-01', 1, 5, 1, 8, 59, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-59-09-01', 1, 5, 1, 8, 59, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-59-10-01', 1, 5, 1, 8, 59, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-59-11-01', 1, 5, 1, 8, 59, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-59-12-01', 1, 5, 1, 8, 59, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-59-13-01', 1, 5, 1, 8, 59, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-59-14-01', 1, 5, 1, 8, 59, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-59-15-01', 1, 5, 1, 8, 59, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-59-16-01', 1, 5, 1, 8, 59, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-59-17-01', 1, 5, 1, 8, 59, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-59-18-01', 1, 5, 1, 8, 59, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-59-19-01', 1, 5, 1, 8, 59, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-59-20-01', 1, 5, 1, 8, 59, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-59-21-01', 1, 5, 1, 8, 59, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-59-22-01', 1, 5, 1, 8, 59, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-60-01-01', 1, 5, 1, 8, 60, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-60-02-01', 1, 5, 1, 8, 60, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-60-03-01', 1, 5, 1, 8, 60, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-60-04-01', 1, 5, 1, 8, 60, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-60-05-01', 1, 5, 1, 8, 60, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-60-06-01', 1, 5, 1, 8, 60, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-60-07-01', 1, 5, 1, 8, 60, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-60-08-01', 1, 5, 1, 8, 60, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-60-09-01', 1, 5, 1, 8, 60, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-60-10-01', 1, 5, 1, 8, 60, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-60-11-01', 1, 5, 1, 8, 60, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-60-12-01', 1, 5, 1, 8, 60, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-60-13-01', 1, 5, 1, 8, 60, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-60-14-01', 1, 5, 1, 8, 60, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-60-15-01', 1, 5, 1, 8, 60, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-60-16-01', 1, 5, 1, 8, 60, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-60-17-01', 1, 5, 1, 8, 60, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-60-18-01', 1, 5, 1, 8, 60, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-60-19-01', 1, 5, 1, 8, 60, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-60-20-01', 1, 5, 1, 8, 60, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-60-21-01', 1, 5, 1, 8, 60, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-60-22-01', 1, 5, 1, 8, 60, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-61-01-01', 1, 5, 1, 8, 61, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-61-02-01', 1, 5, 1, 8, 61, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-61-03-01', 1, 5, 1, 8, 61, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-61-04-01', 1, 5, 1, 8, 61, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-61-05-01', 1, 5, 1, 8, 61, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-61-06-01', 1, 5, 1, 8, 61, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-61-07-01', 1, 5, 1, 8, 61, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-61-08-01', 1, 5, 1, 8, 61, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-61-09-01', 1, 5, 1, 8, 61, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-61-10-01', 1, 5, 1, 8, 61, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-61-11-01', 1, 5, 1, 8, 61, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-61-12-01', 1, 5, 1, 8, 61, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-61-13-01', 1, 5, 1, 8, 61, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-61-14-01', 1, 5, 1, 8, 61, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-61-15-01', 1, 5, 1, 8, 61, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-61-16-01', 1, 5, 1, 8, 61, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-61-17-01', 1, 5, 1, 8, 61, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-61-18-01', 1, 5, 1, 8, 61, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-61-19-01', 1, 5, 1, 8, 61, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-61-20-01', 1, 5, 1, 8, 61, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-61-21-01', 1, 5, 1, 8, 61, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-61-22-01', 1, 5, 1, 8, 61, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-62-01-01', 1, 5, 1, 8, 62, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-62-02-01', 1, 5, 1, 8, 62, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-62-03-01', 1, 5, 1, 8, 62, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-62-04-01', 1, 5, 1, 8, 62, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-62-05-01', 1, 5, 1, 8, 62, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-62-06-01', 1, 5, 1, 8, 62, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-62-07-01', 1, 5, 1, 8, 62, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-62-08-01', 1, 5, 1, 8, 62, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-62-09-01', 1, 5, 1, 8, 62, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-62-10-01', 1, 5, 1, 8, 62, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-62-11-01', 1, 5, 1, 8, 62, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-62-12-01', 1, 5, 1, 8, 62, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-62-13-01', 1, 5, 1, 8, 62, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-62-14-01', 1, 5, 1, 8, 62, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-62-15-01', 1, 5, 1, 8, 62, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-62-16-01', 1, 5, 1, 8, 62, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-62-17-01', 1, 5, 1, 8, 62, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-62-18-01', 1, 5, 1, 8, 62, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-62-19-01', 1, 5, 1, 8, 62, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-62-20-01', 1, 5, 1, 8, 62, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-62-21-01', 1, 5, 1, 8, 62, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-62-22-01', 1, 5, 1, 8, 62, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-63-01-01', 1, 5, 1, 8, 63, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-63-02-01', 1, 5, 1, 8, 63, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-63-03-01', 1, 5, 1, 8, 63, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-63-04-01', 1, 5, 1, 8, 63, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-63-05-01', 1, 5, 1, 8, 63, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-63-06-01', 1, 5, 1, 8, 63, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-63-07-01', 1, 5, 1, 8, 63, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-63-08-01', 1, 5, 1, 8, 63, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-63-09-01', 1, 5, 1, 8, 63, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-63-10-01', 1, 5, 1, 8, 63, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-63-11-01', 1, 5, 1, 8, 63, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-63-12-01', 1, 5, 1, 8, 63, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-63-13-01', 1, 5, 1, 8, 63, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-63-14-01', 1, 5, 1, 8, 63, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-63-15-01', 1, 5, 1, 8, 63, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-63-16-01', 1, 5, 1, 8, 63, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-63-17-01', 1, 5, 1, 8, 63, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-63-18-01', 1, 5, 1, 8, 63, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-63-19-01', 1, 5, 1, 8, 63, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-63-20-01', 1, 5, 1, 8, 63, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-63-21-01', 1, 5, 1, 8, 63, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-63-22-01', 1, 5, 1, 8, 63, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-64-01-01', 1, 5, 1, 8, 64, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-64-02-01', 1, 5, 1, 8, 64, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-64-03-01', 1, 5, 1, 8, 64, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-64-04-01', 1, 5, 1, 8, 64, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-64-05-01', 1, 5, 1, 8, 64, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-64-06-01', 1, 5, 1, 8, 64, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-64-07-01', 1, 5, 1, 8, 64, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-64-08-01', 1, 5, 1, 8, 64, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-64-09-01', 1, 5, 1, 8, 64, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-64-10-01', 1, 5, 1, 8, 64, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-64-11-01', 1, 5, 1, 8, 64, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-64-12-01', 1, 5, 1, 8, 64, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-64-13-01', 1, 5, 1, 8, 64, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-64-14-01', 1, 5, 1, 8, 64, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-64-15-01', 1, 5, 1, 8, 64, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-64-16-01', 1, 5, 1, 8, 64, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-64-17-01', 1, 5, 1, 8, 64, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-64-18-01', 1, 5, 1, 8, 64, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-64-19-01', 1, 5, 1, 8, 64, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-64-20-01', 1, 5, 1, 8, 64, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-64-21-01', 1, 5, 1, 8, 64, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('08-64-22-01', 1, 5, 1, 8, 64, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-01-01-01', 1, 5, 1, 9, 1, 1, 1, 0, 1, 'ASRS000082'); +INSERT INTO `tbl_app_location` VALUES ('09-01-02-01', 1, 5, 1, 9, 1, 2, 1, 0, 1, 'ASRS000088'); +INSERT INTO `tbl_app_location` VALUES ('09-01-03-01', 1, 5, 1, 9, 1, 3, 1, 0, 1, 'ASRS000064'); +INSERT INTO `tbl_app_location` VALUES ('09-01-04-01', 1, 5, 1, 9, 1, 4, 1, 0, 1, 'ASRS000008'); +INSERT INTO `tbl_app_location` VALUES ('09-01-05-01', 1, 5, 1, 9, 1, 5, 1, 0, 1, 'ASRS000166'); +INSERT INTO `tbl_app_location` VALUES ('09-01-06-01', 1, 5, 1, 9, 1, 6, 1, 0, 1, 'ASRS000032'); +INSERT INTO `tbl_app_location` VALUES ('09-01-07-01', 1, 5, 1, 9, 1, 7, 1, 0, 1, 'ASRS000024'); +INSERT INTO `tbl_app_location` VALUES ('09-01-08-01', 1, 5, 1, 9, 1, 8, 1, 0, 1, 'ASRS000042'); +INSERT INTO `tbl_app_location` VALUES ('09-01-09-01', 1, 5, 1, 9, 1, 9, 1, 0, 1, 'ASRS000107'); +INSERT INTO `tbl_app_location` VALUES ('09-01-10-01', 1, 5, 1, 9, 1, 10, 1, 0, 1, 'ASRS000034'); +INSERT INTO `tbl_app_location` VALUES ('09-01-11-01', 1, 5, 1, 9, 1, 11, 1, 0, 0, 'ASRS000118'); +INSERT INTO `tbl_app_location` VALUES ('09-01-12-01', 1, 5, 1, 9, 1, 12, 1, 0, 1, 'ASRS000121'); +INSERT INTO `tbl_app_location` VALUES ('09-01-13-01', 1, 5, 1, 9, 1, 13, 1, 0, 1, 'ASRS000119'); +INSERT INTO `tbl_app_location` VALUES ('09-01-14-01', 1, 5, 1, 9, 1, 14, 1, 0, 1, 'ASRS000170'); +INSERT INTO `tbl_app_location` VALUES ('09-01-15-01', 1, 5, 1, 9, 1, 15, 1, 0, 1, 'ASRS000104'); +INSERT INTO `tbl_app_location` VALUES ('09-01-16-01', 1, 5, 1, 9, 1, 16, 1, 0, 1, 'ASRS000146'); +INSERT INTO `tbl_app_location` VALUES ('09-01-17-01', 1, 5, 1, 9, 1, 17, 1, 0, 1, 'ASRS000174'); +INSERT INTO `tbl_app_location` VALUES ('09-01-18-01', 1, 5, 1, 9, 1, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-01-19-01', 1, 5, 1, 9, 1, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-01-20-01', 1, 5, 1, 9, 1, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-01-21-01', 1, 5, 1, 9, 1, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-01-22-01', 1, 5, 1, 9, 1, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-02-01-01', 1, 5, 1, 9, 2, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-02-02-01', 1, 5, 1, 9, 2, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-02-03-01', 1, 5, 1, 9, 2, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-02-04-01', 1, 5, 1, 9, 2, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-02-05-01', 1, 5, 1, 9, 2, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-02-06-01', 1, 5, 1, 9, 2, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-02-07-01', 1, 5, 1, 9, 2, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-02-08-01', 1, 5, 1, 9, 2, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-02-09-01', 1, 5, 1, 9, 2, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-02-10-01', 1, 5, 1, 9, 2, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-02-11-01', 1, 5, 1, 9, 2, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-02-12-01', 1, 5, 1, 9, 2, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-02-13-01', 1, 5, 1, 9, 2, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-02-14-01', 1, 5, 1, 9, 2, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-02-15-01', 1, 5, 1, 9, 2, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-02-16-01', 1, 5, 1, 9, 2, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-02-17-01', 1, 5, 1, 9, 2, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-02-18-01', 1, 5, 1, 9, 2, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-02-19-01', 1, 5, 1, 9, 2, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-02-20-01', 1, 5, 1, 9, 2, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-02-21-01', 1, 5, 1, 9, 2, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-02-22-01', 1, 5, 1, 9, 2, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-03-01-01', 1, 5, 1, 9, 3, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-03-02-01', 1, 5, 1, 9, 3, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-03-03-01', 1, 5, 1, 9, 3, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-03-04-01', 1, 5, 1, 9, 3, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-03-05-01', 1, 5, 1, 9, 3, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-03-06-01', 1, 5, 1, 9, 3, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-03-07-01', 1, 5, 1, 9, 3, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-03-08-01', 1, 5, 1, 9, 3, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-03-09-01', 1, 5, 1, 9, 3, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-03-10-01', 1, 5, 1, 9, 3, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-03-11-01', 1, 5, 1, 9, 3, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-03-12-01', 1, 5, 1, 9, 3, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-03-13-01', 1, 5, 1, 9, 3, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-03-14-01', 1, 5, 1, 9, 3, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-03-15-01', 1, 5, 1, 9, 3, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-03-16-01', 1, 5, 1, 9, 3, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-03-17-01', 1, 5, 1, 9, 3, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-03-18-01', 1, 5, 1, 9, 3, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-03-19-01', 1, 5, 1, 9, 3, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-03-20-01', 1, 5, 1, 9, 3, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-03-21-01', 1, 5, 1, 9, 3, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-03-22-01', 1, 5, 1, 9, 3, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-04-01-01', 1, 5, 1, 9, 4, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-04-02-01', 1, 5, 1, 9, 4, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-04-03-01', 1, 5, 1, 9, 4, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-04-04-01', 1, 5, 1, 9, 4, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-04-05-01', 1, 5, 1, 9, 4, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-04-06-01', 1, 5, 1, 9, 4, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-04-07-01', 1, 5, 1, 9, 4, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-04-08-01', 1, 5, 1, 9, 4, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-04-09-01', 1, 5, 1, 9, 4, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-04-10-01', 1, 5, 1, 9, 4, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-04-11-01', 1, 5, 1, 9, 4, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-04-12-01', 1, 5, 1, 9, 4, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-04-13-01', 1, 5, 1, 9, 4, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-04-14-01', 1, 5, 1, 9, 4, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-04-15-01', 1, 5, 1, 9, 4, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-04-16-01', 1, 5, 1, 9, 4, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-04-17-01', 1, 5, 1, 9, 4, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-04-18-01', 1, 5, 1, 9, 4, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-04-19-01', 1, 5, 1, 9, 4, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-04-20-01', 1, 5, 1, 9, 4, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-04-21-01', 1, 5, 1, 9, 4, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-04-22-01', 1, 5, 1, 9, 4, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-05-01-01', 1, 5, 1, 9, 5, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-05-02-01', 1, 5, 1, 9, 5, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-05-03-01', 1, 5, 1, 9, 5, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-05-04-01', 1, 5, 1, 9, 5, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-05-05-01', 1, 5, 1, 9, 5, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-05-06-01', 1, 5, 1, 9, 5, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-05-07-01', 1, 5, 1, 9, 5, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-05-08-01', 1, 5, 1, 9, 5, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-05-09-01', 1, 5, 1, 9, 5, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-05-10-01', 1, 5, 1, 9, 5, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-05-11-01', 1, 5, 1, 9, 5, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-05-12-01', 1, 5, 1, 9, 5, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-05-13-01', 1, 5, 1, 9, 5, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-05-14-01', 1, 5, 1, 9, 5, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-05-15-01', 1, 5, 1, 9, 5, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-05-16-01', 1, 5, 1, 9, 5, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-05-17-01', 1, 5, 1, 9, 5, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-05-18-01', 1, 5, 1, 9, 5, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-05-19-01', 1, 5, 1, 9, 5, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-05-20-01', 1, 5, 1, 9, 5, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-05-21-01', 1, 5, 1, 9, 5, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-05-22-01', 1, 5, 1, 9, 5, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-06-01-01', 1, 5, 1, 9, 6, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-06-02-01', 1, 5, 1, 9, 6, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-06-03-01', 1, 5, 1, 9, 6, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-06-04-01', 1, 5, 1, 9, 6, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-06-05-01', 1, 5, 1, 9, 6, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-06-06-01', 1, 5, 1, 9, 6, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-06-07-01', 1, 5, 1, 9, 6, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-06-08-01', 1, 5, 1, 9, 6, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-06-09-01', 1, 5, 1, 9, 6, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-06-10-01', 1, 5, 1, 9, 6, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-06-11-01', 1, 5, 1, 9, 6, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-06-12-01', 1, 5, 1, 9, 6, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-06-13-01', 1, 5, 1, 9, 6, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-06-14-01', 1, 5, 1, 9, 6, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-06-15-01', 1, 5, 1, 9, 6, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-06-16-01', 1, 5, 1, 9, 6, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-06-17-01', 1, 5, 1, 9, 6, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-06-18-01', 1, 5, 1, 9, 6, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-06-19-01', 1, 5, 1, 9, 6, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-06-20-01', 1, 5, 1, 9, 6, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-06-21-01', 1, 5, 1, 9, 6, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-06-22-01', 1, 5, 1, 9, 6, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-07-01-01', 1, 5, 1, 9, 7, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-07-02-01', 1, 5, 1, 9, 7, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-07-03-01', 1, 5, 1, 9, 7, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-07-04-01', 1, 5, 1, 9, 7, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-07-05-01', 1, 5, 1, 9, 7, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-07-06-01', 1, 5, 1, 9, 7, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-07-07-01', 1, 5, 1, 9, 7, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-07-08-01', 1, 5, 1, 9, 7, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-07-09-01', 1, 5, 1, 9, 7, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-07-10-01', 1, 5, 1, 9, 7, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-07-11-01', 1, 5, 1, 9, 7, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-07-12-01', 1, 5, 1, 9, 7, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-07-13-01', 1, 5, 1, 9, 7, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-07-14-01', 1, 5, 1, 9, 7, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-07-15-01', 1, 5, 1, 9, 7, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-07-16-01', 1, 5, 1, 9, 7, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-07-17-01', 1, 5, 1, 9, 7, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-07-18-01', 1, 5, 1, 9, 7, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-07-19-01', 1, 5, 1, 9, 7, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-07-20-01', 1, 5, 1, 9, 7, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-07-21-01', 1, 5, 1, 9, 7, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-07-22-01', 1, 5, 1, 9, 7, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-08-01-01', 1, 5, 1, 9, 8, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-08-02-01', 1, 5, 1, 9, 8, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-08-03-01', 1, 5, 1, 9, 8, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-08-04-01', 1, 5, 1, 9, 8, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-08-05-01', 1, 5, 1, 9, 8, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-08-06-01', 1, 5, 1, 9, 8, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-08-07-01', 1, 5, 1, 9, 8, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-08-08-01', 1, 5, 1, 9, 8, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-08-09-01', 1, 5, 1, 9, 8, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-08-10-01', 1, 5, 1, 9, 8, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-08-11-01', 1, 5, 1, 9, 8, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-08-12-01', 1, 5, 1, 9, 8, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-08-13-01', 1, 5, 1, 9, 8, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-08-14-01', 1, 5, 1, 9, 8, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-08-15-01', 1, 5, 1, 9, 8, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-08-16-01', 1, 5, 1, 9, 8, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-08-17-01', 1, 5, 1, 9, 8, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-08-18-01', 1, 5, 1, 9, 8, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-08-19-01', 1, 5, 1, 9, 8, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-08-20-01', 1, 5, 1, 9, 8, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-08-21-01', 1, 5, 1, 9, 8, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-08-22-01', 1, 5, 1, 9, 8, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-09-01-01', 1, 5, 1, 9, 9, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-09-02-01', 1, 5, 1, 9, 9, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-09-03-01', 1, 5, 1, 9, 9, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-09-04-01', 1, 5, 1, 9, 9, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-09-05-01', 1, 5, 1, 9, 9, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-09-06-01', 1, 5, 1, 9, 9, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-09-07-01', 1, 5, 1, 9, 9, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-09-08-01', 1, 5, 1, 9, 9, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-09-09-01', 1, 5, 1, 9, 9, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-09-10-01', 1, 5, 1, 9, 9, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-09-11-01', 1, 5, 1, 9, 9, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-09-12-01', 1, 5, 1, 9, 9, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-09-13-01', 1, 5, 1, 9, 9, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-09-14-01', 1, 5, 1, 9, 9, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-09-15-01', 1, 5, 1, 9, 9, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-09-16-01', 1, 5, 1, 9, 9, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-09-17-01', 1, 5, 1, 9, 9, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-09-18-01', 1, 5, 1, 9, 9, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-09-19-01', 1, 5, 1, 9, 9, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-09-20-01', 1, 5, 1, 9, 9, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-09-21-01', 1, 5, 1, 9, 9, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-09-22-01', 1, 5, 1, 9, 9, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-10-01-01', 1, 5, 1, 9, 10, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-10-02-01', 1, 5, 1, 9, 10, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-10-03-01', 1, 5, 1, 9, 10, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-10-04-01', 1, 5, 1, 9, 10, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-10-05-01', 1, 5, 1, 9, 10, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-10-06-01', 1, 5, 1, 9, 10, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-10-07-01', 1, 5, 1, 9, 10, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-10-08-01', 1, 5, 1, 9, 10, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-10-09-01', 1, 5, 1, 9, 10, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-10-10-01', 1, 5, 1, 9, 10, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-10-11-01', 1, 5, 1, 9, 10, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-10-12-01', 1, 5, 1, 9, 10, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-10-13-01', 1, 5, 1, 9, 10, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-10-14-01', 1, 5, 1, 9, 10, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-10-15-01', 1, 5, 1, 9, 10, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-10-16-01', 1, 5, 1, 9, 10, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-10-17-01', 1, 5, 1, 9, 10, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-10-18-01', 1, 5, 1, 9, 10, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-10-19-01', 1, 5, 1, 9, 10, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-10-20-01', 1, 5, 1, 9, 10, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-10-21-01', 1, 5, 1, 9, 10, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-10-22-01', 1, 5, 1, 9, 10, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-11-01-01', 1, 5, 1, 9, 11, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-11-02-01', 1, 5, 1, 9, 11, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-11-03-01', 1, 5, 1, 9, 11, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-11-04-01', 1, 5, 1, 9, 11, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-11-05-01', 1, 5, 1, 9, 11, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-11-06-01', 1, 5, 1, 9, 11, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-11-07-01', 1, 5, 1, 9, 11, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-11-08-01', 1, 5, 1, 9, 11, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-11-09-01', 1, 5, 1, 9, 11, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-11-10-01', 1, 5, 1, 9, 11, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-11-11-01', 1, 5, 1, 9, 11, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-11-12-01', 1, 5, 1, 9, 11, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-11-13-01', 1, 5, 1, 9, 11, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-11-14-01', 1, 5, 1, 9, 11, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-11-15-01', 1, 5, 1, 9, 11, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-11-16-01', 1, 5, 1, 9, 11, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-11-17-01', 1, 5, 1, 9, 11, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-11-18-01', 1, 5, 1, 9, 11, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-11-19-01', 1, 5, 1, 9, 11, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-11-20-01', 1, 5, 1, 9, 11, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-11-21-01', 1, 5, 1, 9, 11, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-11-22-01', 1, 5, 1, 9, 11, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-12-01-01', 1, 5, 1, 9, 12, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-12-02-01', 1, 5, 1, 9, 12, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-12-03-01', 1, 5, 1, 9, 12, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-12-04-01', 1, 5, 1, 9, 12, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-12-05-01', 1, 5, 1, 9, 12, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-12-06-01', 1, 5, 1, 9, 12, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-12-07-01', 1, 5, 1, 9, 12, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-12-08-01', 1, 5, 1, 9, 12, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-12-09-01', 1, 5, 1, 9, 12, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-12-10-01', 1, 5, 1, 9, 12, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-12-11-01', 1, 5, 1, 9, 12, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-12-12-01', 1, 5, 1, 9, 12, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-12-13-01', 1, 5, 1, 9, 12, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-12-14-01', 1, 5, 1, 9, 12, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-12-15-01', 1, 5, 1, 9, 12, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-12-16-01', 1, 5, 1, 9, 12, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-12-17-01', 1, 5, 1, 9, 12, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-12-18-01', 1, 5, 1, 9, 12, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-12-19-01', 1, 5, 1, 9, 12, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-12-20-01', 1, 5, 1, 9, 12, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-12-21-01', 1, 5, 1, 9, 12, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-12-22-01', 1, 5, 1, 9, 12, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-13-01-01', 1, 5, 1, 9, 13, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-13-02-01', 1, 5, 1, 9, 13, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-13-03-01', 1, 5, 1, 9, 13, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-13-04-01', 1, 5, 1, 9, 13, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-13-05-01', 1, 5, 1, 9, 13, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-13-06-01', 1, 5, 1, 9, 13, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-13-07-01', 1, 5, 1, 9, 13, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-13-08-01', 1, 5, 1, 9, 13, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-13-09-01', 1, 5, 1, 9, 13, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-13-10-01', 1, 5, 1, 9, 13, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-13-11-01', 1, 5, 1, 9, 13, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-13-12-01', 1, 5, 1, 9, 13, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-13-13-01', 1, 5, 1, 9, 13, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-13-14-01', 1, 5, 1, 9, 13, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-13-15-01', 1, 5, 1, 9, 13, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-13-16-01', 1, 5, 1, 9, 13, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-13-17-01', 1, 5, 1, 9, 13, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-13-18-01', 1, 5, 1, 9, 13, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-13-19-01', 1, 5, 1, 9, 13, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-13-20-01', 1, 5, 1, 9, 13, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-13-21-01', 1, 5, 1, 9, 13, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-13-22-01', 1, 5, 1, 9, 13, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-14-01-01', 1, 5, 1, 9, 14, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-14-02-01', 1, 5, 1, 9, 14, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-14-03-01', 1, 5, 1, 9, 14, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-14-04-01', 1, 5, 1, 9, 14, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-14-05-01', 1, 5, 1, 9, 14, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-14-06-01', 1, 5, 1, 9, 14, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-14-07-01', 1, 5, 1, 9, 14, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-14-08-01', 1, 5, 1, 9, 14, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-14-09-01', 1, 5, 1, 9, 14, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-14-10-01', 1, 5, 1, 9, 14, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-14-11-01', 1, 5, 1, 9, 14, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-14-12-01', 1, 5, 1, 9, 14, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-14-13-01', 1, 5, 1, 9, 14, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-14-14-01', 1, 5, 1, 9, 14, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-14-15-01', 1, 5, 1, 9, 14, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-14-16-01', 1, 5, 1, 9, 14, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-14-17-01', 1, 5, 1, 9, 14, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-14-18-01', 1, 5, 1, 9, 14, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-14-19-01', 1, 5, 1, 9, 14, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-14-20-01', 1, 5, 1, 9, 14, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-14-21-01', 1, 5, 1, 9, 14, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-14-22-01', 1, 5, 1, 9, 14, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-15-01-01', 1, 5, 1, 9, 15, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-15-02-01', 1, 5, 1, 9, 15, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-15-03-01', 1, 5, 1, 9, 15, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-15-04-01', 1, 5, 1, 9, 15, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-15-05-01', 1, 5, 1, 9, 15, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-15-06-01', 1, 5, 1, 9, 15, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-15-07-01', 1, 5, 1, 9, 15, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-15-08-01', 1, 5, 1, 9, 15, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-15-09-01', 1, 5, 1, 9, 15, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-15-10-01', 1, 5, 1, 9, 15, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-15-11-01', 1, 5, 1, 9, 15, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-15-12-01', 1, 5, 1, 9, 15, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-15-13-01', 1, 5, 1, 9, 15, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-15-14-01', 1, 5, 1, 9, 15, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-15-15-01', 1, 5, 1, 9, 15, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-15-16-01', 1, 5, 1, 9, 15, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-15-17-01', 1, 5, 1, 9, 15, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-15-18-01', 1, 5, 1, 9, 15, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-15-19-01', 1, 5, 1, 9, 15, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-15-20-01', 1, 5, 1, 9, 15, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-15-21-01', 1, 5, 1, 9, 15, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-15-22-01', 1, 5, 1, 9, 15, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-16-01-01', 1, 5, 1, 9, 16, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-16-02-01', 1, 5, 1, 9, 16, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-16-03-01', 1, 5, 1, 9, 16, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-16-04-01', 1, 5, 1, 9, 16, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-16-05-01', 1, 5, 1, 9, 16, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-16-06-01', 1, 5, 1, 9, 16, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-16-07-01', 1, 5, 1, 9, 16, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-16-08-01', 1, 5, 1, 9, 16, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-16-09-01', 1, 5, 1, 9, 16, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-16-10-01', 1, 5, 1, 9, 16, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-16-11-01', 1, 5, 1, 9, 16, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-16-12-01', 1, 5, 1, 9, 16, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-16-13-01', 1, 5, 1, 9, 16, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-16-14-01', 1, 5, 1, 9, 16, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-16-15-01', 1, 5, 1, 9, 16, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-16-16-01', 1, 5, 1, 9, 16, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-16-17-01', 1, 5, 1, 9, 16, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-16-18-01', 1, 5, 1, 9, 16, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-16-19-01', 1, 5, 1, 9, 16, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-16-20-01', 1, 5, 1, 9, 16, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-16-21-01', 1, 5, 1, 9, 16, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-16-22-01', 1, 5, 1, 9, 16, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-17-01-01', 1, 5, 1, 9, 17, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-17-02-01', 1, 5, 1, 9, 17, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-17-03-01', 1, 5, 1, 9, 17, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-17-04-01', 1, 5, 1, 9, 17, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-17-05-01', 1, 5, 1, 9, 17, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-17-06-01', 1, 5, 1, 9, 17, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-17-07-01', 1, 5, 1, 9, 17, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-17-08-01', 1, 5, 1, 9, 17, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-17-09-01', 1, 5, 1, 9, 17, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-17-10-01', 1, 5, 1, 9, 17, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-17-11-01', 1, 5, 1, 9, 17, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-17-12-01', 1, 5, 1, 9, 17, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-17-13-01', 1, 5, 1, 9, 17, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-17-14-01', 1, 5, 1, 9, 17, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-17-15-01', 1, 5, 1, 9, 17, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-17-16-01', 1, 5, 1, 9, 17, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-17-17-01', 1, 5, 1, 9, 17, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-17-18-01', 1, 5, 1, 9, 17, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-17-19-01', 1, 5, 1, 9, 17, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-17-20-01', 1, 5, 1, 9, 17, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-17-21-01', 1, 5, 1, 9, 17, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-17-22-01', 1, 5, 1, 9, 17, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-18-01-01', 1, 5, 1, 9, 18, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-18-02-01', 1, 5, 1, 9, 18, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-18-03-01', 1, 5, 1, 9, 18, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-18-04-01', 1, 5, 1, 9, 18, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-18-05-01', 1, 5, 1, 9, 18, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-18-06-01', 1, 5, 1, 9, 18, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-18-07-01', 1, 5, 1, 9, 18, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-18-08-01', 1, 5, 1, 9, 18, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-18-09-01', 1, 5, 1, 9, 18, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-18-10-01', 1, 5, 1, 9, 18, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-18-11-01', 1, 5, 1, 9, 18, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-18-12-01', 1, 5, 1, 9, 18, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-18-13-01', 1, 5, 1, 9, 18, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-18-14-01', 1, 5, 1, 9, 18, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-18-15-01', 1, 5, 1, 9, 18, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-18-16-01', 1, 5, 1, 9, 18, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-18-17-01', 1, 5, 1, 9, 18, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-18-18-01', 1, 5, 1, 9, 18, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-18-19-01', 1, 5, 1, 9, 18, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-18-20-01', 1, 5, 1, 9, 18, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-18-21-01', 1, 5, 1, 9, 18, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-18-22-01', 1, 5, 1, 9, 18, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-19-01-01', 1, 5, 1, 9, 19, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-19-02-01', 1, 5, 1, 9, 19, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-19-03-01', 1, 5, 1, 9, 19, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-19-04-01', 1, 5, 1, 9, 19, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-19-05-01', 1, 5, 1, 9, 19, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-19-06-01', 1, 5, 1, 9, 19, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-19-07-01', 1, 5, 1, 9, 19, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-19-08-01', 1, 5, 1, 9, 19, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-19-09-01', 1, 5, 1, 9, 19, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-19-10-01', 1, 5, 1, 9, 19, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-19-11-01', 1, 5, 1, 9, 19, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-19-12-01', 1, 5, 1, 9, 19, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-19-13-01', 1, 5, 1, 9, 19, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-19-14-01', 1, 5, 1, 9, 19, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-19-15-01', 1, 5, 1, 9, 19, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-19-16-01', 1, 5, 1, 9, 19, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-19-17-01', 1, 5, 1, 9, 19, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-19-18-01', 1, 5, 1, 9, 19, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-19-19-01', 1, 5, 1, 9, 19, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-19-20-01', 1, 5, 1, 9, 19, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-19-21-01', 1, 5, 1, 9, 19, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-19-22-01', 1, 5, 1, 9, 19, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-20-01-01', 1, 5, 1, 9, 20, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-20-02-01', 1, 5, 1, 9, 20, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-20-03-01', 1, 5, 1, 9, 20, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-20-04-01', 1, 5, 1, 9, 20, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-20-05-01', 1, 5, 1, 9, 20, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-20-06-01', 1, 5, 1, 9, 20, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-20-07-01', 1, 5, 1, 9, 20, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-20-08-01', 1, 5, 1, 9, 20, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-20-09-01', 1, 5, 1, 9, 20, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-20-10-01', 1, 5, 1, 9, 20, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-20-11-01', 1, 5, 1, 9, 20, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-20-12-01', 1, 5, 1, 9, 20, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-20-13-01', 1, 5, 1, 9, 20, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-20-14-01', 1, 5, 1, 9, 20, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-20-15-01', 1, 5, 1, 9, 20, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-20-16-01', 1, 5, 1, 9, 20, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-20-17-01', 1, 5, 1, 9, 20, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-20-18-01', 1, 5, 1, 9, 20, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-20-19-01', 1, 5, 1, 9, 20, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-20-20-01', 1, 5, 1, 9, 20, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-20-21-01', 1, 5, 1, 9, 20, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-20-22-01', 1, 5, 1, 9, 20, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-21-01-01', 1, 5, 1, 9, 21, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-21-02-01', 1, 5, 1, 9, 21, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-21-03-01', 1, 5, 1, 9, 21, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-21-04-01', 1, 5, 1, 9, 21, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-21-05-01', 1, 5, 1, 9, 21, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-21-06-01', 1, 5, 1, 9, 21, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-21-07-01', 1, 5, 1, 9, 21, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-21-08-01', 1, 5, 1, 9, 21, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-21-09-01', 1, 5, 1, 9, 21, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-21-10-01', 1, 5, 1, 9, 21, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-21-11-01', 1, 5, 1, 9, 21, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-21-12-01', 1, 5, 1, 9, 21, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-21-13-01', 1, 5, 1, 9, 21, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-21-14-01', 1, 5, 1, 9, 21, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-21-15-01', 1, 5, 1, 9, 21, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-21-16-01', 1, 5, 1, 9, 21, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-21-17-01', 1, 5, 1, 9, 21, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-21-18-01', 1, 5, 1, 9, 21, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-21-19-01', 1, 5, 1, 9, 21, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-21-20-01', 1, 5, 1, 9, 21, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-21-21-01', 1, 5, 1, 9, 21, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-21-22-01', 1, 5, 1, 9, 21, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-22-01-01', 1, 5, 1, 9, 22, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-22-02-01', 1, 5, 1, 9, 22, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-22-03-01', 1, 5, 1, 9, 22, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-22-04-01', 1, 5, 1, 9, 22, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-22-05-01', 1, 5, 1, 9, 22, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-22-06-01', 1, 5, 1, 9, 22, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-22-07-01', 1, 5, 1, 9, 22, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-22-08-01', 1, 5, 1, 9, 22, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-22-09-01', 1, 5, 1, 9, 22, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-22-10-01', 1, 5, 1, 9, 22, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-22-11-01', 1, 5, 1, 9, 22, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-22-12-01', 1, 5, 1, 9, 22, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-22-13-01', 1, 5, 1, 9, 22, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-22-14-01', 1, 5, 1, 9, 22, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-22-15-01', 1, 5, 1, 9, 22, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-22-16-01', 1, 5, 1, 9, 22, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-22-17-01', 1, 5, 1, 9, 22, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-22-18-01', 1, 5, 1, 9, 22, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-22-19-01', 1, 5, 1, 9, 22, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-22-20-01', 1, 5, 1, 9, 22, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-22-21-01', 1, 5, 1, 9, 22, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-22-22-01', 1, 5, 1, 9, 22, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-23-01-01', 1, 5, 1, 9, 23, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-23-02-01', 1, 5, 1, 9, 23, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-23-03-01', 1, 5, 1, 9, 23, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-23-04-01', 1, 5, 1, 9, 23, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-23-05-01', 1, 5, 1, 9, 23, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-23-06-01', 1, 5, 1, 9, 23, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-23-07-01', 1, 5, 1, 9, 23, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-23-08-01', 1, 5, 1, 9, 23, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-23-09-01', 1, 5, 1, 9, 23, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-23-10-01', 1, 5, 1, 9, 23, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-23-11-01', 1, 5, 1, 9, 23, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-23-12-01', 1, 5, 1, 9, 23, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-23-13-01', 1, 5, 1, 9, 23, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-23-14-01', 1, 5, 1, 9, 23, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-23-15-01', 1, 5, 1, 9, 23, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-23-16-01', 1, 5, 1, 9, 23, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-23-17-01', 1, 5, 1, 9, 23, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-23-18-01', 1, 5, 1, 9, 23, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-23-19-01', 1, 5, 1, 9, 23, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-23-20-01', 1, 5, 1, 9, 23, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-23-21-01', 1, 5, 1, 9, 23, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-23-22-01', 1, 5, 1, 9, 23, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-24-01-01', 1, 5, 1, 9, 24, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-24-02-01', 1, 5, 1, 9, 24, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-24-03-01', 1, 5, 1, 9, 24, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-24-04-01', 1, 5, 1, 9, 24, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-24-05-01', 1, 5, 1, 9, 24, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-24-06-01', 1, 5, 1, 9, 24, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-24-07-01', 1, 5, 1, 9, 24, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-24-08-01', 1, 5, 1, 9, 24, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-24-09-01', 1, 5, 1, 9, 24, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-24-10-01', 1, 5, 1, 9, 24, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-24-11-01', 1, 5, 1, 9, 24, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-24-12-01', 1, 5, 1, 9, 24, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-24-13-01', 1, 5, 1, 9, 24, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-24-14-01', 1, 5, 1, 9, 24, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-24-15-01', 1, 5, 1, 9, 24, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-24-16-01', 1, 5, 1, 9, 24, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-24-17-01', 1, 5, 1, 9, 24, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-24-18-01', 1, 5, 1, 9, 24, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-24-19-01', 1, 5, 1, 9, 24, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-24-20-01', 1, 5, 1, 9, 24, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-24-21-01', 1, 5, 1, 9, 24, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-24-22-01', 1, 5, 1, 9, 24, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-25-01-01', 1, 5, 1, 9, 25, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-25-02-01', 1, 5, 1, 9, 25, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-25-03-01', 1, 5, 1, 9, 25, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-25-04-01', 1, 5, 1, 9, 25, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-25-05-01', 1, 5, 1, 9, 25, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-25-06-01', 1, 5, 1, 9, 25, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-25-07-01', 1, 5, 1, 9, 25, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-25-08-01', 1, 5, 1, 9, 25, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-25-09-01', 1, 5, 1, 9, 25, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-25-10-01', 1, 5, 1, 9, 25, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-25-11-01', 1, 5, 1, 9, 25, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-25-12-01', 1, 5, 1, 9, 25, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-25-13-01', 1, 5, 1, 9, 25, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-25-14-01', 1, 5, 1, 9, 25, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-25-15-01', 1, 5, 1, 9, 25, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-25-16-01', 1, 5, 1, 9, 25, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-25-17-01', 1, 5, 1, 9, 25, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-25-18-01', 1, 5, 1, 9, 25, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-25-19-01', 1, 5, 1, 9, 25, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-25-20-01', 1, 5, 1, 9, 25, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-25-21-01', 1, 5, 1, 9, 25, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-25-22-01', 1, 5, 1, 9, 25, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-26-01-01', 1, 5, 1, 9, 26, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-26-02-01', 1, 5, 1, 9, 26, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-26-03-01', 1, 5, 1, 9, 26, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-26-04-01', 1, 5, 1, 9, 26, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-26-05-01', 1, 5, 1, 9, 26, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-26-06-01', 1, 5, 1, 9, 26, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-26-07-01', 1, 5, 1, 9, 26, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-26-08-01', 1, 5, 1, 9, 26, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-26-09-01', 1, 5, 1, 9, 26, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-26-10-01', 1, 5, 1, 9, 26, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-26-11-01', 1, 5, 1, 9, 26, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-26-12-01', 1, 5, 1, 9, 26, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-26-13-01', 1, 5, 1, 9, 26, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-26-14-01', 1, 5, 1, 9, 26, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-26-15-01', 1, 5, 1, 9, 26, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-26-16-01', 1, 5, 1, 9, 26, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-26-17-01', 1, 5, 1, 9, 26, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-26-18-01', 1, 5, 1, 9, 26, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-26-19-01', 1, 5, 1, 9, 26, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-26-20-01', 1, 5, 1, 9, 26, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-26-21-01', 1, 5, 1, 9, 26, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-26-22-01', 1, 5, 1, 9, 26, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-27-01-01', 1, 5, 1, 9, 27, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-27-02-01', 1, 5, 1, 9, 27, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-27-03-01', 1, 5, 1, 9, 27, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-27-04-01', 1, 5, 1, 9, 27, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-27-05-01', 1, 5, 1, 9, 27, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-27-06-01', 1, 5, 1, 9, 27, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-27-07-01', 1, 5, 1, 9, 27, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-27-08-01', 1, 5, 1, 9, 27, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-27-09-01', 1, 5, 1, 9, 27, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-27-10-01', 1, 5, 1, 9, 27, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-27-11-01', 1, 5, 1, 9, 27, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-27-12-01', 1, 5, 1, 9, 27, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-27-13-01', 1, 5, 1, 9, 27, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-27-14-01', 1, 5, 1, 9, 27, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-27-15-01', 1, 5, 1, 9, 27, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-27-16-01', 1, 5, 1, 9, 27, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-27-17-01', 1, 5, 1, 9, 27, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-27-18-01', 1, 5, 1, 9, 27, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-27-19-01', 1, 5, 1, 9, 27, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-27-20-01', 1, 5, 1, 9, 27, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-27-21-01', 1, 5, 1, 9, 27, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-27-22-01', 1, 5, 1, 9, 27, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-28-01-01', 1, 5, 1, 9, 28, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-28-02-01', 1, 5, 1, 9, 28, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-28-03-01', 1, 5, 1, 9, 28, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-28-04-01', 1, 5, 1, 9, 28, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-28-05-01', 1, 5, 1, 9, 28, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-28-06-01', 1, 5, 1, 9, 28, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-28-07-01', 1, 5, 1, 9, 28, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-28-08-01', 1, 5, 1, 9, 28, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-28-09-01', 1, 5, 1, 9, 28, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-28-10-01', 1, 5, 1, 9, 28, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-28-11-01', 1, 5, 1, 9, 28, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-28-12-01', 1, 5, 1, 9, 28, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-28-13-01', 1, 5, 1, 9, 28, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-28-14-01', 1, 5, 1, 9, 28, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-28-15-01', 1, 5, 1, 9, 28, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-28-16-01', 1, 5, 1, 9, 28, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-28-17-01', 1, 5, 1, 9, 28, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-28-18-01', 1, 5, 1, 9, 28, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-28-19-01', 1, 5, 1, 9, 28, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-28-20-01', 1, 5, 1, 9, 28, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-28-21-01', 1, 5, 1, 9, 28, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-28-22-01', 1, 5, 1, 9, 28, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-29-01-01', 1, 5, 1, 9, 29, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-29-02-01', 1, 5, 1, 9, 29, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-29-03-01', 1, 5, 1, 9, 29, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-29-04-01', 1, 5, 1, 9, 29, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-29-05-01', 1, 5, 1, 9, 29, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-29-06-01', 1, 5, 1, 9, 29, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-29-07-01', 1, 5, 1, 9, 29, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-29-08-01', 1, 5, 1, 9, 29, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-29-09-01', 1, 5, 1, 9, 29, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-29-10-01', 1, 5, 1, 9, 29, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-29-11-01', 1, 5, 1, 9, 29, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-29-12-01', 1, 5, 1, 9, 29, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-29-13-01', 1, 5, 1, 9, 29, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-29-14-01', 1, 5, 1, 9, 29, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-29-15-01', 1, 5, 1, 9, 29, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-29-16-01', 1, 5, 1, 9, 29, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-29-17-01', 1, 5, 1, 9, 29, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-29-18-01', 1, 5, 1, 9, 29, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-29-19-01', 1, 5, 1, 9, 29, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-29-20-01', 1, 5, 1, 9, 29, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-29-21-01', 1, 5, 1, 9, 29, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-29-22-01', 1, 5, 1, 9, 29, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-30-01-01', 1, 5, 1, 9, 30, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-30-02-01', 1, 5, 1, 9, 30, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-30-03-01', 1, 5, 1, 9, 30, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-30-04-01', 1, 5, 1, 9, 30, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-30-05-01', 1, 5, 1, 9, 30, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-30-06-01', 1, 5, 1, 9, 30, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-30-07-01', 1, 5, 1, 9, 30, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-30-08-01', 1, 5, 1, 9, 30, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-30-09-01', 1, 5, 1, 9, 30, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-30-10-01', 1, 5, 1, 9, 30, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-30-11-01', 1, 5, 1, 9, 30, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-30-12-01', 1, 5, 1, 9, 30, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-30-13-01', 1, 5, 1, 9, 30, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-30-14-01', 1, 5, 1, 9, 30, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-30-15-01', 1, 5, 1, 9, 30, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-30-16-01', 1, 5, 1, 9, 30, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-30-17-01', 1, 5, 1, 9, 30, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-30-18-01', 1, 5, 1, 9, 30, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-30-19-01', 1, 5, 1, 9, 30, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-30-20-01', 1, 5, 1, 9, 30, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-30-21-01', 1, 5, 1, 9, 30, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-30-22-01', 1, 5, 1, 9, 30, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-31-01-01', 1, 5, 1, 9, 31, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-31-02-01', 1, 5, 1, 9, 31, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-31-03-01', 1, 5, 1, 9, 31, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-31-04-01', 1, 5, 1, 9, 31, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-31-05-01', 1, 5, 1, 9, 31, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-31-06-01', 1, 5, 1, 9, 31, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-31-07-01', 1, 5, 1, 9, 31, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-31-08-01', 1, 5, 1, 9, 31, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-31-09-01', 1, 5, 1, 9, 31, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-31-10-01', 1, 5, 1, 9, 31, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-31-11-01', 1, 5, 1, 9, 31, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-31-12-01', 1, 5, 1, 9, 31, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-31-13-01', 1, 5, 1, 9, 31, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-31-14-01', 1, 5, 1, 9, 31, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-31-15-01', 1, 5, 1, 9, 31, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-31-16-01', 1, 5, 1, 9, 31, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-31-17-01', 1, 5, 1, 9, 31, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-31-18-01', 1, 5, 1, 9, 31, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-31-19-01', 1, 5, 1, 9, 31, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-31-20-01', 1, 5, 1, 9, 31, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-31-21-01', 1, 5, 1, 9, 31, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-31-22-01', 1, 5, 1, 9, 31, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-32-01-01', 1, 5, 1, 9, 32, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-32-02-01', 1, 5, 1, 9, 32, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-32-03-01', 1, 5, 1, 9, 32, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-32-04-01', 1, 5, 1, 9, 32, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-32-05-01', 1, 5, 1, 9, 32, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-32-06-01', 1, 5, 1, 9, 32, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-32-07-01', 1, 5, 1, 9, 32, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-32-08-01', 1, 5, 1, 9, 32, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-32-09-01', 1, 5, 1, 9, 32, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-32-10-01', 1, 5, 1, 9, 32, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-32-11-01', 1, 5, 1, 9, 32, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-32-12-01', 1, 5, 1, 9, 32, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-32-13-01', 1, 5, 1, 9, 32, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-32-14-01', 1, 5, 1, 9, 32, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-32-15-01', 1, 5, 1, 9, 32, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-32-16-01', 1, 5, 1, 9, 32, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-32-17-01', 1, 5, 1, 9, 32, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-32-18-01', 1, 5, 1, 9, 32, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-32-19-01', 1, 5, 1, 9, 32, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-32-20-01', 1, 5, 1, 9, 32, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-32-21-01', 1, 5, 1, 9, 32, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-32-22-01', 1, 5, 1, 9, 32, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-33-01-01', 1, 5, 1, 9, 33, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-33-02-01', 1, 5, 1, 9, 33, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-33-03-01', 1, 5, 1, 9, 33, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-33-04-01', 1, 5, 1, 9, 33, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-33-05-01', 1, 5, 1, 9, 33, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-33-06-01', 1, 5, 1, 9, 33, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-33-07-01', 1, 5, 1, 9, 33, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-33-08-01', 1, 5, 1, 9, 33, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-33-09-01', 1, 5, 1, 9, 33, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-33-10-01', 1, 5, 1, 9, 33, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-33-11-01', 1, 5, 1, 9, 33, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-33-12-01', 1, 5, 1, 9, 33, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-33-13-01', 1, 5, 1, 9, 33, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-33-14-01', 1, 5, 1, 9, 33, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-33-15-01', 1, 5, 1, 9, 33, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-33-16-01', 1, 5, 1, 9, 33, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-33-17-01', 1, 5, 1, 9, 33, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-33-18-01', 1, 5, 1, 9, 33, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-33-19-01', 1, 5, 1, 9, 33, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-33-20-01', 1, 5, 1, 9, 33, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-33-21-01', 1, 5, 1, 9, 33, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-33-22-01', 1, 5, 1, 9, 33, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-34-01-01', 1, 5, 1, 9, 34, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-34-02-01', 1, 5, 1, 9, 34, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-34-03-01', 1, 5, 1, 9, 34, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-34-04-01', 1, 5, 1, 9, 34, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-34-05-01', 1, 5, 1, 9, 34, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-34-06-01', 1, 5, 1, 9, 34, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-34-07-01', 1, 5, 1, 9, 34, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-34-08-01', 1, 5, 1, 9, 34, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-34-09-01', 1, 5, 1, 9, 34, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-34-10-01', 1, 5, 1, 9, 34, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-34-11-01', 1, 5, 1, 9, 34, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-34-12-01', 1, 5, 1, 9, 34, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-34-13-01', 1, 5, 1, 9, 34, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-34-14-01', 1, 5, 1, 9, 34, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-34-15-01', 1, 5, 1, 9, 34, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-34-16-01', 1, 5, 1, 9, 34, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-34-17-01', 1, 5, 1, 9, 34, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-34-18-01', 1, 5, 1, 9, 34, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-34-19-01', 1, 5, 1, 9, 34, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-34-20-01', 1, 5, 1, 9, 34, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-34-21-01', 1, 5, 1, 9, 34, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-34-22-01', 1, 5, 1, 9, 34, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-35-01-01', 1, 5, 1, 9, 35, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-35-02-01', 1, 5, 1, 9, 35, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-35-03-01', 1, 5, 1, 9, 35, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-35-04-01', 1, 5, 1, 9, 35, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-35-05-01', 1, 5, 1, 9, 35, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-35-06-01', 1, 5, 1, 9, 35, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-35-07-01', 1, 5, 1, 9, 35, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-35-08-01', 1, 5, 1, 9, 35, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-35-09-01', 1, 5, 1, 9, 35, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-35-10-01', 1, 5, 1, 9, 35, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-35-11-01', 1, 5, 1, 9, 35, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-35-12-01', 1, 5, 1, 9, 35, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-35-13-01', 1, 5, 1, 9, 35, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-35-14-01', 1, 5, 1, 9, 35, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-35-15-01', 1, 5, 1, 9, 35, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-35-16-01', 1, 5, 1, 9, 35, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-35-17-01', 1, 5, 1, 9, 35, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-35-18-01', 1, 5, 1, 9, 35, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-35-19-01', 1, 5, 1, 9, 35, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-35-20-01', 1, 5, 1, 9, 35, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-35-21-01', 1, 5, 1, 9, 35, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-35-22-01', 1, 5, 1, 9, 35, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-36-01-01', 1, 5, 1, 9, 36, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-36-02-01', 1, 5, 1, 9, 36, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-36-03-01', 1, 5, 1, 9, 36, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-36-04-01', 1, 5, 1, 9, 36, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-36-05-01', 1, 5, 1, 9, 36, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-36-06-01', 1, 5, 1, 9, 36, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-36-07-01', 1, 5, 1, 9, 36, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-36-08-01', 1, 5, 1, 9, 36, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-36-09-01', 1, 5, 1, 9, 36, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-36-10-01', 1, 5, 1, 9, 36, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-36-11-01', 1, 5, 1, 9, 36, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-36-12-01', 1, 5, 1, 9, 36, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-36-13-01', 1, 5, 1, 9, 36, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-36-14-01', 1, 5, 1, 9, 36, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-36-15-01', 1, 5, 1, 9, 36, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-36-16-01', 1, 5, 1, 9, 36, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-36-17-01', 1, 5, 1, 9, 36, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-36-18-01', 1, 5, 1, 9, 36, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-36-19-01', 1, 5, 1, 9, 36, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-36-20-01', 1, 5, 1, 9, 36, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-36-21-01', 1, 5, 1, 9, 36, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-36-22-01', 1, 5, 1, 9, 36, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-37-01-01', 1, 5, 1, 9, 37, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-37-02-01', 1, 5, 1, 9, 37, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-37-03-01', 1, 5, 1, 9, 37, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-37-04-01', 1, 5, 1, 9, 37, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-37-05-01', 1, 5, 1, 9, 37, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-37-06-01', 1, 5, 1, 9, 37, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-37-07-01', 1, 5, 1, 9, 37, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-37-08-01', 1, 5, 1, 9, 37, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-37-09-01', 1, 5, 1, 9, 37, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-37-10-01', 1, 5, 1, 9, 37, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-37-11-01', 1, 5, 1, 9, 37, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-37-12-01', 1, 5, 1, 9, 37, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-37-13-01', 1, 5, 1, 9, 37, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-37-14-01', 1, 5, 1, 9, 37, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-37-15-01', 1, 5, 1, 9, 37, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-37-16-01', 1, 5, 1, 9, 37, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-37-17-01', 1, 5, 1, 9, 37, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-37-18-01', 1, 5, 1, 9, 37, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-37-19-01', 1, 5, 1, 9, 37, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-37-20-01', 1, 5, 1, 9, 37, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-37-21-01', 1, 5, 1, 9, 37, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-37-22-01', 1, 5, 1, 9, 37, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-38-01-01', 1, 5, 1, 9, 38, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-38-02-01', 1, 5, 1, 9, 38, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-38-03-01', 1, 5, 1, 9, 38, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-38-04-01', 1, 5, 1, 9, 38, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-38-05-01', 1, 5, 1, 9, 38, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-38-06-01', 1, 5, 1, 9, 38, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-38-07-01', 1, 5, 1, 9, 38, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-38-08-01', 1, 5, 1, 9, 38, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-38-09-01', 1, 5, 1, 9, 38, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-38-10-01', 1, 5, 1, 9, 38, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-38-11-01', 1, 5, 1, 9, 38, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-38-12-01', 1, 5, 1, 9, 38, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-38-13-01', 1, 5, 1, 9, 38, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-38-14-01', 1, 5, 1, 9, 38, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-38-15-01', 1, 5, 1, 9, 38, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-38-16-01', 1, 5, 1, 9, 38, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-38-17-01', 1, 5, 1, 9, 38, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-38-18-01', 1, 5, 1, 9, 38, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-38-19-01', 1, 5, 1, 9, 38, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-38-20-01', 1, 5, 1, 9, 38, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-38-21-01', 1, 5, 1, 9, 38, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-38-22-01', 1, 5, 1, 9, 38, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-39-01-01', 1, 5, 1, 9, 39, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-39-02-01', 1, 5, 1, 9, 39, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-39-03-01', 1, 5, 1, 9, 39, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-39-04-01', 1, 5, 1, 9, 39, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-39-05-01', 1, 5, 1, 9, 39, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-39-06-01', 1, 5, 1, 9, 39, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-39-07-01', 1, 5, 1, 9, 39, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-39-08-01', 1, 5, 1, 9, 39, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-39-09-01', 1, 5, 1, 9, 39, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-39-10-01', 1, 5, 1, 9, 39, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-39-11-01', 1, 5, 1, 9, 39, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-39-12-01', 1, 5, 1, 9, 39, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-39-13-01', 1, 5, 1, 9, 39, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-39-14-01', 1, 5, 1, 9, 39, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-39-15-01', 1, 5, 1, 9, 39, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-39-16-01', 1, 5, 1, 9, 39, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-39-17-01', 1, 5, 1, 9, 39, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-39-18-01', 1, 5, 1, 9, 39, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-39-19-01', 1, 5, 1, 9, 39, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-39-20-01', 1, 5, 1, 9, 39, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-39-21-01', 1, 5, 1, 9, 39, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-39-22-01', 1, 5, 1, 9, 39, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-40-01-01', 1, 5, 1, 9, 40, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-40-02-01', 1, 5, 1, 9, 40, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-40-03-01', 1, 5, 1, 9, 40, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-40-04-01', 1, 5, 1, 9, 40, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-40-05-01', 1, 5, 1, 9, 40, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-40-06-01', 1, 5, 1, 9, 40, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-40-07-01', 1, 5, 1, 9, 40, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-40-08-01', 1, 5, 1, 9, 40, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-40-09-01', 1, 5, 1, 9, 40, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-40-10-01', 1, 5, 1, 9, 40, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-40-11-01', 1, 5, 1, 9, 40, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-40-12-01', 1, 5, 1, 9, 40, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-40-13-01', 1, 5, 1, 9, 40, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-40-14-01', 1, 5, 1, 9, 40, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-40-15-01', 1, 5, 1, 9, 40, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-40-16-01', 1, 5, 1, 9, 40, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-40-17-01', 1, 5, 1, 9, 40, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-40-18-01', 1, 5, 1, 9, 40, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-40-19-01', 1, 5, 1, 9, 40, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-40-20-01', 1, 5, 1, 9, 40, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-40-21-01', 1, 5, 1, 9, 40, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-40-22-01', 1, 5, 1, 9, 40, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-41-01-01', 1, 5, 1, 9, 41, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-41-02-01', 1, 5, 1, 9, 41, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-41-03-01', 1, 5, 1, 9, 41, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-41-04-01', 1, 5, 1, 9, 41, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-41-05-01', 1, 5, 1, 9, 41, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-41-06-01', 1, 5, 1, 9, 41, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-41-07-01', 1, 5, 1, 9, 41, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-41-08-01', 1, 5, 1, 9, 41, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-41-09-01', 1, 5, 1, 9, 41, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-41-10-01', 1, 5, 1, 9, 41, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-41-11-01', 1, 5, 1, 9, 41, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-41-12-01', 1, 5, 1, 9, 41, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-41-13-01', 1, 5, 1, 9, 41, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-41-14-01', 1, 5, 1, 9, 41, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-41-15-01', 1, 5, 1, 9, 41, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-41-16-01', 1, 5, 1, 9, 41, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-41-17-01', 1, 5, 1, 9, 41, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-41-18-01', 1, 5, 1, 9, 41, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-41-19-01', 1, 5, 1, 9, 41, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-41-20-01', 1, 5, 1, 9, 41, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-41-21-01', 1, 5, 1, 9, 41, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-41-22-01', 1, 5, 1, 9, 41, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-42-01-01', 1, 5, 1, 9, 42, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-42-02-01', 1, 5, 1, 9, 42, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-42-03-01', 1, 5, 1, 9, 42, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-42-04-01', 1, 5, 1, 9, 42, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-42-05-01', 1, 5, 1, 9, 42, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-42-06-01', 1, 5, 1, 9, 42, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-42-07-01', 1, 5, 1, 9, 42, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-42-08-01', 1, 5, 1, 9, 42, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-42-09-01', 1, 5, 1, 9, 42, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-42-10-01', 1, 5, 1, 9, 42, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-42-11-01', 1, 5, 1, 9, 42, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-42-12-01', 1, 5, 1, 9, 42, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-42-13-01', 1, 5, 1, 9, 42, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-42-14-01', 1, 5, 1, 9, 42, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-42-15-01', 1, 5, 1, 9, 42, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-42-16-01', 1, 5, 1, 9, 42, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-42-17-01', 1, 5, 1, 9, 42, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-42-18-01', 1, 5, 1, 9, 42, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-42-19-01', 1, 5, 1, 9, 42, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-42-20-01', 1, 5, 1, 9, 42, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-42-21-01', 1, 5, 1, 9, 42, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-42-22-01', 1, 5, 1, 9, 42, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-43-01-01', 1, 5, 1, 9, 43, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-43-02-01', 1, 5, 1, 9, 43, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-43-03-01', 1, 5, 1, 9, 43, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-43-04-01', 1, 5, 1, 9, 43, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-43-05-01', 1, 5, 1, 9, 43, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-43-06-01', 1, 5, 1, 9, 43, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-43-07-01', 1, 5, 1, 9, 43, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-43-08-01', 1, 5, 1, 9, 43, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-43-09-01', 1, 5, 1, 9, 43, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-43-10-01', 1, 5, 1, 9, 43, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-43-11-01', 1, 5, 1, 9, 43, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-43-12-01', 1, 5, 1, 9, 43, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-43-13-01', 1, 5, 1, 9, 43, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-43-14-01', 1, 5, 1, 9, 43, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-43-15-01', 1, 5, 1, 9, 43, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-43-16-01', 1, 5, 1, 9, 43, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-43-17-01', 1, 5, 1, 9, 43, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-43-18-01', 1, 5, 1, 9, 43, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-43-19-01', 1, 5, 1, 9, 43, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-43-20-01', 1, 5, 1, 9, 43, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-43-21-01', 1, 5, 1, 9, 43, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-43-22-01', 1, 5, 1, 9, 43, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-44-01-01', 1, 5, 1, 9, 44, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-44-02-01', 1, 5, 1, 9, 44, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-44-03-01', 1, 5, 1, 9, 44, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-44-04-01', 1, 5, 1, 9, 44, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-44-05-01', 1, 5, 1, 9, 44, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-44-06-01', 1, 5, 1, 9, 44, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-44-07-01', 1, 5, 1, 9, 44, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-44-08-01', 1, 5, 1, 9, 44, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-44-09-01', 1, 5, 1, 9, 44, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-44-10-01', 1, 5, 1, 9, 44, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-44-11-01', 1, 5, 1, 9, 44, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-44-12-01', 1, 5, 1, 9, 44, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-44-13-01', 1, 5, 1, 9, 44, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-44-14-01', 1, 5, 1, 9, 44, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-44-15-01', 1, 5, 1, 9, 44, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-44-16-01', 1, 5, 1, 9, 44, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-44-17-01', 1, 5, 1, 9, 44, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-44-18-01', 1, 5, 1, 9, 44, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-44-19-01', 1, 5, 1, 9, 44, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-44-20-01', 1, 5, 1, 9, 44, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-44-21-01', 1, 5, 1, 9, 44, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-44-22-01', 1, 5, 1, 9, 44, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-45-01-01', 1, 5, 1, 9, 45, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-45-02-01', 1, 5, 1, 9, 45, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-45-03-01', 1, 5, 1, 9, 45, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-45-04-01', 1, 5, 1, 9, 45, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-45-05-01', 1, 5, 1, 9, 45, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-45-06-01', 1, 5, 1, 9, 45, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-45-07-01', 1, 5, 1, 9, 45, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-45-08-01', 1, 5, 1, 9, 45, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-45-09-01', 1, 5, 1, 9, 45, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-45-10-01', 1, 5, 1, 9, 45, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-45-11-01', 1, 5, 1, 9, 45, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-45-12-01', 1, 5, 1, 9, 45, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-45-13-01', 1, 5, 1, 9, 45, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-45-14-01', 1, 5, 1, 9, 45, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-45-15-01', 1, 5, 1, 9, 45, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-45-16-01', 1, 5, 1, 9, 45, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-45-17-01', 1, 5, 1, 9, 45, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-45-18-01', 1, 5, 1, 9, 45, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-45-19-01', 1, 5, 1, 9, 45, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-45-20-01', 1, 5, 1, 9, 45, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-45-21-01', 1, 5, 1, 9, 45, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-45-22-01', 1, 5, 1, 9, 45, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-46-01-01', 1, 5, 1, 9, 46, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-46-02-01', 1, 5, 1, 9, 46, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-46-03-01', 1, 5, 1, 9, 46, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-46-04-01', 1, 5, 1, 9, 46, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-46-05-01', 1, 5, 1, 9, 46, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-46-06-01', 1, 5, 1, 9, 46, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-46-07-01', 1, 5, 1, 9, 46, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-46-08-01', 1, 5, 1, 9, 46, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-46-09-01', 1, 5, 1, 9, 46, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-46-10-01', 1, 5, 1, 9, 46, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-46-11-01', 1, 5, 1, 9, 46, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-46-12-01', 1, 5, 1, 9, 46, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-46-13-01', 1, 5, 1, 9, 46, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-46-14-01', 1, 5, 1, 9, 46, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-46-15-01', 1, 5, 1, 9, 46, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-46-16-01', 1, 5, 1, 9, 46, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-46-17-01', 1, 5, 1, 9, 46, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-46-18-01', 1, 5, 1, 9, 46, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-46-19-01', 1, 5, 1, 9, 46, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-46-20-01', 1, 5, 1, 9, 46, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-46-21-01', 1, 5, 1, 9, 46, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-46-22-01', 1, 5, 1, 9, 46, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-47-01-01', 1, 5, 1, 9, 47, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-47-02-01', 1, 5, 1, 9, 47, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-47-03-01', 1, 5, 1, 9, 47, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-47-04-01', 1, 5, 1, 9, 47, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-47-05-01', 1, 5, 1, 9, 47, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-47-06-01', 1, 5, 1, 9, 47, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-47-07-01', 1, 5, 1, 9, 47, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-47-08-01', 1, 5, 1, 9, 47, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-47-09-01', 1, 5, 1, 9, 47, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-47-10-01', 1, 5, 1, 9, 47, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-47-11-01', 1, 5, 1, 9, 47, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-47-12-01', 1, 5, 1, 9, 47, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-47-13-01', 1, 5, 1, 9, 47, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-47-14-01', 1, 5, 1, 9, 47, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-47-15-01', 1, 5, 1, 9, 47, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-47-16-01', 1, 5, 1, 9, 47, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-47-17-01', 1, 5, 1, 9, 47, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-47-18-01', 1, 5, 1, 9, 47, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-47-19-01', 1, 5, 1, 9, 47, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-47-20-01', 1, 5, 1, 9, 47, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-47-21-01', 1, 5, 1, 9, 47, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-47-22-01', 1, 5, 1, 9, 47, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-48-01-01', 1, 5, 1, 9, 48, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-48-02-01', 1, 5, 1, 9, 48, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-48-03-01', 1, 5, 1, 9, 48, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-48-04-01', 1, 5, 1, 9, 48, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-48-05-01', 1, 5, 1, 9, 48, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-48-06-01', 1, 5, 1, 9, 48, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-48-07-01', 1, 5, 1, 9, 48, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-48-08-01', 1, 5, 1, 9, 48, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-48-09-01', 1, 5, 1, 9, 48, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-48-10-01', 1, 5, 1, 9, 48, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-48-11-01', 1, 5, 1, 9, 48, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-48-12-01', 1, 5, 1, 9, 48, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-48-13-01', 1, 5, 1, 9, 48, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-48-14-01', 1, 5, 1, 9, 48, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-48-15-01', 1, 5, 1, 9, 48, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-48-16-01', 1, 5, 1, 9, 48, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-48-17-01', 1, 5, 1, 9, 48, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-48-18-01', 1, 5, 1, 9, 48, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-48-19-01', 1, 5, 1, 9, 48, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-48-20-01', 1, 5, 1, 9, 48, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-48-21-01', 1, 5, 1, 9, 48, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-48-22-01', 1, 5, 1, 9, 48, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-49-01-01', 1, 5, 1, 9, 49, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-49-02-01', 1, 5, 1, 9, 49, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-49-03-01', 1, 5, 1, 9, 49, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-49-04-01', 1, 5, 1, 9, 49, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-49-05-01', 1, 5, 1, 9, 49, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-49-06-01', 1, 5, 1, 9, 49, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-49-07-01', 1, 5, 1, 9, 49, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-49-08-01', 1, 5, 1, 9, 49, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-49-09-01', 1, 5, 1, 9, 49, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-49-10-01', 1, 5, 1, 9, 49, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-49-11-01', 1, 5, 1, 9, 49, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-49-12-01', 1, 5, 1, 9, 49, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-49-13-01', 1, 5, 1, 9, 49, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-49-14-01', 1, 5, 1, 9, 49, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-49-15-01', 1, 5, 1, 9, 49, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-49-16-01', 1, 5, 1, 9, 49, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-49-17-01', 1, 5, 1, 9, 49, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-49-18-01', 1, 5, 1, 9, 49, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-49-19-01', 1, 5, 1, 9, 49, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-49-20-01', 1, 5, 1, 9, 49, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-49-21-01', 1, 5, 1, 9, 49, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-49-22-01', 1, 5, 1, 9, 49, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-50-01-01', 1, 5, 1, 9, 50, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-50-02-01', 1, 5, 1, 9, 50, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-50-03-01', 1, 5, 1, 9, 50, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-50-04-01', 1, 5, 1, 9, 50, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-50-05-01', 1, 5, 1, 9, 50, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-50-06-01', 1, 5, 1, 9, 50, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-50-07-01', 1, 5, 1, 9, 50, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-50-08-01', 1, 5, 1, 9, 50, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-50-09-01', 1, 5, 1, 9, 50, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-50-10-01', 1, 5, 1, 9, 50, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-50-11-01', 1, 5, 1, 9, 50, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-50-12-01', 1, 5, 1, 9, 50, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-50-13-01', 1, 5, 1, 9, 50, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-50-14-01', 1, 5, 1, 9, 50, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-50-15-01', 1, 5, 1, 9, 50, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-50-16-01', 1, 5, 1, 9, 50, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-50-17-01', 1, 5, 1, 9, 50, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-50-18-01', 1, 5, 1, 9, 50, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-50-19-01', 1, 5, 1, 9, 50, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-50-20-01', 1, 5, 1, 9, 50, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-50-21-01', 1, 5, 1, 9, 50, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-50-22-01', 1, 5, 1, 9, 50, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-51-01-01', 1, 5, 1, 9, 51, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-51-02-01', 1, 5, 1, 9, 51, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-51-03-01', 1, 5, 1, 9, 51, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-51-04-01', 1, 5, 1, 9, 51, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-51-05-01', 1, 5, 1, 9, 51, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-51-06-01', 1, 5, 1, 9, 51, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-51-07-01', 1, 5, 1, 9, 51, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-51-08-01', 1, 5, 1, 9, 51, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-51-09-01', 1, 5, 1, 9, 51, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-51-10-01', 1, 5, 1, 9, 51, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-51-11-01', 1, 5, 1, 9, 51, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-51-12-01', 1, 5, 1, 9, 51, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-51-13-01', 1, 5, 1, 9, 51, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-51-14-01', 1, 5, 1, 9, 51, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-51-15-01', 1, 5, 1, 9, 51, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-51-16-01', 1, 5, 1, 9, 51, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-51-17-01', 1, 5, 1, 9, 51, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-51-18-01', 1, 5, 1, 9, 51, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-51-19-01', 1, 5, 1, 9, 51, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-51-20-01', 1, 5, 1, 9, 51, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-51-21-01', 1, 5, 1, 9, 51, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-51-22-01', 1, 5, 1, 9, 51, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-52-01-01', 1, 5, 1, 9, 52, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-52-02-01', 1, 5, 1, 9, 52, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-52-03-01', 1, 5, 1, 9, 52, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-52-04-01', 1, 5, 1, 9, 52, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-52-05-01', 1, 5, 1, 9, 52, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-52-06-01', 1, 5, 1, 9, 52, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-52-07-01', 1, 5, 1, 9, 52, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-52-08-01', 1, 5, 1, 9, 52, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-52-09-01', 1, 5, 1, 9, 52, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-52-10-01', 1, 5, 1, 9, 52, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-52-11-01', 1, 5, 1, 9, 52, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-52-12-01', 1, 5, 1, 9, 52, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-52-13-01', 1, 5, 1, 9, 52, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-52-14-01', 1, 5, 1, 9, 52, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-52-15-01', 1, 5, 1, 9, 52, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-52-16-01', 1, 5, 1, 9, 52, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-52-17-01', 1, 5, 1, 9, 52, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-52-18-01', 1, 5, 1, 9, 52, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-52-19-01', 1, 5, 1, 9, 52, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-52-20-01', 1, 5, 1, 9, 52, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-52-21-01', 1, 5, 1, 9, 52, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-52-22-01', 1, 5, 1, 9, 52, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-53-01-01', 1, 5, 1, 9, 53, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-53-02-01', 1, 5, 1, 9, 53, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-53-03-01', 1, 5, 1, 9, 53, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-53-04-01', 1, 5, 1, 9, 53, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-53-05-01', 1, 5, 1, 9, 53, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-53-06-01', 1, 5, 1, 9, 53, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-53-07-01', 1, 5, 1, 9, 53, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-53-08-01', 1, 5, 1, 9, 53, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-53-09-01', 1, 5, 1, 9, 53, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-53-10-01', 1, 5, 1, 9, 53, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-53-11-01', 1, 5, 1, 9, 53, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-53-12-01', 1, 5, 1, 9, 53, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-53-13-01', 1, 5, 1, 9, 53, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-53-14-01', 1, 5, 1, 9, 53, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-53-15-01', 1, 5, 1, 9, 53, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-53-16-01', 1, 5, 1, 9, 53, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-53-17-01', 1, 5, 1, 9, 53, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-53-18-01', 1, 5, 1, 9, 53, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-53-19-01', 1, 5, 1, 9, 53, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-53-20-01', 1, 5, 1, 9, 53, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-53-21-01', 1, 5, 1, 9, 53, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-53-22-01', 1, 5, 1, 9, 53, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-54-01-01', 1, 5, 1, 9, 54, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-54-02-01', 1, 5, 1, 9, 54, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-54-03-01', 1, 5, 1, 9, 54, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-54-04-01', 1, 5, 1, 9, 54, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-54-05-01', 1, 5, 1, 9, 54, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-54-06-01', 1, 5, 1, 9, 54, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-54-07-01', 1, 5, 1, 9, 54, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-54-08-01', 1, 5, 1, 9, 54, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-54-09-01', 1, 5, 1, 9, 54, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-54-10-01', 1, 5, 1, 9, 54, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-54-11-01', 1, 5, 1, 9, 54, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-54-12-01', 1, 5, 1, 9, 54, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-54-13-01', 1, 5, 1, 9, 54, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-54-14-01', 1, 5, 1, 9, 54, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-54-15-01', 1, 5, 1, 9, 54, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-54-16-01', 1, 5, 1, 9, 54, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-54-17-01', 1, 5, 1, 9, 54, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-54-18-01', 1, 5, 1, 9, 54, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-54-19-01', 1, 5, 1, 9, 54, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-54-20-01', 1, 5, 1, 9, 54, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-54-21-01', 1, 5, 1, 9, 54, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-54-22-01', 1, 5, 1, 9, 54, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-55-01-01', 1, 5, 1, 9, 55, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-55-02-01', 1, 5, 1, 9, 55, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-55-03-01', 1, 5, 1, 9, 55, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-55-04-01', 1, 5, 1, 9, 55, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-55-05-01', 1, 5, 1, 9, 55, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-55-06-01', 1, 5, 1, 9, 55, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-55-07-01', 1, 5, 1, 9, 55, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-55-08-01', 1, 5, 1, 9, 55, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-55-09-01', 1, 5, 1, 9, 55, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-55-10-01', 1, 5, 1, 9, 55, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-55-11-01', 1, 5, 1, 9, 55, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-55-12-01', 1, 5, 1, 9, 55, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-55-13-01', 1, 5, 1, 9, 55, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-55-14-01', 1, 5, 1, 9, 55, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-55-15-01', 1, 5, 1, 9, 55, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-55-16-01', 1, 5, 1, 9, 55, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-55-17-01', 1, 5, 1, 9, 55, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-55-18-01', 1, 5, 1, 9, 55, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-55-19-01', 1, 5, 1, 9, 55, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-55-20-01', 1, 5, 1, 9, 55, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-55-21-01', 1, 5, 1, 9, 55, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-55-22-01', 1, 5, 1, 9, 55, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-56-01-01', 1, 5, 1, 9, 56, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-56-02-01', 1, 5, 1, 9, 56, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-56-03-01', 1, 5, 1, 9, 56, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-56-04-01', 1, 5, 1, 9, 56, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-56-05-01', 1, 5, 1, 9, 56, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-56-06-01', 1, 5, 1, 9, 56, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-56-07-01', 1, 5, 1, 9, 56, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-56-08-01', 1, 5, 1, 9, 56, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-56-09-01', 1, 5, 1, 9, 56, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-56-10-01', 1, 5, 1, 9, 56, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-56-11-01', 1, 5, 1, 9, 56, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-56-12-01', 1, 5, 1, 9, 56, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-56-13-01', 1, 5, 1, 9, 56, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-56-14-01', 1, 5, 1, 9, 56, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-56-15-01', 1, 5, 1, 9, 56, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-56-16-01', 1, 5, 1, 9, 56, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-56-17-01', 1, 5, 1, 9, 56, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-56-18-01', 1, 5, 1, 9, 56, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-56-19-01', 1, 5, 1, 9, 56, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-56-20-01', 1, 5, 1, 9, 56, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-56-21-01', 1, 5, 1, 9, 56, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-56-22-01', 1, 5, 1, 9, 56, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-57-01-01', 1, 5, 1, 9, 57, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-57-02-01', 1, 5, 1, 9, 57, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-57-03-01', 1, 5, 1, 9, 57, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-57-04-01', 1, 5, 1, 9, 57, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-57-05-01', 1, 5, 1, 9, 57, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-57-06-01', 1, 5, 1, 9, 57, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-57-07-01', 1, 5, 1, 9, 57, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-57-08-01', 1, 5, 1, 9, 57, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-57-09-01', 1, 5, 1, 9, 57, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-57-10-01', 1, 5, 1, 9, 57, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-57-11-01', 1, 5, 1, 9, 57, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-57-12-01', 1, 5, 1, 9, 57, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-57-13-01', 1, 5, 1, 9, 57, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-57-14-01', 1, 5, 1, 9, 57, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-57-15-01', 1, 5, 1, 9, 57, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-57-16-01', 1, 5, 1, 9, 57, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-57-17-01', 1, 5, 1, 9, 57, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-57-18-01', 1, 5, 1, 9, 57, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-57-19-01', 1, 5, 1, 9, 57, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-57-20-01', 1, 5, 1, 9, 57, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-57-21-01', 1, 5, 1, 9, 57, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-57-22-01', 1, 5, 1, 9, 57, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-58-01-01', 1, 5, 1, 9, 58, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-58-02-01', 1, 5, 1, 9, 58, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-58-03-01', 1, 5, 1, 9, 58, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-58-04-01', 1, 5, 1, 9, 58, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-58-05-01', 1, 5, 1, 9, 58, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-58-06-01', 1, 5, 1, 9, 58, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-58-07-01', 1, 5, 1, 9, 58, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-58-08-01', 1, 5, 1, 9, 58, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-58-09-01', 1, 5, 1, 9, 58, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-58-10-01', 1, 5, 1, 9, 58, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-58-11-01', 1, 5, 1, 9, 58, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-58-12-01', 1, 5, 1, 9, 58, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-58-13-01', 1, 5, 1, 9, 58, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-58-14-01', 1, 5, 1, 9, 58, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-58-15-01', 1, 5, 1, 9, 58, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-58-16-01', 1, 5, 1, 9, 58, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-58-17-01', 1, 5, 1, 9, 58, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-58-18-01', 1, 5, 1, 9, 58, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-58-19-01', 1, 5, 1, 9, 58, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-58-20-01', 1, 5, 1, 9, 58, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-58-21-01', 1, 5, 1, 9, 58, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-58-22-01', 1, 5, 1, 9, 58, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-59-01-01', 1, 5, 1, 9, 59, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-59-02-01', 1, 5, 1, 9, 59, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-59-03-01', 1, 5, 1, 9, 59, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-59-04-01', 1, 5, 1, 9, 59, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-59-05-01', 1, 5, 1, 9, 59, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-59-06-01', 1, 5, 1, 9, 59, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-59-07-01', 1, 5, 1, 9, 59, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-59-08-01', 1, 5, 1, 9, 59, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-59-09-01', 1, 5, 1, 9, 59, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-59-10-01', 1, 5, 1, 9, 59, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-59-11-01', 1, 5, 1, 9, 59, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-59-12-01', 1, 5, 1, 9, 59, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-59-13-01', 1, 5, 1, 9, 59, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-59-14-01', 1, 5, 1, 9, 59, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-59-15-01', 1, 5, 1, 9, 59, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-59-16-01', 1, 5, 1, 9, 59, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-59-17-01', 1, 5, 1, 9, 59, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-59-18-01', 1, 5, 1, 9, 59, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-59-19-01', 1, 5, 1, 9, 59, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-59-20-01', 1, 5, 1, 9, 59, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-59-21-01', 1, 5, 1, 9, 59, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-59-22-01', 1, 5, 1, 9, 59, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-60-01-01', 1, 5, 1, 9, 60, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-60-02-01', 1, 5, 1, 9, 60, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-60-03-01', 1, 5, 1, 9, 60, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-60-04-01', 1, 5, 1, 9, 60, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-60-05-01', 1, 5, 1, 9, 60, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-60-06-01', 1, 5, 1, 9, 60, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-60-07-01', 1, 5, 1, 9, 60, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-60-08-01', 1, 5, 1, 9, 60, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-60-09-01', 1, 5, 1, 9, 60, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-60-10-01', 1, 5, 1, 9, 60, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-60-11-01', 1, 5, 1, 9, 60, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-60-12-01', 1, 5, 1, 9, 60, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-60-13-01', 1, 5, 1, 9, 60, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-60-14-01', 1, 5, 1, 9, 60, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-60-15-01', 1, 5, 1, 9, 60, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-60-16-01', 1, 5, 1, 9, 60, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-60-17-01', 1, 5, 1, 9, 60, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-60-18-01', 1, 5, 1, 9, 60, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-60-19-01', 1, 5, 1, 9, 60, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-60-20-01', 1, 5, 1, 9, 60, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-60-21-01', 1, 5, 1, 9, 60, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-60-22-01', 1, 5, 1, 9, 60, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-61-01-01', 1, 5, 1, 9, 61, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-61-02-01', 1, 5, 1, 9, 61, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-61-03-01', 1, 5, 1, 9, 61, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-61-04-01', 1, 5, 1, 9, 61, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-61-05-01', 1, 5, 1, 9, 61, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-61-06-01', 1, 5, 1, 9, 61, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-61-07-01', 1, 5, 1, 9, 61, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-61-08-01', 1, 5, 1, 9, 61, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-61-09-01', 1, 5, 1, 9, 61, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-61-10-01', 1, 5, 1, 9, 61, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-61-11-01', 1, 5, 1, 9, 61, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-61-12-01', 1, 5, 1, 9, 61, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-61-13-01', 1, 5, 1, 9, 61, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-61-14-01', 1, 5, 1, 9, 61, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-61-15-01', 1, 5, 1, 9, 61, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-61-16-01', 1, 5, 1, 9, 61, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-61-17-01', 1, 5, 1, 9, 61, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-61-18-01', 1, 5, 1, 9, 61, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-61-19-01', 1, 5, 1, 9, 61, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-61-20-01', 1, 5, 1, 9, 61, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-61-21-01', 1, 5, 1, 9, 61, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-61-22-01', 1, 5, 1, 9, 61, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-62-01-01', 1, 5, 1, 9, 62, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-62-02-01', 1, 5, 1, 9, 62, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-62-03-01', 1, 5, 1, 9, 62, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-62-04-01', 1, 5, 1, 9, 62, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-62-05-01', 1, 5, 1, 9, 62, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-62-06-01', 1, 5, 1, 9, 62, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-62-07-01', 1, 5, 1, 9, 62, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-62-08-01', 1, 5, 1, 9, 62, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-62-09-01', 1, 5, 1, 9, 62, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-62-10-01', 1, 5, 1, 9, 62, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-62-11-01', 1, 5, 1, 9, 62, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-62-12-01', 1, 5, 1, 9, 62, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-62-13-01', 1, 5, 1, 9, 62, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-62-14-01', 1, 5, 1, 9, 62, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-62-15-01', 1, 5, 1, 9, 62, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-62-16-01', 1, 5, 1, 9, 62, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-62-17-01', 1, 5, 1, 9, 62, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-62-18-01', 1, 5, 1, 9, 62, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-62-19-01', 1, 5, 1, 9, 62, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-62-20-01', 1, 5, 1, 9, 62, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-62-21-01', 1, 5, 1, 9, 62, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-62-22-01', 1, 5, 1, 9, 62, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-63-01-01', 1, 5, 1, 9, 63, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-63-02-01', 1, 5, 1, 9, 63, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-63-03-01', 1, 5, 1, 9, 63, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-63-04-01', 1, 5, 1, 9, 63, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-63-05-01', 1, 5, 1, 9, 63, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-63-06-01', 1, 5, 1, 9, 63, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-63-07-01', 1, 5, 1, 9, 63, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-63-08-01', 1, 5, 1, 9, 63, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-63-09-01', 1, 5, 1, 9, 63, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-63-10-01', 1, 5, 1, 9, 63, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-63-11-01', 1, 5, 1, 9, 63, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-63-12-01', 1, 5, 1, 9, 63, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-63-13-01', 1, 5, 1, 9, 63, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-63-14-01', 1, 5, 1, 9, 63, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-63-15-01', 1, 5, 1, 9, 63, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-63-16-01', 1, 5, 1, 9, 63, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-63-17-01', 1, 5, 1, 9, 63, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-63-18-01', 1, 5, 1, 9, 63, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-63-19-01', 1, 5, 1, 9, 63, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-63-20-01', 1, 5, 1, 9, 63, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-63-21-01', 1, 5, 1, 9, 63, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-63-22-01', 1, 5, 1, 9, 63, 22, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-64-01-01', 1, 5, 1, 9, 64, 1, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-64-02-01', 1, 5, 1, 9, 64, 2, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-64-03-01', 1, 5, 1, 9, 64, 3, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-64-04-01', 1, 5, 1, 9, 64, 4, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-64-05-01', 1, 5, 1, 9, 64, 5, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-64-06-01', 1, 5, 1, 9, 64, 6, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-64-07-01', 1, 5, 1, 9, 64, 7, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-64-08-01', 1, 5, 1, 9, 64, 8, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-64-09-01', 1, 5, 1, 9, 64, 9, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-64-10-01', 1, 5, 1, 9, 64, 10, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-64-11-01', 1, 5, 1, 9, 64, 11, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-64-12-01', 1, 5, 1, 9, 64, 12, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-64-13-01', 1, 5, 1, 9, 64, 13, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-64-14-01', 1, 5, 1, 9, 64, 14, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-64-15-01', 1, 5, 1, 9, 64, 15, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-64-16-01', 1, 5, 1, 9, 64, 16, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-64-17-01', 1, 5, 1, 9, 64, 17, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-64-18-01', 1, 5, 1, 9, 64, 18, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-64-19-01', 1, 5, 1, 9, 64, 19, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-64-20-01', 1, 5, 1, 9, 64, 20, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-64-21-01', 1, 5, 1, 9, 64, 21, 1, 0, 0, NULL); +INSERT INTO `tbl_app_location` VALUES ('09-64-22-01', 1, 5, 1, 9, 64, 22, 1, 0, 0, NULL); -- ---------------------------- -- Table structure for tbl_app_outside_vehicles @@ -2680,7 +14133,7 @@ CREATE TABLE `tbl_app_outside_vehicles` ( `goods_id` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL COMMENT '物料编号', `remain_num` decimal(12, 4) NULL DEFAULT NULL COMMENT '剩余数量', PRIMARY KEY (`outside_id`) USING BTREE -) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_0900_ai_ci ROW_FORMAT = Dynamic; +) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_0900_ai_ci ROW_FORMAT = DYNAMIC; -- ---------------------------- -- Records of tbl_app_outside_vehicles @@ -2697,7 +14150,7 @@ CREATE TABLE `tbl_app_pick_task` ( `pick_status` int NULL DEFAULT NULL COMMENT '拣选任务状态', `last_update_time` datetime NULL DEFAULT NULL COMMENT '最近更新时间', PRIMARY KEY (`pick_task_id`) USING BTREE -) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_0900_ai_ci ROW_FORMAT = Dynamic; +) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_0900_ai_ci ROW_FORMAT = DYNAMIC; -- ---------------------------- -- Records of tbl_app_pick_task @@ -2714,11 +14167,16 @@ CREATE TABLE `tbl_app_pick_task_bak` ( `pick_status` int NULL DEFAULT NULL COMMENT '拣选任务状态', `last_update_time` datetime NULL DEFAULT NULL COMMENT '最近更新时间', PRIMARY KEY (`pick_task_id`) USING BTREE -) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_0900_ai_ci ROW_FORMAT = Dynamic; +) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_0900_ai_ci ROW_FORMAT = DYNAMIC; -- ---------------------------- -- Records of tbl_app_pick_task_bak -- ---------------------------- +INSERT INTO `tbl_app_pick_task_bak` VALUES ('PICK_202408020942320691722562952069', 'ASRS000180', 'ASRS-#1', 2, '2024-08-02 09:49:35'); +INSERT INTO `tbl_app_pick_task_bak` VALUES ('PICK_202408020942320841722562952084', 'ASRS000117', 'ASRS-#1', 2, '2024-08-02 10:02:35'); +INSERT INTO `tbl_app_pick_task_bak` VALUES ('PICK_202408020942321221722562952122', 'ASRS000117', 'ASRS-#2', 2, '2024-08-02 10:03:23'); +INSERT INTO `tbl_app_pick_task_bak` VALUES ('PICK_202408020942321361722562952136', 'ASRS000179', 'ASRS-#2', 2, '2024-08-02 10:01:11'); +INSERT INTO `tbl_app_pick_task_bak` VALUES ('PICK_202408020942321691722562952169', 'ASRS000184', 'ASRS-#3', 2, '2024-08-02 09:53:50'); -- ---------------------------- -- Table structure for tbl_app_stand @@ -2736,16 +14194,30 @@ CREATE TABLE `tbl_app_stand` ( `stand_ip` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL COMMENT '拣选站台电脑的ip', `outer_id` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL COMMENT '外部编号', `last_use_time` datetime NULL DEFAULT NULL COMMENT '最后一次使用时间', + `pick_goods` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL COMMENT '正在拣选的物料', + `pick_vehicle` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL COMMENT '正在拣选的载具', + `pick_tip` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL COMMENT '拣选提示信息', PRIMARY KEY (`stand_id`) USING BTREE ) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_0900_ai_ci ROW_FORMAT = DYNAMIC; -- ---------------------------- -- Records of tbl_app_stand -- ---------------------------- -INSERT INTO `tbl_app_stand` VALUES ('C1', 0, 1, 0, 0, 1, 1, 1, NULL, 'C1', NULL); -INSERT INTO `tbl_app_stand` VALUES ('C2', 0, 1, 0, 0, 2, 1, 1, NULL, 'C2', NULL); -INSERT INTO `tbl_app_stand` VALUES ('R1', 1, 0, 0, 0, 1, 1, 1, NULL, 'R1', NULL); -INSERT INTO `tbl_app_stand` VALUES ('R2', 1, 0, 0, 0, 2, 1, 1, NULL, 'R2', NULL); +INSERT INTO `tbl_app_stand` VALUES ('ASRS-#0', 1, 1, 0, 0, 1, 1, 1, NULL, 'ASRS-#0', NULL, NULL, NULL, NULL); +INSERT INTO `tbl_app_stand` VALUES ('ASRS-#1', 1, 1, 0, 0, 1, 1, 2, '127.0.0.1', 'ASRS-#1', '2024-08-06 14:45:15', '', '', ''); +INSERT INTO `tbl_app_stand` VALUES ('ASRS-#2', 1, 1, 0, 0, 1, 1, 2, '192.168.8.62', 'ASRS-#2', '2024-08-06 14:39:37', '', '', ''); +INSERT INTO `tbl_app_stand` VALUES ('ASRS-#3', 1, 1, 0, 0, 1, 1, 2, '192.168.8.119', 'ASRS-#3', NULL, NULL, NULL, NULL); +INSERT INTO `tbl_app_stand` VALUES ('ASRS-#4', 1, 1, 0, 0, 1, 1, 2, NULL, 'ASRS-#4', '2024-08-06 14:40:26', '', '', ''); +INSERT INTO `tbl_app_stand` VALUES ('ASRS-#5', 1, 1, 0, 0, 1, 1, 2, NULL, 'ASRS-#5', '2024-08-06 14:40:42', '', '', ''); +INSERT INTO `tbl_app_stand` VALUES ('ASRS-#6', 1, 1, 0, 0, 1, 1, 2, NULL, 'ASRS-#6', NULL, NULL, NULL, NULL); +INSERT INTO `tbl_app_stand` VALUES ('ASRS-#7', 1, 1, 0, 0, 1, 1, 2, NULL, 'ASRS-#7', '2024-08-06 14:40:52', '', '', ''); +INSERT INTO `tbl_app_stand` VALUES ('ASRS-#8', 1, 1, 0, 0, 1, 1, 2, NULL, 'ASRS-#8', NULL, NULL, NULL, NULL); +INSERT INTO `tbl_app_stand` VALUES ('ASRS-#9', 1, 1, 0, 0, 1, 1, 2, '', 'ASRS-#9', NULL, NULL, NULL, NULL); +INSERT INTO `tbl_app_stand` VALUES ('TDJ1', 0, 0, 0, 0, 1, 1, 3, NULL, 'TDJ1', '2024-08-06 14:47:12', NULL, NULL, NULL); +INSERT INTO `tbl_app_stand` VALUES ('TDJ2', 0, 0, 0, 0, 2, 1, 3, NULL, 'TDJ2', '2024-08-06 14:46:58', NULL, NULL, NULL); +INSERT INTO `tbl_app_stand` VALUES ('TDJ3', 0, 0, 0, 0, 3, 1, 3, NULL, 'TDJ3', '2024-08-06 14:45:49', NULL, NULL, NULL); +INSERT INTO `tbl_app_stand` VALUES ('TDJ4', 0, 0, 0, 0, 4, 1, 3, NULL, 'TDJ4', '2024-08-06 14:45:53', NULL, NULL, NULL); +INSERT INTO `tbl_app_stand` VALUES ('TDJ5', 0, 0, 0, 0, 5, 1, 3, NULL, 'TDJ5', '2024-08-06 14:46:54', NULL, NULL, NULL); -- ---------------------------- -- Table structure for tbl_app_stock @@ -2759,7 +14231,7 @@ CREATE TABLE `tbl_app_stock` ( `stock_status` int NULL DEFAULT NULL COMMENT '库存状态', `create_time` datetime NULL DEFAULT NULL COMMENT '创建时间', `last_update_time` datetime NULL DEFAULT NULL COMMENT '最近更新时间', - `last_update_user` datetime NULL DEFAULT NULL COMMENT '最近更新用户', + `last_update_user` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL COMMENT '最近更新用户', `is_inventory` int NULL DEFAULT NULL COMMENT '是否盘点,默认为空。', `inventory_task_id` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL COMMENT '盘点的任务单号', `no_use_days` int NULL DEFAULT NULL COMMENT '呆滞天数,初始为0', @@ -2770,6 +14242,40 @@ CREATE TABLE `tbl_app_stock` ( -- ---------------------------- -- Records of tbl_app_stock -- ---------------------------- +INSERT INTO `tbl_app_stock` VALUES ('ST_202408020928139711722562093971', '02-01-01-01', 'ASRS000179', NULL, 0, '2024-08-02 09:28:14', '2024-08-02 10:02:36', 'WMS', 0, NULL, 0, '{\"goodsId\": \"123456789/CS\", \"totalNum\": 20, \"goodsName\": \"测试物料1\", \"remainNum\": 20, \"goodsStatus\": 0}'); +INSERT INTO `tbl_app_stock` VALUES ('ST_202408020929089801722562148980', '01-01-02-01', 'ASRS000117', NULL, 0, '2024-08-02 09:29:09', '2024-08-02 10:05:42', 'WMS', 0, NULL, 0, '{\"goodsId\": \"222222222/CS\", \"totalNum\": 20, \"goodsName\": \"测试物料2\", \"remainNum\": 20, \"goodsStatus\": 0}'); +INSERT INTO `tbl_app_stock` VALUES ('ST_202408020930389831722562238983', '01-01-03-01', 'ASRS000180', NULL, 0, '2024-08-02 09:30:39', '2024-08-02 09:50:58', 'WMS', 0, NULL, 0, '{\"goodsId\": \"333333333/CS\", \"totalNum\": 30, \"goodsName\": \"测试物料3\", \"remainNum\": 30, \"goodsStatus\": 0}'); +INSERT INTO `tbl_app_stock` VALUES ('ST_202408020938560341722562736034', '02-01-03-01', 'ASRS000138', NULL, 0, '2024-08-02 09:38:56', '2024-08-02 09:38:56', '管理员', 0, NULL, 0, '{\"goodsId\": \"123456789/CS\", \"totalNum\": 20, \"goodsName\": \"测试物料1\", \"remainNum\": 20, \"goodsStatus\": 0}'); +INSERT INTO `tbl_app_stock` VALUES ('ST_202408020939210141722562761014', '03-01-01-01', 'ASRS000184', NULL, 0, '2024-08-02 09:39:21', '2024-08-02 09:56:55', 'WMS', 0, NULL, 0, '{\"goodsId\": \"444444444/CS\", \"totalNum\": 10, \"goodsName\": \"测试物料4\", \"remainNum\": 10, \"goodsStatus\": 0}'); +INSERT INTO `tbl_app_stock` VALUES ('ST_202408020939489941722562788994', '04-01-01-01', 'ASRS000001', NULL, 0, '2024-08-02 09:39:49', '2024-08-02 09:39:49', '管理员', 0, NULL, 0, '{\"goodsId\": \"555555555/CS\", \"totalNum\": 25, \"goodsName\": \"测试物料5\", \"remainNum\": 25, \"goodsStatus\": 0}'); +INSERT INTO `tbl_app_stock` VALUES ('ST_202408021333115231722576791523', '03-01-20-01', 'ASRS000185', NULL, 0, '2024-08-02 13:33:12', '2024-08-02 13:33:12', '管理员', 0, NULL, 0, '{\"goodsId\": \"ASRS000185\", \"totalNum\": 100, \"goodsName\": \"测试物料000185\", \"remainNum\": 100, \"goodsStatus\": 0}'); +INSERT INTO `tbl_app_stock` VALUES ('ST_202408021334146171722576854617', '01-01-22-01', 'ASRS000172', NULL, 0, '2024-08-02 13:34:15', '2024-08-02 13:34:15', '管理员', 0, NULL, 0, '{\"goodsId\": \"ASRS000172\", \"totalNum\": 100, \"goodsName\": \"测试物料000172\", \"remainNum\": 100, \"goodsStatus\": 0}'); +INSERT INTO `tbl_app_stock` VALUES ('ST_202408021334166371722576856637', '04-01-16-01', 'ASRS000178', NULL, 0, '2024-08-02 13:34:17', '2024-08-02 13:34:17', '管理员', 0, NULL, 0, '{\"goodsId\": \"ASRS000178\", \"totalNum\": 100, \"goodsName\": \"测试物料000178\", \"remainNum\": 100, \"goodsStatus\": 0}'); +INSERT INTO `tbl_app_stock` VALUES ('ST_202408021334285371722576868537', '06-01-16-01', 'ASRS000150', NULL, 0, '2024-08-02 13:34:29', '2024-08-02 13:34:29', '管理员', 0, NULL, 0, '{\"goodsId\": \"ASRS000150\", \"totalNum\": 100, \"goodsName\": \"测试物料000150\", \"remainNum\": 100, \"goodsStatus\": 0}'); +INSERT INTO `tbl_app_stock` VALUES ('ST_202408021334405281722576880528', '08-01-16-01', 'ASRS000131', NULL, 0, '2024-08-02 13:34:41', '2024-08-02 13:34:41', '管理员', 0, NULL, 0, '{\"goodsId\": \"ASRS000131\", \"totalNum\": 100, \"goodsName\": \"测试物料000131\", \"remainNum\": 100, \"goodsStatus\": 0}'); +INSERT INTO `tbl_app_stock` VALUES ('ST_202408021335035691722576903569', '03-01-21-01', 'ASRS000145', NULL, 0, '2024-08-02 13:35:04', '2024-08-02 13:35:04', '管理员', 0, NULL, 0, '{\"goodsId\": \"ASRS000145\", \"totalNum\": 100, \"goodsName\": \"测试物料000145\", \"remainNum\": 100, \"goodsStatus\": 0}'); +INSERT INTO `tbl_app_stock` VALUES ('ST_202408021335246211722576924621', '01-02-01-01', 'ASRS000132', NULL, 0, '2024-08-02 13:35:25', '2024-08-02 13:35:25', '管理员', 0, NULL, 0, '{\"goodsId\": \"ASRS000132\", \"totalNum\": 100, \"goodsName\": \"测试物料000132\", \"remainNum\": 100, \"goodsStatus\": 0}'); +INSERT INTO `tbl_app_stock` VALUES ('ST_202408021335446421722576944642', '05-01-16-01', 'ASRS000186', NULL, 0, '2024-08-02 13:35:45', '2024-08-02 13:35:45', '管理员', 0, NULL, 0, '{\"goodsId\": \"ASRS000186\", \"totalNum\": 100, \"goodsName\": \"测试物料000186\", \"remainNum\": 100, \"goodsStatus\": 0}'); +INSERT INTO `tbl_app_stock` VALUES ('ST_202408021336055941722576965594', '07-01-16-01', 'ASRS000129', NULL, 0, '2024-08-02 13:36:06', '2024-08-02 13:36:06', '管理员', 0, NULL, 0, '{\"goodsId\": \"ASRS000129\", \"totalNum\": 100, \"goodsName\": \"测试物料000129\", \"remainNum\": 100, \"goodsStatus\": 0}'); +INSERT INTO `tbl_app_stock` VALUES ('ST_202408021336165821722576976582', '09-01-16-01', 'ASRS000146', NULL, 0, '2024-08-02 13:36:17', '2024-08-02 13:36:17', '管理员', 0, NULL, 0, '{\"goodsId\": \"ASRS000146\", \"totalNum\": 100, \"goodsName\": \"测试物料000146\", \"remainNum\": 100, \"goodsStatus\": 0}'); +INSERT INTO `tbl_app_stock` VALUES ('ST_202408021336306301722576990630', '02-02-01-01', 'ASRS000181', NULL, 0, '2024-08-02 13:36:31', '2024-08-02 13:36:31', '管理员', 0, NULL, 0, '{\"goodsId\": \"ASRS000181\", \"totalNum\": 100, \"goodsName\": \"测试物料000181\", \"remainNum\": 100, \"goodsStatus\": 0}'); +INSERT INTO `tbl_app_stock` VALUES ('ST_202408021336405511722577000551', '02-01-22-01', 'ASRS000141', NULL, 0, '2024-08-02 13:36:41', '2024-08-02 13:36:41', '管理员', 0, NULL, 0, '{\"goodsId\": \"ASRS000141\", \"totalNum\": 100, \"goodsName\": \"测试物料000141\", \"remainNum\": 100, \"goodsStatus\": 0}'); +INSERT INTO `tbl_app_stock` VALUES ('ST_202408021336586591722577018659', '04-01-17-01', 'ASRS000182', NULL, 0, '2024-08-02 13:36:59', '2024-08-02 13:36:59', '管理员', 0, NULL, 0, '{\"goodsId\": \"ASRS000182\", \"totalNum\": 100, \"goodsName\": \"测试物料000182\", \"remainNum\": 100, \"goodsStatus\": 0}'); +INSERT INTO `tbl_app_stock` VALUES ('ST_202408021337066501722577026650', '06-01-17-01', 'ASRS000187', NULL, 0, '2024-08-02 13:37:07', '2024-08-02 13:37:07', '管理员', 0, NULL, 0, '{\"goodsId\": \"ASRS000187\", \"totalNum\": 100, \"goodsName\": \"测试物料000187\", \"remainNum\": 100, \"goodsStatus\": 0}'); +INSERT INTO `tbl_app_stock` VALUES ('ST_202408021337165801722577036580', '08-01-17-01', 'ASRS000183', NULL, 0, '2024-08-02 13:37:17', '2024-08-02 13:37:17', '管理员', 0, NULL, 0, '{\"goodsId\": \"ASRS000183\", \"totalNum\": 100, \"goodsName\": \"测试物料000183\", \"remainNum\": 100, \"goodsStatus\": 0}'); +INSERT INTO `tbl_app_stock` VALUES ('ST_202408021337295311722577049531', '01-02-02-01', 'ASRS000126', NULL, 0, '2024-08-02 13:37:30', '2024-08-02 13:37:30', '管理员', 0, NULL, 0, '{\"goodsId\": \"ASRS000126\", \"totalNum\": 100, \"goodsName\": \"测试物料000126\", \"remainNum\": 100, \"goodsStatus\": 0}'); +INSERT INTO `tbl_app_stock` VALUES ('ST_202408021337405111722577060511', '03-01-22-01', 'ASRS000128', NULL, 0, '2024-08-02 13:37:41', '2024-08-02 13:37:41', '管理员', 0, NULL, 0, '{\"goodsId\": \"ASRS000128\", \"totalNum\": 100, \"goodsName\": \"测试物料000128\", \"remainNum\": 100, \"goodsStatus\": 0}'); +INSERT INTO `tbl_app_stock` VALUES ('ST_202408021338056321722577085632', '05-01-17-01', 'ASRS000173', NULL, 0, '2024-08-02 13:38:06', '2024-08-02 13:38:06', '管理员', 0, NULL, 0, '{\"goodsId\": \"ASRS000173\", \"totalNum\": 100, \"goodsName\": \"测试物料000173\", \"remainNum\": 100, \"goodsStatus\": 0}'); +INSERT INTO `tbl_app_stock` VALUES ('ST_202408021338125921722577092592', '07-01-17-01', 'ASRS000127', NULL, 0, '2024-08-02 13:38:13', '2024-08-02 13:38:13', '管理员', 0, NULL, 0, '{\"goodsId\": \"ASRS000127\", \"totalNum\": 100, \"goodsName\": \"测试物料000127\", \"remainNum\": 100, \"goodsStatus\": 0}'); +INSERT INTO `tbl_app_stock` VALUES ('ST_202408021338205911722577100591', '09-01-17-01', 'ASRS000174', NULL, 0, '2024-08-02 13:38:21', '2024-08-02 13:38:21', '管理员', 0, NULL, 0, '{\"goodsId\": \"ASRS000174\", \"totalNum\": 100, \"goodsName\": \"测试物料000174\", \"remainNum\": 100, \"goodsStatus\": 0}'); +INSERT INTO `tbl_app_stock` VALUES ('ST_202408021338316431722577111643', '03-02-01-01', 'ASRS000122', NULL, 0, '2024-08-02 13:38:32', '2024-08-02 13:38:32', '管理员', 0, NULL, 0, '{\"goodsId\": \"ASRS000122\", \"totalNum\": 100, \"goodsName\": \"测试物料000122\", \"remainNum\": 100, \"goodsStatus\": 0}'); +INSERT INTO `tbl_app_stock` VALUES ('ST_202408021338325831722577112583', '01-02-03-01', 'ASRS000175', NULL, 0, '2024-08-02 13:38:33', '2024-08-02 13:38:33', '管理员', 0, NULL, 0, '{\"goodsId\": \"ASRS000175\", \"totalNum\": 100, \"goodsName\": \"测试物料000175\", \"remainNum\": 100, \"goodsStatus\": 0}'); +INSERT INTO `tbl_app_stock` VALUES ('ST_202408021339006331722577140633', '04-01-18-01', 'ASRS000142', NULL, 0, '2024-08-02 13:39:01', '2024-08-02 13:39:01', '管理员', 0, NULL, 0, '{\"goodsId\": \"ASRS000142\", \"totalNum\": 100, \"goodsName\": \"测试物料000142\", \"remainNum\": 100, \"goodsStatus\": 0}'); +INSERT INTO `tbl_app_stock` VALUES ('ST_202408021355466151722578146615', '06-01-18-01', 'ASRS000134', NULL, 0, '2024-08-02 13:55:47', '2024-08-02 13:55:47', '管理员', 0, NULL, 0, '{\"goodsId\": \"ASRS000134\", \"totalNum\": 99, \"goodsName\": \"测试物料000134\", \"remainNum\": 99, \"goodsStatus\": 0}'); +INSERT INTO `tbl_app_stock` VALUES ('ST_202408021355595661722578159566', '08-01-18-01', 'ASRS000133', NULL, 0, '2024-08-02 13:56:00', '2024-08-02 13:56:00', '管理员', 0, NULL, 0, '{\"goodsId\": \"ASRS000133\", \"totalNum\": 99, \"goodsName\": \"测试物料000133\", \"remainNum\": 99, \"goodsStatus\": 0}'); +INSERT INTO `tbl_app_stock` VALUES ('ST_202408021356195761722578179576', '02-02-02-01', 'ASRS000095', NULL, 0, '2024-08-02 13:56:20', '2024-08-02 13:56:20', '管理员', 0, NULL, 0, '{\"goodsId\": \"ASRS000095\", \"totalNum\": 99, \"goodsName\": \"测试物料000095\", \"remainNum\": 99, \"goodsStatus\": 0}'); +INSERT INTO `tbl_app_stock` VALUES ('ST_202408021356366071722578196607', '02-02-03-01', 'ASRS000147', NULL, 0, '2024-08-02 13:56:37', '2024-08-02 13:56:37', '管理员', 0, NULL, 0, '{\"goodsId\": \"ASRS000147\", \"totalNum\": 99, \"goodsName\": \"测试物料000147\", \"remainNum\": 99, \"goodsStatus\": 0}'); +INSERT INTO `tbl_app_stock` VALUES ('ST_202408021357025751722578222575', '05-01-18-01', 'ASRS000196', NULL, 0, '2024-08-02 13:57:03', '2024-08-02 13:57:03', '管理员', 0, NULL, 0, '{\"goodsId\": \"ASRS000196\", \"totalNum\": 99, \"goodsName\": \"测试物料000196\", \"remainNum\": 99, \"goodsStatus\": 0}'); -- ---------------------------- -- Table structure for tbl_app_task @@ -2828,6 +14334,425 @@ CREATE TABLE `tbl_app_task_bak` ( -- ---------------------------- -- Records of tbl_app_task_bak -- ---------------------------- +INSERT INTO `tbl_app_task_bak` VALUES ('CK_202408011610445181722499844518', 2, 100, 1, '202408011610445301722499844530', '01-01-01-01', '', NULL, 'ASRS000176', NULL, '2024-08-01 16:10:45', 'WMS_AUTO', '2024-08-01 16:11:14', NULL, NULL, 1, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('CK_202408020942320491722562952049', 2, 100, 1, '202408020942320511722562952051', '01-01-03-01', '', NULL, 'ASRS000180', NULL, '2024-08-02 09:42:32', 'WMS_AUTO', '2024-08-02 09:43:12', NULL, NULL, 1, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('CK_202408020942320731722562952073', 2, 100, 1, '202408020942320751722562952075', '01-01-02-01', '', NULL, 'ASRS000117', NULL, '2024-08-02 09:42:32', 'WMS_AUTO', '2024-08-02 09:43:12', NULL, NULL, 1, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('CK_202408020942321261722562952126', 2, 100, 1, '202408020942321291722562952129', '02-01-01-01', '', NULL, 'ASRS000179', NULL, '2024-08-02 09:42:32', 'WMS_AUTO', '2024-08-02 09:43:43', NULL, NULL, 1, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('CK_202408020942321591722562952159', 2, 100, 1, '202408020942321611722562952161', '03-01-01-01', '', NULL, 'ASRS000184', NULL, '2024-08-02 09:42:32', 'WMS_AUTO', '2024-08-02 09:43:02', NULL, NULL, 1, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('HK_202408011613287231722500008723', 1, 100, 1, '202408011613287251722500008725', NULL, '01-01-01-01', 0.000, 'ASRS000176', 1, '2024-08-01 16:13:29', 'WMS', '2024-08-01 16:14:26', NULL, NULL, NULL, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('HK_202408020950083251722563408325', 1, 100, 1, '202408020950083271722563408327', NULL, '06-01-01-01', 0.000, 'ASRS000180', 1, '2024-08-02 09:50:08', 'WMS', '2024-08-02 09:50:58', NULL, NULL, NULL, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('HK_202408020953176551722563597655', 1, 100, 1, '202408020953176571722563597657', NULL, '08-01-01-01', 0.000, 'ASRS000154', 1, '2024-08-02 09:53:18', 'WMS', '2024-08-02 09:54:08', NULL, NULL, NULL, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('HK_202408020954160971722563656097', 1, 100, 1, '202408020954160991722563656099', NULL, '02-01-01-01', 0.000, 'ASRS000184', 1, '2024-08-02 09:54:16', 'WMS', '2024-08-02 09:56:55', NULL, NULL, NULL, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('HK_202408021001414361722564101436', 1, 100, 1, '202408021001414371722564101437', NULL, '03-01-01-01', 0.000, 'ASRS000179', 1, '2024-08-02 10:01:41', 'WMS', '2024-08-02 10:02:36', NULL, NULL, NULL, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('HK_202408021004493151722564289315', 1, 100, 1, '202408021004493171722564289317', NULL, '05-01-01-01', 0.000, 'ASRS000117', 1, '2024-08-02 10:04:49', 'WMS', '2024-08-02 10:05:42', NULL, NULL, NULL, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('HK_202408021019372511722565177251', 1, 100, 1, '202408021019372561722565177256', NULL, '07-01-01-01', 0.000, 'ASRS000034', 1, '2024-08-02 10:19:37', 'WMS', '2024-08-02 10:20:27', NULL, NULL, NULL, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('HK_202408021020033211722565203321', 1, 100, 1, '202408021020033231722565203323', NULL, '09-01-01-01', 0.000, 'ASRS000036', 1, '2024-08-02 10:20:03', 'WMS', '2024-08-02 10:21:30', NULL, NULL, NULL, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('HK_202408021020102341722565210234', 1, 100, 1, '202408021020102361722565210236', NULL, '01-01-02-01', 0.000, 'ASRS000032', 1, '2024-08-02 10:20:10', 'WMS', '2024-08-02 10:21:08', NULL, NULL, NULL, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('HK_202408021020225071722565222507', 1, 100, 1, '202408021020225091722565222509', NULL, '02-01-02-01', 0.000, 'ASRS000042', 1, '2024-08-02 10:20:23', 'WMS', '2024-08-02 10:26:00', NULL, NULL, NULL, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('HK_202408021020342311722565234231', 1, 100, 1, '202408021020342331722565234233', NULL, '04-01-02-01', 0.000, 'ASRS000018', 1, '2024-08-02 10:20:34', 'WMS', '2024-08-02 10:21:27', NULL, NULL, NULL, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('HK_202408021020464981722565246498', 1, 100, 1, '202408021020465011722565246501', NULL, '06-01-02-01', 0.000, 'ASRS000087', 1, '2024-08-02 10:20:47', 'WMS', '2024-08-02 10:21:37', NULL, NULL, NULL, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('HK_202408021021015391722565261539', 1, 100, 1, '202408021021015411722565261541', NULL, '08-01-02-01', 0.000, 'ASRS000043', 1, '2024-08-02 10:21:02', 'WMS', '2024-08-02 10:21:55', NULL, NULL, NULL, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('HK_202408021021051331722565265133', 1, 100, 1, '202408021021051361722565265136', NULL, '01-01-03-01', 0.000, 'ASRS000041', 1, '2024-08-02 10:21:05', 'WMS', '2024-08-02 10:22:02', NULL, NULL, NULL, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('HK_202408021021168321722565276832', 1, 100, 1, '202408021021168341722565276834', NULL, '03-01-02-01', 0.000, 'ASRS000040', 1, '2024-08-02 10:21:17', 'WMS', '2024-08-02 10:26:25', NULL, NULL, NULL, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('HK_202408021021258451722565285845', 1, 100, 1, '202408021021258471722565285847', NULL, '05-01-02-01', 0.000, 'ASRS000143', 1, '2024-08-02 10:21:26', 'WMS', '2024-08-02 10:22:18', NULL, NULL, NULL, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('HK_202408021021288281722565288828', 1, 100, 1, '202408021021288291722565288829', NULL, '07-01-02-01', 0.000, 'ASRS000002', 1, '2024-08-02 10:21:29', 'WMS', '2024-08-02 10:22:20', NULL, NULL, NULL, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('HK_202408021021417101722565301710', 1, 100, 1, '202408021021417121722565301712', NULL, '09-01-02-01', 0.000, 'ASRS000039', 1, '2024-08-02 10:21:42', 'WMS', '2024-08-02 10:22:29', NULL, NULL, NULL, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('HK_202408021022114221722565331422', 1, 100, 1, '202408021022114241722565331424', NULL, '01-01-04-01', 0.000, 'ASRS000081', 1, '2024-08-02 10:22:11', 'WMS', '2024-08-02 10:23:10', NULL, NULL, NULL, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('HK_202408021022153061722565335306', 1, 100, 1, '202408021022153091722565335309', NULL, '03-01-03-01', 0.000, 'ASRS000003', 1, '2024-08-02 10:22:15', 'WMS', '2024-08-02 10:26:36', NULL, NULL, NULL, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('HK_202408021022237011722565343701', 1, 100, 1, '202408021022237041722565343704', NULL, '04-01-03-01', 0.000, 'ASRS000008', 1, '2024-08-02 10:22:24', 'WMS', '2024-08-02 10:23:17', NULL, NULL, NULL, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('HK_202408021022543691722565374369', 1, 100, 1, '202408021022543711722565374371', NULL, '06-01-03-01', 0.000, 'ASRS000010', 1, '2024-08-02 10:22:54', 'WMS', '2024-08-02 10:23:45', NULL, NULL, NULL, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('HK_202408021022579461722565377946', 1, 100, 1, '202408021022579481722565377948', NULL, '08-01-03-01', 0.000, 'ASRS000006', 1, '2024-08-02 10:22:58', 'WMS', '2024-08-02 10:23:47', NULL, NULL, NULL, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('HK_202408021023015401722565381540', 1, 100, 1, '202408021023015431722565381543', NULL, '01-01-05-01', 0.000, 'ASRS000082', 1, '2024-08-02 10:23:02', 'WMS', '2024-08-02 10:24:02', NULL, NULL, NULL, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('HK_202408021023117081722565391708', 1, 100, 1, '202408021023117101722565391710', NULL, '02-01-04-01', 0.000, 'ASRS000016', 1, '2024-08-02 10:23:12', 'WMS', '2024-08-02 10:27:03', NULL, NULL, NULL, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('HK_202408021023257521722565405752', 1, 100, 1, '202408021023257541722565405754', NULL, '05-01-03-01', 0.000, 'ASRS000085', 1, '2024-08-02 10:23:26', 'WMS', '2024-08-02 10:24:19', NULL, NULL, NULL, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('HK_202408021023282051722565408205', 1, 100, 1, '202408021023282071722565408207', NULL, '07-01-03-01', 0.000, 'ASRS000084', 1, '2024-08-02 10:23:28', 'WMS', '2024-08-02 10:24:20', NULL, NULL, NULL, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('HK_202408021023318341722565411834', 1, 100, 1, '202408021023318351722565411835', NULL, '09-01-03-01', 0.000, 'ASRS000037', 1, '2024-08-02 10:23:32', 'WMS', '2024-08-02 10:24:22', NULL, NULL, NULL, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('HK_202408021023354171722565415417', 1, 100, 1, '202408021023354201722565415420', NULL, '02-01-05-01', 0.000, 'ASRS000021', 1, '2024-08-02 10:23:35', 'WMS', '2024-08-02 10:24:36', NULL, NULL, NULL, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('HK_202408021023519261722565431926', 1, 100, 1, '202408021023519281722565431928', NULL, '03-01-04-01', 0.000, 'ASRS000030', 1, '2024-08-02 10:23:52', 'WMS', '2024-08-02 10:27:15', NULL, NULL, NULL, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('HK_202408021023561141722565436114', 1, 100, 1, '202408021023561161722565436116', NULL, '04-01-04-01', 0.000, 'ASRS000012', 1, '2024-08-02 10:23:56', 'WMS', '2024-08-02 10:24:50', NULL, NULL, NULL, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('HK_202408021023596961722565439696', 1, 100, 1, '202408021023596981722565439698', NULL, '06-01-04-01', 0.000, 'ASRS000005', 1, '2024-08-02 10:24:00', 'WMS', '2024-08-02 10:24:52', NULL, NULL, NULL, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('HK_202408021024063041722565446304', 1, 100, 1, '202408021024063061722565446306', NULL, '08-01-04-01', 0.000, 'ASRS000033', 1, '2024-08-02 10:24:06', 'WMS', '2024-08-02 10:24:56', NULL, NULL, NULL, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('HK_202408021024290901722565469090', 1, 100, 1, '202408021024290911722565469091', NULL, '01-01-06-01', 0.000, 'ASRS000004', 1, '2024-08-02 10:24:29', 'WMS', '2024-08-02 10:25:48', NULL, NULL, NULL, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('HK_202408021024359921722565475992', 1, 100, 1, '202408021024359941722565475994', NULL, '03-01-05-01', 0.000, 'ASRS000023', 1, '2024-08-02 10:24:36', 'WMS', '2024-08-02 10:27:42', NULL, NULL, NULL, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('HK_202408021026129251722565572925', 1, 100, 1, '202408021026129281722565572928', NULL, '05-01-04-01', 0.000, 'ASRS000007', 1, '2024-08-02 10:26:13', 'WMS', '2024-08-02 10:27:08', NULL, NULL, NULL, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('HK_202408021026336501722565593650', 1, 100, 1, '202408021026336521722565593652', NULL, '07-01-04-01', 0.000, 'ASRS000014', 1, '2024-08-02 10:26:34', 'WMS', '2024-08-02 10:27:25', NULL, NULL, NULL, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('HK_202408021027339571722565653957', 1, 100, 1, '202408021027339591722565653959', NULL, '09-01-04-01', 0.000, 'ASRS000011', 1, '2024-08-02 10:27:34', 'WMS', '2024-08-02 10:28:25', NULL, NULL, NULL, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('HK_202408021027372231722565657223', 1, 100, 1, '202408021027372241722565657224', NULL, '01-01-07-01', 0.000, 'ASRS000009', 1, '2024-08-02 10:27:37', 'WMS', '2024-08-02 10:28:46', NULL, NULL, NULL, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('HK_202408021027411211722565661121', 1, 100, 1, '202408021027411231722565661123', NULL, '02-01-06-01', 0.000, 'ASRS000015', 1, '2024-08-02 10:27:41', 'WMS', '2024-08-02 13:13:23', NULL, NULL, NULL, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('HK_202408021027447141722565664714', 1, 100, 1, '202408021027447161722565664716', NULL, '04-01-05-01', 0.000, 'ASRS000013', 1, '2024-08-02 10:27:45', 'WMS', '2024-08-02 10:28:40', NULL, NULL, NULL, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('HK_202408021028009511722565680951', 1, 100, 1, '202408021028009531722565680953', NULL, '06-01-05-01', 0.000, 'ASRS000017', 1, '2024-08-02 10:28:01', 'WMS', '2024-08-02 10:28:54', NULL, NULL, NULL, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('HK_202408021028105301722565690530', 1, 100, 1, '202408021028105331722565690533', NULL, '08-01-05-01', 0.000, 'ASRS000097', 1, '2024-08-02 10:28:11', 'WMS', '2024-08-02 10:29:02', NULL, NULL, NULL, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('HK_202408021028141031722565694103', 1, 100, 1, '202408021028141051722565694105', NULL, '02-01-07-01', 0.000, 'ASRS000090', 1, '2024-08-02 10:28:14', 'WMS', '2024-08-02 10:29:17', NULL, NULL, NULL, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('HK_202408021028180031722565698003', 1, 100, 1, '202408021028180051722565698005', NULL, '03-01-06-01', 0.000, 'ASRS000022', 1, '2024-08-02 10:28:18', 'WMS', '2024-08-02 10:29:17', NULL, NULL, NULL, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('HK_202408021028216331722565701633', 1, 100, 1, '202408021028216361722565701636', NULL, '05-01-05-01', 0.000, 'ASRS000099', 1, '2024-08-02 10:28:22', 'WMS', '2024-08-02 10:29:22', NULL, NULL, NULL, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('HK_202408021028321101722565712110', 1, 100, 1, '202408021028321121722565712112', NULL, '07-01-05-01', 0.000, 'ASRS000089', 1, '2024-08-02 10:28:32', 'WMS', '2024-08-02 10:29:31', NULL, NULL, NULL, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('HK_202408021028374981722565717498', 1, 100, 1, '202408021028375011722565717501', NULL, '09-01-05-01', 0.000, 'ASRS000088', 1, '2024-08-02 10:28:38', 'WMS', '2024-08-02 10:29:30', NULL, NULL, NULL, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('HK_202408021029003121722565740312', 1, 100, 1, '202408021029003141722565740314', NULL, '01-01-08-01', 0.000, 'ASRS000095', 1, '2024-08-02 10:29:00', 'WMS', '2024-08-02 10:30:04', NULL, NULL, NULL, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('HK_202408021029044931722565744493', 1, 100, 1, '202408021029044981722565744498', NULL, '03-01-07-01', 0.000, 'ASRS000091', 1, '2024-08-02 10:29:04', 'WMS', '2024-08-02 10:30:05', NULL, NULL, NULL, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('HK_202408021029081411722565748141', 1, 100, 1, '202408021029081431722565748143', NULL, '04-01-06-01', 0.000, 'ASRS000020', 1, '2024-08-02 10:29:08', 'WMS', '2024-08-02 10:30:04', NULL, NULL, NULL, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('HK_202408021029405161722565780516', 1, 100, 1, '202408021029405181722565780518', NULL, '06-01-06-01', 0.000, 'ASRS000093', 1, '2024-08-02 10:29:41', 'WMS', '2024-08-02 12:30:32', NULL, NULL, NULL, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('HK_202408021030015291722565801529', 1, 100, 1, '202408021030015321722565801532', NULL, '08-01-06-01', 0.000, 'ASRS000092', 1, '2024-08-02 10:30:02', 'WMS', '2024-08-02 10:30:54', NULL, NULL, NULL, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('HK_202408021030072331722565807233', 1, 100, 1, '202408021030072361722565807236', NULL, '01-01-09-01', 0.000, 'ASRS000098', 1, '2024-08-02 10:30:07', 'WMS', '2024-08-02 10:31:12', NULL, NULL, NULL, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('HK_202408021030108051722565810805', 1, 100, 1, '202408021030108071722565810807', NULL, '02-01-08-01', 0.000, 'ASRS000091', 1, '2024-08-02 10:30:11', 'WMS', '2024-08-02 10:31:13', NULL, NULL, NULL, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('HK_202408021030177491722565817749', 1, 100, 1, '202408021030177501722565817750', NULL, '05-01-06-01', 0.000, 'ASRS000100', 1, '2024-08-02 10:30:18', 'WMS', '2024-08-02 12:32:25', NULL, NULL, NULL, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('HK_202408021030501601722565850160', 1, 100, 1, '202408021030501631722565850163', NULL, '07-01-06-01', 0.000, 'ASRS000062', 1, '2024-08-02 10:30:50', 'WMS', '2024-08-02 12:32:25', NULL, NULL, NULL, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('HK_202408021030531291722565853129', 1, 100, 1, '202408021030531311722565853131', NULL, '09-01-06-01', 0.000, 'ASRS000063', 1, '2024-08-02 10:30:53', 'WMS', '2024-08-02 10:31:46', NULL, NULL, NULL, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('HK_202408021031507251722565910725', 1, 100, 1, '202408021031507271722565910727', NULL, '02-01-09-01', 0.000, 'ASRS000064', 1, '2024-08-02 10:31:51', 'WMS', '2024-08-02 10:32:57', NULL, NULL, NULL, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('HK_202408021032168851722565936885', 1, 100, 1, '202408021032168921722565936892', NULL, '03-01-08-01', 0.000, 'ASRS000070', 1, '2024-08-02 10:32:17', 'WMS', '2024-08-02 12:40:53', NULL, NULL, NULL, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('HK_202408021032261241722565946124', 1, 100, 1, '202408021032261271722565946127', NULL, '04-01-07-01', 0.000, 'ASRS000060', 1, '2024-08-02 10:32:26', 'WMS', '2024-08-02 10:33:50', NULL, NULL, NULL, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('HK_202408021032264751722565946475', 1, 100, 1, '202408021032264821722565946482', NULL, '06-01-07-01', 0.000, 'ASRS000057', 1, '2024-08-02 10:32:26', 'WMS', '2024-08-02 12:32:36', NULL, NULL, NULL, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('HK_202408021032417201722565961720', 1, 100, 1, '202408021032417221722565961722', NULL, '08-01-07-01', 0.000, 'ASRS000055', 1, '2024-08-02 10:32:42', 'WMS', '2024-08-02 10:33:58', NULL, NULL, NULL, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('HK_202408021032477361722565967736', 1, 100, 1, '202408021032477371722565967737', NULL, '01-01-10-01', 0.000, 'ASRS000050', 1, '2024-08-02 10:32:48', 'WMS', '2024-08-02 10:33:54', NULL, NULL, NULL, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('HK_202408021032580901722565978090', 1, 100, 1, '202408021032580921722565978092', NULL, '03-01-09-01', 0.000, 'ASRS000075', 1, '2024-08-02 10:32:58', 'WMS', '2024-08-02 13:05:37', NULL, NULL, NULL, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('HK_202408021033015051722565981505', 1, 100, 1, '202408021033015071722565981507', NULL, '05-01-07-01', 0.000, 'ASRS000086', 1, '2024-08-02 10:33:02', 'WMS', '2024-08-02 10:34:21', NULL, NULL, NULL, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('HK_202408021033111341722565991134', 1, 100, 1, '202408021033111361722565991136', NULL, '07-01-07-01', 0.000, 'ASRS000029', 1, '2024-08-02 10:33:11', 'WMS', '2024-08-02 12:33:07', NULL, NULL, NULL, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('HK_202408021033243251722566004325', 1, 100, 1, '202408021033243271722566004327', NULL, '09-01-07-01', 0.000, 'ASRS000066', 1, '2024-08-02 10:33:24', 'WMS', '2024-08-02 10:34:29', NULL, NULL, NULL, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('HK_202408021033495461722566029546', 1, 100, 1, '202408021033495481722566029548', NULL, '01-01-11-01', 0.000, 'ASRS000058', 1, '2024-08-02 10:33:50', 'WMS', '2024-08-02 10:34:57', NULL, NULL, NULL, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('HK_202408021033564101722566036410', 1, 100, 1, '202408021033564131722566036413', NULL, '02-01-10-01', 0.000, 'ASRS000079', 1, '2024-08-02 10:33:56', 'WMS', '2024-08-06 14:45:21', NULL, NULL, NULL, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('HK_202408021034099561722566049956', 1, 100, 1, '202408021034099591722566049959', NULL, '04-01-08-01', 0.000, 'ASRS000067', 1, '2024-08-02 10:34:10', 'WMS', '2024-08-02 12:41:26', NULL, NULL, NULL, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('HK_202408021034147391722566054739', 1, 100, 1, '202408021034147411722566054741', NULL, '06-01-08-01', 0.000, 'ASRS000059', 1, '2024-08-02 10:34:15', 'WMS', '2024-08-02 12:33:40', NULL, NULL, NULL, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('HK_202408021034210141722566061014', 1, 100, 1, '202408021034210161722566061016', NULL, '08-01-08-01', 0.000, 'ASRS000073', 1, '2024-08-02 10:34:21', 'WMS', '2024-08-02 10:35:16', NULL, NULL, NULL, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('HK_202408021034276281722566067628', 1, 100, 1, '202408021034276301722566067630', NULL, '02-01-11-01', 0.000, 'ASRS000049', 1, '2024-08-02 10:34:28', 'WMS', '2024-08-02 10:35:35', NULL, NULL, NULL, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('HK_202408021034324191722566072419', 1, 100, 1, '202408021034324211722566072421', NULL, '03-01-10-01', 0.000, 'ASRS000069', 1, '2024-08-02 10:34:32', 'WMS', '2024-08-02 12:41:27', NULL, NULL, NULL, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('HK_202408021034381151722566078115', 1, 100, 1, '202408021034381181722566078118', NULL, '05-01-08-01', 0.000, 'ASRS000052', 1, '2024-08-02 10:34:38', 'WMS', '2024-08-02 12:32:56', NULL, NULL, NULL, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('HK_202408021034411451722566081145', 1, 100, 1, '202408021034411471722566081147', NULL, '07-01-08-01', 0.000, 'ASRS000074', 1, '2024-08-02 10:34:41', 'WMS', '2024-08-02 12:33:51', NULL, NULL, NULL, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('HK_202408021034447061722566084706', 1, 100, 1, '202408021034447081722566084708', NULL, '09-01-08-01', 0.000, 'ASRS000083', 1, '2024-08-02 10:34:45', 'WMS', '2024-08-02 10:35:48', NULL, NULL, NULL, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('HK_202408021034495291722566089529', 1, 100, 1, '202408021034495311722566089531', NULL, '01-01-12-01', 0.000, 'ASRS000024', 1, '2024-08-02 10:34:50', 'WMS', '2024-08-02 10:36:12', NULL, NULL, NULL, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('HK_202408021035018201722566101820', 1, 100, 1, '202408021035018221722566101822', NULL, '03-01-11-01', 0.000, 'ASRS000027', 1, '2024-08-02 10:35:02', 'WMS', '2024-08-02 12:41:38', NULL, NULL, NULL, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('HK_202408021035054281722566105428', 1, 100, 1, '202408021035054301722566105430', NULL, '04-01-09-01', 0.000, 'ASRS000068', 1, '2024-08-02 10:35:05', 'WMS', '2024-08-02 12:33:30', NULL, NULL, NULL, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('HK_202408021035114281722566111428', 1, 100, 1, '202408021035114301722566111430', NULL, '06-01-09-01', 0.000, 'ASRS000072', 1, '2024-08-02 10:35:11', 'WMS', '2024-08-02 13:12:46', NULL, NULL, NULL, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('HK_202408021035168371722566116837', 1, 100, 1, '202408021035168391722566116839', NULL, '08-01-09-01', 0.000, 'ASRS000077', 1, '2024-08-02 10:35:17', 'WMS', '2024-08-02 10:36:22', NULL, NULL, NULL, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('HK_202408021035170811722566117081', 1, 100, 1, '202408021035170841722566117084', NULL, '01-01-13-01', 0.000, 'ASRS000038', 1, '2024-08-02 10:35:17', 'WMS', '2024-08-02 10:36:56', NULL, NULL, NULL, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('HK_202408021035300301722566130030', 1, 100, 1, '202408021035300321722566130032', NULL, '02-01-12-01', 0.000, 'ASRS000028', 1, '2024-08-02 10:35:30', 'WMS', '2024-08-02 12:42:23', NULL, NULL, NULL, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('HK_202408021035336571722566133657', 1, 100, 1, '202408021035336581722566133658', NULL, '05-01-09-01', 0.000, 'ASRS000047', 1, '2024-08-02 10:35:34', 'WMS', '2024-08-02 12:34:34', NULL, NULL, NULL, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('HK_202408021035425871722566142587', 1, 100, 1, '202408021035425891722566142589', NULL, '07-01-09-01', 0.000, 'ASRS000044', 1, '2024-08-02 10:35:43', 'WMS', '2024-08-02 13:08:47', NULL, NULL, NULL, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('HK_202408021035435561722566143556', 1, 100, 1, '202408021035435581722566143558', NULL, '02-01-13-01', 0.000, 'ASRS000031', 1, '2024-08-02 10:35:44', 'WMS', '2024-08-02 10:37:07', NULL, NULL, NULL, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('HK_202408021035456001722566145600', 1, 100, 1, '202408021035456031722566145603', NULL, '09-01-09-01', 0.000, 'ASRS000025', 1, '2024-08-02 10:35:46', 'WMS', '2024-08-02 10:36:55', NULL, NULL, NULL, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('HK_202408021035477321722566147732', 1, 100, 1, '202408021035477341722566147734', NULL, '03-01-12-01', 0.000, 'ASRS000197', 1, '2024-08-02 10:35:48', 'WMS', '2024-08-02 13:07:19', NULL, NULL, NULL, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('HK_202408021035486081722566148608', 1, 100, 1, '202408021035486101722566148610', NULL, '04-01-10-01', 0.000, 'ASRS000080', 1, '2024-08-02 10:35:49', 'WMS', '2024-08-02 13:07:04', NULL, NULL, NULL, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('HK_202408021035510401722566151040', 1, 100, 1, '202408021035510421722566151042', NULL, '01-01-14-01', 0.000, 'ASRS000048', 1, '2024-08-02 10:35:51', 'WMS', '2024-08-02 10:38:11', NULL, NULL, NULL, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('HK_202408021035543071722566154307', 1, 100, 1, '202408021035543091722566154309', NULL, '06-01-10-01', 0.000, 'ASRS000160', 1, '2024-08-02 10:35:54', 'WMS', '2024-08-02 13:13:33', NULL, NULL, NULL, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('HK_202408021035585271722566158527', 1, 100, 1, '202408021035585281722566158528', NULL, '08-01-10-01', 0.000, 'ASRS000188', 1, '2024-08-02 10:35:59', 'WMS', '2024-08-02 12:34:39', NULL, NULL, NULL, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('HK_202408021035597211722566159721', 1, 100, 1, '202408021035597231722566159723', NULL, '03-01-13-01', 0.000, 'ASRS000078', 1, '2024-08-02 10:36:00', 'WMS', '2024-08-02 12:42:27', NULL, NULL, NULL, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('HK_202408021036090281722566169028', 1, 100, 1, '202408021036090301722566169030', NULL, '05-01-10-01', 0.000, 'ASRS000045', 1, '2024-08-02 10:36:09', 'WMS', '2024-08-02 13:09:36', NULL, NULL, NULL, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('HK_202408021036120221722566172022', 1, 100, 1, '202408021036120251722566172025', NULL, '01-01-15-01', 0.000, 'ASRS000053', 1, '2024-08-02 10:36:12', 'WMS', '2024-08-02 10:38:00', NULL, NULL, NULL, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('HK_202408021036147501722566174750', 1, 100, 1, '202408021036147531722566174753', NULL, '07-01-10-01', 0.000, 'ASRS000199', 1, '2024-08-02 10:36:15', 'WMS', '2024-08-02 13:14:07', NULL, NULL, NULL, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('HK_202408021036156091722566175609', 1, 100, 1, '202408021036156101722566175610', NULL, '09-01-10-01', 0.000, 'ASRS000056', 1, '2024-08-02 10:36:16', 'WMS', '2024-08-02 10:37:31', NULL, NULL, NULL, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('HK_202408021036192201722566179220', 1, 100, 1, '202408021036192221722566179222', NULL, '02-01-14-01', 0.000, 'ASRS000054', 1, '2024-08-02 10:36:19', 'WMS', '2024-08-02 12:57:41', NULL, NULL, NULL, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('HK_202408021036228281722566182828', 1, 100, 1, '202408021036228291722566182829', NULL, '04-01-11-01', 0.000, 'ASRS000061', 1, '2024-08-02 10:36:23', 'WMS', '2024-08-02 12:49:25', NULL, NULL, NULL, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('HK_202408021036234041722566183404', 1, 100, 1, '202408021036234081722566183408', NULL, '02-01-15-01', 0.000, 'ASRS000166', 1, '2024-08-02 10:36:23', 'WMS', '2024-08-02 12:43:33', NULL, NULL, NULL, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('HK_202408021036258081722566185808', 1, 100, 1, '202408021036258101722566185810', NULL, '06-01-11-01', 0.000, 'ASRS000051', 1, '2024-08-02 10:36:26', 'WMS', '2024-08-02 13:13:22', NULL, NULL, NULL, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('HK_202408021036294271722566189427', 1, 100, 1, '202408021036294291722566189429', NULL, '08-01-11-01', 0.000, 'ASRS000035', 1, '2024-08-02 10:36:29', 'WMS', '2024-08-02 10:37:42', NULL, NULL, NULL, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('HK_202408021036374931722566197493', 1, 100, 1, '202408021036374941722566197494', NULL, '03-01-14-01', 0.000, 'ASRS000046', 1, '2024-08-02 10:36:37', 'WMS', '2024-08-02 13:07:57', NULL, NULL, NULL, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('HK_202408021036381301722566198130', 1, 100, 1, '202408021036381321722566198132', NULL, '01-01-16-01', 0.000, 'ASRS000112', 1, '2024-08-02 10:36:38', 'WMS', '2024-08-02 12:43:44', NULL, NULL, NULL, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('HK_202408021036405071722566200507', 1, 100, 1, '202408021036405091722566200509', NULL, '05-01-11-01', 0.000, 'ASRS000065', 1, '2024-08-02 10:36:41', 'WMS', '2024-08-02 13:08:48', NULL, NULL, NULL, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('HK_202408021036425781722566202578', 1, 100, 1, '202408021036425791722566202579', NULL, '07-01-11-01', 0.000, 'ASRS000116', 1, '2024-08-02 10:36:43', 'WMS', '2024-08-02 13:07:25', NULL, NULL, NULL, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('HK_202408021036486121722566208612', 1, 100, 1, '202408021036486131722566208613', NULL, '09-01-11-01', 0.000, 'ASRS000118', 1, '2024-08-02 10:36:49', 'WMS', '2024-08-02 12:34:51', NULL, NULL, NULL, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('HK_202408021036537011722566213701', 1, 100, 1, '202408021036537041722566213704', NULL, '03-01-15-01', 0.000, 'ASRS000107', 1, '2024-08-02 10:36:54', 'WMS', '2024-08-02 12:43:43', NULL, NULL, NULL, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('HK_202408021037069001722566226900', 1, 100, 1, '202408021037069021722566226902', NULL, '01-01-17-01', 0.000, 'ASRS000198', 1, '2024-08-02 10:37:07', 'WMS', '2024-08-02 12:44:40', NULL, NULL, NULL, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('HK_202408021037120291722566232029', 1, 100, 1, '202408021037120321722566232032', NULL, '04-01-12-01', 0.000, 'ASRS000168', 1, '2024-08-02 10:37:12', 'WMS', '2024-08-02 12:43:42', NULL, NULL, NULL, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('HK_202408021037171291722566237129', 1, 100, 1, '202408021037171321722566237132', NULL, '06-01-12-01', 0.000, 'ASRS000193', 1, '2024-08-02 10:37:17', 'WMS', '2024-08-02 12:43:29', NULL, NULL, NULL, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('HK_202408021037282551722566248255', 1, 100, 1, '202408021037282571722566248257', NULL, '08-01-12-01', 0.000, 'ASRS000026', 1, '2024-08-02 10:37:28', 'WMS', '2024-08-02 12:35:28', NULL, NULL, NULL, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('HK_202408021037318211722566251821', 1, 100, 1, '202408021037318221722566251822', NULL, '02-01-16-01', 0.000, 'ASRS000102', 1, '2024-08-02 10:37:32', 'WMS', '2024-08-02 12:43:55', NULL, NULL, NULL, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('HK_202408021037357131722566255713', 1, 100, 1, '202408021037357151722566255715', NULL, '02-01-17-01', 0.000, 'ASRS000101', 1, '2024-08-02 10:37:36', 'WMS', '2024-08-02 12:44:28', NULL, NULL, NULL, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('HK_202408021232169301722573136930', 1, 100, 1, '202408021232169381722573136938', NULL, '05-01-12-01', 0.000, 'ASRS000076', 1, '2024-08-02 12:32:17', 'WMS', '2024-08-02 12:44:19', NULL, NULL, NULL, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('HK_202408021316276511722575787651', 1, 100, 1, '202408021316276631722575787663', NULL, '07-01-12-01', 0.000, 'ASRS000113', 1, '2024-08-02 13:16:28', 'WMS', '2024-08-02 13:17:50', NULL, NULL, NULL, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('HK_202408021316313621722575791362', 1, 100, 1, '202408021316313711722575791371', NULL, '09-01-12-01', 0.000, 'ASRS000121', 1, '2024-08-02 13:16:31', 'WMS', '2024-08-02 13:17:54', NULL, NULL, NULL, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('HK_202408021316437351722575803735', 1, 100, 1, '202408021316437391722575803739', NULL, '03-01-16-01', 0.000, 'ASRS000167', 1, '2024-08-02 13:16:44', 'WMS', '2024-08-02 13:26:33', NULL, NULL, NULL, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('HK_202408021316484911722575808491', 1, 100, 1, '202408021316485071722575808507', NULL, '01-01-18-01', 0.000, 'ASRS000200', 1, '2024-08-02 13:16:49', 'WMS', '2024-08-02 13:26:49', NULL, NULL, NULL, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('HK_202408021316540241722575814024', 1, 100, 1, '202408021316540251722575814025', NULL, '04-01-13-01', 0.000, 'ASRS000120', 1, '2024-08-02 13:16:54', 'WMS', '2024-08-02 13:18:19', NULL, NULL, NULL, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('HK_202408021316593161722575819316', 1, 100, 1, '202408021316593201722575819320', NULL, '06-01-13-01', 0.000, 'ASRS000191', 1, '2024-08-02 13:16:59', 'WMS', '2024-08-02 13:18:28', NULL, NULL, NULL, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('HK_202408021317038141722575823814', 1, 100, 1, '202408021317038271722575823827', NULL, '08-01-13-01', 0.000, 'ASRS000105', 1, '2024-08-02 13:17:04', 'WMS', '2024-08-02 13:18:32', NULL, NULL, NULL, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('HK_202408021317083151722575828315', 1, 100, 1, '202408021317083251722575828325', NULL, '03-01-17-01', 0.000, 'ASRS000155', 1, '2024-08-02 13:17:08', 'WMS', '2024-08-02 13:23:31', NULL, NULL, NULL, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('HK_202408021317176291722575837629', 1, 100, 1, '202408021317176301722575837630', NULL, '01-01-19-01', 0.000, 'ASRS000194', 1, '2024-08-02 13:17:18', 'WMS', '2024-08-02 13:23:44', NULL, NULL, NULL, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('HK_202408021317245781722575844578', 1, 100, 1, '202408021317245831722575844583', NULL, '05-01-13-01', 0.000, 'ASRS000169', 1, '2024-08-02 13:17:25', 'WMS', '2024-08-02 13:22:38', NULL, NULL, NULL, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('HK_202408021317470191722575867019', 1, 100, 1, '202408021317470231722575867023', NULL, '07-01-13-01', 0.000, 'ASRS000151', 1, '2024-08-02 13:17:47', 'WMS', '2024-08-02 13:19:12', NULL, NULL, NULL, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('HK_202408021317503001722575870300', 1, 100, 1, '202408021317503161722575870316', NULL, '09-01-13-01', 0.000, 'ASRS000119', 1, '2024-08-02 13:17:50', 'WMS', '2024-08-02 13:19:14', NULL, NULL, NULL, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('HK_202408021317547961722575874796', 1, 100, 1, '202408021317548071722575874807', NULL, '02-01-18-01', 0.000, 'ASRS000192', 1, '2024-08-02 13:17:55', 'WMS', '2024-08-02 13:23:42', NULL, NULL, NULL, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('HK_202408021318056791722575885679', 1, 100, 1, '202408021318056851722575885685', NULL, '02-01-19-01', 0.000, 'ASRS000190', 1, '2024-08-02 13:18:06', 'WMS', '2024-08-02 13:23:55', NULL, NULL, NULL, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('HK_202408021318089871722575888987', 1, 100, 1, '202408021318089881722575888988', NULL, '04-01-14-01', 0.000, 'ASRS000109', 1, '2024-08-02 13:18:09', 'WMS', '2024-08-02 13:26:32', NULL, NULL, NULL, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('HK_202408021318137861722575893786', 1, 100, 1, '202408021318137951722575893795', NULL, '06-01-14-01', 0.000, 'ASRS000189', 1, '2024-08-02 13:18:14', 'WMS', '2024-08-02 13:22:45', NULL, NULL, NULL, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('HK_202408021318182541722575898254', 1, 100, 1, '202408021318182611722575898261', NULL, '08-01-14-01', 0.000, 'ASRS000158', 1, '2024-08-02 13:18:18', 'WMS', '2024-08-02 13:19:53', NULL, NULL, NULL, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('HK_202408021318227671722575902767', 1, 100, 1, '202408021318227721722575902772', NULL, '03-01-18-01', 0.000, 'ASRS000111', 1, '2024-08-02 13:18:23', 'WMS', '2024-08-02 13:24:28', NULL, NULL, NULL, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('HK_202408021318328981722575912898', 1, 100, 1, '202408021318329021722575912902', NULL, '01-01-20-01', 0.000, 'ASRS000103', 1, '2024-08-02 13:18:33', 'WMS', '2024-08-02 13:27:01', NULL, NULL, NULL, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('HK_202408021318361771722575916177', 1, 100, 1, '202408021318361891722575916189', NULL, '05-01-14-01', 0.000, 'ASRS000161', 1, '2024-08-02 13:18:36', 'WMS', '2024-08-02 13:23:52', NULL, NULL, NULL, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('HK_202408021318394921722575919492', 1, 100, 1, '202408021318394951722575919495', NULL, '07-01-14-01', 0.000, 'ASRS000152', 1, '2024-08-02 13:18:39', 'WMS', '2024-08-02 13:23:41', NULL, NULL, NULL, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('HK_202408021318428541722575922854', 1, 100, 1, '202408021318428681722575922868', NULL, '09-01-14-01', 0.000, 'ASRS000170', 1, '2024-08-02 13:18:43', 'WMS', '2024-08-02 13:23:36', NULL, NULL, NULL, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('HK_202408021318460741722575926074', 1, 100, 1, '202408021318460891722575926089', NULL, '03-01-19-01', 0.000, 'ASRS000153', 1, '2024-08-02 13:18:46', 'WMS', '2024-08-02 13:24:40', NULL, NULL, NULL, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('HK_202408021319218641722575961864', 1, 100, 1, '202408021319218651722575961865', NULL, '01-01-21-01', 0.000, 'ASRS000108', 1, '2024-08-02 13:19:22', 'WMS', '2024-08-02 13:24:45', NULL, NULL, NULL, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('HK_202408021319284111722575968411', 1, 100, 1, '202408021319284121722575968412', NULL, '04-01-15-01', 0.000, 'ASRS000110', 1, '2024-08-02 13:19:28', 'WMS', '2024-08-02 13:24:04', NULL, NULL, NULL, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('HK_202408021320512301722576051230', 1, 100, 1, '202408021320512391722576051239', NULL, '06-01-15-01', 0.000, 'ASRS000171', 1, '2024-08-02 13:20:51', 'WMS', '2024-08-02 13:24:22', NULL, NULL, NULL, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('HK_202408021320545441722576054544', 1, 100, 1, '202408021320545451722576054545', NULL, '08-01-15-01', 0.000, 'ASRS000159', 1, '2024-08-02 13:20:55', 'WMS', '2024-08-02 13:24:17', NULL, NULL, NULL, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('HK_202408021320577721722576057772', 1, 100, 1, '202408021320577831722576057783', NULL, '02-01-20-01', 0.000, 'ASRS000156', 1, '2024-08-02 13:20:58', 'WMS', '2024-08-02 13:25:26', NULL, NULL, NULL, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('HK_202408021321010901722576061090', 1, 100, 1, '202408021321011001722576061100', NULL, '02-01-21-01', 0.000, 'ASRS000157', 1, '2024-08-02 13:21:01', 'WMS', '2024-08-02 13:24:56', NULL, NULL, NULL, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('HK_202408021321044681722576064468', 1, 100, 1, '202408021321044711722576064471', NULL, '05-01-15-01', 0.000, 'ASRS000164', 1, '2024-08-02 13:21:04', 'WMS', '2024-08-02 13:25:02', NULL, NULL, NULL, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('HK_202408021321077811722576067781', 1, 100, 1, '202408021321077931722576067793', NULL, '07-01-15-01', 0.000, 'ASRS000162', 1, '2024-08-02 13:21:08', 'WMS', '2024-08-02 13:25:02', NULL, NULL, NULL, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('HK_202408021321149431722576074943', 1, 100, 1, '202408021321149521722576074952', NULL, '09-01-15-01', 0.000, 'ASRS000104', 1, '2024-08-02 13:21:15', 'WMS', '2024-08-06 13:44:52', NULL, NULL, NULL, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('HK_202408061401369981722924096998', 1, 100, 1, '202408061401370081722924097008', NULL, '07-01-01-01', 0.000, 'ASRS000037', 1, '2024-08-06 14:01:37', 'WMS', '2024-08-06 14:36:03', NULL, NULL, NULL, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('HK_202408061401435921722924103592', 1, 100, 1, '202408061401436021722924103602', NULL, '08-01-01-01', 0.000, 'ASRS000002', 1, '2024-08-06 14:01:44', 'WMS', '2024-08-06 14:38:00', NULL, NULL, NULL, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('HK_202408061401497571722924109757', 1, 100, 1, '202408061401497731722924109773', NULL, '02-01-02-01', 0.000, 'ASRS000006', 1, '2024-08-06 14:01:50', 'WMS', '2024-08-06 14:38:03', NULL, NULL, NULL, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('HK_202408061401552621722924115262', 1, 100, 1, '202408061401552741722924115274', NULL, '01-01-02-01', 0.000, 'ASRS000143', 1, '2024-08-06 14:01:55', 'WMS', '2024-08-06 14:38:48', NULL, NULL, NULL, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('HK_202408061402007161722924120716', 1, 100, 1, '202408061402007281722924120728', NULL, '04-01-02-01', 0.000, 'ASRS000087', 1, '2024-08-06 14:02:01', 'WMS', '2024-08-06 14:37:25', NULL, NULL, NULL, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('HK_202408061402141091722924134109', 1, 100, 1, '202408061402141121722924134112', NULL, '06-01-02-01', 0.000, 'ASRS000011', 1, '2024-08-06 14:02:14', 'WMS', '2024-08-06 14:38:14', NULL, NULL, NULL, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('HK_202408061402180711722924138071', 1, 100, 1, '202408061402180821722924138082', NULL, '09-01-01-01', 0.000, 'ASRS000082', 1, '2024-08-06 14:02:18', 'WMS', '2024-08-06 14:35:05', NULL, NULL, NULL, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('HK_202408061402215831722924141583', 1, 100, 1, '202408061402215991722924141599', NULL, '03-01-02-01', 0.000, 'ASRS000021', 1, '2024-08-06 14:02:22', 'WMS', '2024-08-06 14:36:03', NULL, NULL, NULL, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('HK_202408061402250561722924145056', 1, 100, 1, '202408061402250611722924145061', NULL, '01-01-03-01', 0.000, 'ASRS000084', 1, '2024-08-06 14:02:25', 'WMS', '2024-08-06 14:36:37', NULL, NULL, NULL, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('HK_202408061402288251722924148825', 1, 100, 1, '202408061402288361722924148836', NULL, '05-01-02-01', 0.000, 'ASRS000004', 1, '2024-08-06 14:02:29', 'WMS', '2024-08-06 14:36:19', NULL, NULL, NULL, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('HK_202408061402325111722924152511', 1, 100, 1, '202408061402325221722924152522', NULL, '07-01-02-01', 0.000, 'ASRS000009', 1, '2024-08-06 14:02:33', 'WMS', '2024-08-06 14:37:22', NULL, NULL, NULL, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('HK_202408061402359891722924155989', 1, 100, 1, '202408061402360051722924156005', NULL, '08-01-02-01', 0.000, 'ASRS000090', 1, '2024-08-06 14:02:36', 'WMS', '2024-08-06 14:35:48', NULL, NULL, NULL, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('HK_202408061402398221722924159822', 1, 100, 1, '202408061402398351722924159835', NULL, '03-02-02-01', 0.000, 'ASRS000005', 1, '2024-08-06 14:02:40', 'WMS', '2024-08-06 14:36:42', NULL, NULL, NULL, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('HK_202408061402434881722924163488', 1, 100, 1, '202408061402434961722924163496', NULL, '01-01-04-01', 0.000, 'ASRS000012', 1, '2024-08-06 14:02:43', 'WMS', '2024-08-06 14:37:04', NULL, NULL, NULL, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('HK_202408061402471921722924167192', 1, 100, 1, '202408061402471981722924167198', NULL, '04-01-03-01', 0.000, 'ASRS000097', 1, '2024-08-06 14:02:47', 'WMS', '2024-08-06 14:35:34', NULL, NULL, NULL, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('HK_202408061402504881722924170488', 1, 100, 1, '202408061402504921722924170492', NULL, '06-01-03-01', 0.000, 'ASRS000013', 1, '2024-08-06 14:02:50', 'WMS', '2024-08-06 14:36:43', NULL, NULL, NULL, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('HK_202408061402540761722924174076', 1, 100, 1, '202408061402540851722924174085', NULL, '09-01-02-01', 0.000, 'ASRS000088', 1, '2024-08-06 14:02:54', 'WMS', '2024-08-06 14:36:19', NULL, NULL, NULL, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('HK_202408061402579261722924177926', 1, 100, 1, '202408061402579381722924177938', NULL, '03-02-03-01', 0.000, 'ASRS000014', 1, '2024-08-06 14:02:58', 'WMS', '2024-08-06 14:37:22', NULL, NULL, NULL, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('HK_202408061403018251722924181825', 1, 100, 1, '202408061403018401722924181840', NULL, '01-01-05-01', 0.000, 'ASRS000007', 1, '2024-08-06 14:03:02', 'WMS', '2024-08-06 14:37:48', NULL, NULL, NULL, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('HK_202408061403060441722924186044', 1, 100, 1, '202408061403060611722924186061', NULL, '05-01-03-01', 0.000, 'ASRS000020', 1, '2024-08-06 14:03:06', 'WMS', '2024-08-06 14:37:13', NULL, NULL, NULL, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('HK_202408061403097091722924189709', 1, 100, 1, '202408061403097211722924189721', NULL, '07-01-03-01', 0.000, 'ASRS000017', 1, '2024-08-06 14:03:10', 'WMS', '2024-08-06 14:37:33', NULL, NULL, NULL, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('HK_202408061403135311722924193531', 1, 100, 1, '202408061403135401722924193540', NULL, '08-01-03-01', 0.000, 'ASRS000089', 1, '2024-08-06 14:03:14', 'WMS', '2024-08-06 14:38:27', NULL, NULL, NULL, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('HK_202408061403170751722924197075', 1, 100, 1, '202408061403170891722924197089', NULL, '02-02-04-01', 0.000, 'ASRS000094', 1, '2024-08-06 14:03:17', 'WMS', '2024-08-06 14:37:33', NULL, NULL, NULL, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('HK_202408061403204841722924200484', 1, 100, 1, '202408061403204941722924200494', NULL, '02-01-05-01', 0.000, 'ASRS000062', 1, '2024-08-06 14:03:20', 'WMS', '2024-08-06 14:35:52', NULL, NULL, NULL, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('HK_202408061403242391722924204239', 1, 100, 1, '202408061403242431722924204243', NULL, '04-01-04-01', 0.000, 'ASRS000099', 1, '2024-08-06 14:03:24', 'WMS', '2024-08-06 14:35:23', NULL, NULL, NULL, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('HK_202408061403278901722924207890', 1, 100, 1, '202408061403279021722924207902', NULL, '06-01-04-01', 0.000, 'ASRS000060', 1, '2024-08-06 14:03:28', 'WMS', '2024-08-06 14:38:02', NULL, NULL, NULL, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('HK_202408061403355241722924215524', 1, 100, 1, '202408061403355401722924215540', NULL, '09-01-03-01', 0.000, 'ASRS000064', 1, '2024-08-06 14:03:36', 'WMS', '2024-08-06 14:37:27', NULL, NULL, NULL, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('HK_202408061403389411722924218941', 1, 100, 1, '202408061403389511722924218951', NULL, '03-02-04-01', 0.000, 'ASRS000050', 1, '2024-08-06 14:03:39', 'WMS', '2024-08-06 14:36:15', NULL, NULL, NULL, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('HK_202408061403429171722924222917', 1, 100, 1, '202408061403429331722924222933', NULL, '01-01-06-01', 0.000, 'ASRS000058', 1, '2024-08-06 14:03:43', 'WMS', '2024-08-06 14:36:24', NULL, NULL, NULL, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('HK_202408061403470561722924227056', 1, 100, 1, '202408061403470711722924227071', NULL, '05-01-04-01', 0.000, 'ASRS000063', 1, '2024-08-06 14:03:47', 'WMS', '2024-08-06 14:36:07', NULL, NULL, NULL, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('HK_202408061403513871722924231387', 1, 100, 1, '202408061403514001722924231400', NULL, '07-01-04-01', 0.000, 'ASRS000057', 1, '2024-08-06 14:03:51', 'WMS', '2024-08-06 14:36:16', NULL, NULL, NULL, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('HK_202408061403555721722924235572', 1, 100, 1, '202408061403555821722924235582', NULL, '08-01-04-01', 0.000, 'ASRS000100', 1, '2024-08-06 14:03:56', 'WMS', '2024-08-06 14:36:48', NULL, NULL, NULL, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('HK_202408061404126191722924252619', 1, 100, 1, '202408061404126201722924252620', NULL, '03-02-05-01', 0.000, 'ASRS000052', 1, '2024-08-06 14:04:13', 'WMS', '2024-08-06 14:36:54', NULL, NULL, NULL, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('HK_202408061404176441722924257644', 1, 100, 1, '202408061404176491722924257649', NULL, '01-01-07-01', 0.000, 'ASRS000049', 1, '2024-08-06 14:04:18', 'WMS', '2024-08-06 14:37:17', NULL, NULL, NULL, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('HK_202408061404258091722924265809', 1, 100, 1, '202408061404258211722924265821', NULL, '04-01-05-01', 0.000, 'ASRS000055', 1, '2024-08-06 14:04:26', 'WMS', '2024-08-06 14:36:46', NULL, NULL, NULL, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('HK_202408061404297471722924269747', 1, 100, 1, '202408061404297581722924269758', NULL, '06-01-05-01', 0.000, 'ASRS000066', 1, '2024-08-06 14:04:30', 'WMS', '2024-08-06 14:36:56', NULL, NULL, NULL, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('HK_202408061404384651722924278465', 1, 100, 1, '202408061404384781722924278478', NULL, '09-01-04-01', 0.000, 'ASRS000008', 1, '2024-08-06 14:04:38', 'WMS', '2024-08-06 14:36:59', NULL, NULL, NULL, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('HK_202408061404455621722924285562', 1, 100, 1, '202408061404455721722924285572', NULL, '02-02-06-01', 0.000, 'ASRS000029', 1, '2024-08-06 14:04:46', 'WMS', '2024-08-06 14:42:45', NULL, NULL, NULL, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('HK_202408061405011921722924301192', 1, 100, 1, '202408061405012061722924301206', NULL, '02-01-07-01', 0.000, 'ASRS000074', 1, '2024-08-06 14:05:01', 'WMS', '2024-08-06 14:38:33', NULL, NULL, NULL, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('HK_202408061405053381722924305338', 1, 100, 1, '202408061405053521722924305352', NULL, '05-01-05-01', 0.000, 'ASRS000010', 1, '2024-08-06 14:05:05', 'WMS', '2024-08-06 14:39:35', NULL, NULL, NULL, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('HK_202408061405179711722924317971', 1, 100, 1, '202408061405179751722924317975', NULL, '07-01-05-01', 0.000, 'ASRS000039', 1, '2024-08-06 14:05:18', 'WMS', '2024-08-06 14:41:52', NULL, NULL, NULL, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('HK_202408061405313271722924331327', 1, 100, 1, '202408061405313371722924331337', NULL, '08-01-05-01', 0.000, 'ASRS000040', 1, '2024-08-06 14:05:31', 'WMS', '2024-08-06 14:40:13', NULL, NULL, NULL, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('HK_202408061405344501722924334450', 1, 100, 1, '202408061405344621722924334462', NULL, '03-02-06-01', 0.000, 'ASRS000085', 1, '2024-08-06 14:05:34', 'WMS', '2024-08-06 14:41:22', NULL, NULL, NULL, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('HK_202408061405410061722924341006', 1, 100, 1, '202408061405410081722924341008', NULL, '01-01-08-01', 0.000, 'ASRS000031', 1, '2024-08-06 14:05:41', 'WMS', '2024-08-06 14:38:01', NULL, NULL, NULL, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('HK_202408061405551361722924355136', 1, 100, 1, '202408061405551481722924355148', NULL, '04-01-06-01', 0.000, 'ASRS000073', 1, '2024-08-06 14:05:55', 'WMS', '2024-08-06 14:41:57', NULL, NULL, NULL, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('HK_202408061406012121722924361212', 1, 100, 1, '202408061406012161722924361216', NULL, '06-01-06-01', 0.000, 'ASRS000083', 1, '2024-08-06 14:06:01', 'WMS', '2024-08-06 14:39:49', NULL, NULL, NULL, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('HK_202408061407321901722924452190', 1, 100, 1, '202408061407322001722924452200', NULL, '09-01-05-01', 0.000, 'ASRS000166', 1, '2024-08-06 14:07:32', 'WMS', '2024-08-06 14:39:37', NULL, NULL, NULL, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('HK_202408061407398261722924459826', 1, 100, 1, '202408061407398371722924459837', NULL, '03-02-07-01', 0.000, 'ASRS000077', 1, '2024-08-06 14:07:40', 'WMS', '2024-08-06 14:39:40', NULL, NULL, NULL, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('HK_202408061407459251722924465925', 1, 100, 1, '202408061407459291722924465929', NULL, '01-01-09-01', 0.000, 'ASRS000053', 1, '2024-08-06 14:07:46', 'WMS', '2024-08-06 14:39:51', NULL, NULL, NULL, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('HK_202408061407492701722924469270', 1, 100, 1, '202408061407492861722924469286', NULL, '05-01-06-01', 0.000, 'ASRS000112', 1, '2024-08-06 14:07:49', 'WMS', '2024-08-06 14:40:25', NULL, NULL, NULL, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('HK_202408061407525301722924472530', 1, 100, 1, '202408061407525371722924472537', NULL, '07-01-06-01', 0.000, 'ASRS000025', 1, '2024-08-06 14:07:53', 'WMS', '2024-08-06 14:39:38', NULL, NULL, NULL, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('HK_202408061408036091722924483609', 1, 100, 1, '202408061408036151722924483615', NULL, '08-01-06-01', 0.000, 'ASRS000188', 1, '2024-08-06 14:08:04', 'WMS', '2024-08-06 14:40:55', NULL, NULL, NULL, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('HK_202408061408070631722924487063', 1, 100, 1, '202408061408070691722924487069', NULL, '02-02-08-01', 0.000, 'ASRS000048', 1, '2024-08-06 14:08:07', 'WMS', '2024-08-06 14:39:29', NULL, NULL, NULL, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('HK_202408061408174651722924497465', 1, 100, 1, '202408061408174801722924497480', NULL, '02-01-09-01', 0.000, 'ASRS000118', 1, '2024-08-06 14:08:17', 'WMS', '2024-08-06 14:41:17', NULL, NULL, NULL, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('HK_202408061408197391722924499739', 1, 100, 1, '202408061408197431722924499743', NULL, '04-01-07-01', 0.000, 'ASRS000041', 1, '2024-08-06 14:08:20', 'WMS', '2024-08-06 14:41:46', NULL, NULL, NULL, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('HK_202408061408261511722924506151', 1, 100, 1, '202408061408261631722924506163', NULL, '06-01-07-01', 0.000, 'ASRS000018', 1, '2024-08-06 14:08:26', 'WMS', '2024-08-06 14:40:35', NULL, NULL, NULL, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('HK_202408061408393681722924519368', 1, 100, 1, '202408061408393811722924519381', NULL, '09-01-06-01', 0.000, 'ASRS000032', 1, '2024-08-06 14:08:39', 'WMS', '2024-08-06 14:40:44', NULL, NULL, NULL, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('HK_202408061409110701722924551070', 1, 100, 1, '202408061409110721722924551072', NULL, '03-02-08-01', 0.000, 'ASRS000056', 1, '2024-08-06 14:09:11', 'WMS', '2024-08-06 14:40:51', NULL, NULL, NULL, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('HK_202408061409173671722924557367', 1, 100, 1, '202408061409173701722924557370', NULL, '01-01-10-01', 0.000, 'ASRS000035', 1, '2024-08-06 14:09:17', 'WMS', '2024-08-06 14:40:43', NULL, NULL, NULL, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('HK_202408061409240111722924564011', 1, 100, 1, '202408061409240211722924564021', NULL, '05-01-07-01', 0.000, 'ASRS000101', 1, '2024-08-06 14:09:24', 'WMS', '2024-08-06 14:42:47', NULL, NULL, NULL, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('HK_202408061409302741722924570274', 1, 100, 1, '202408061409302851722924570285', NULL, '07-01-07-01', 0.000, 'ASRS000198', 1, '2024-08-06 14:09:30', 'WMS', '2024-08-06 14:41:06', NULL, NULL, NULL, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('HK_202408061409364491722924576449', 1, 100, 1, '202408061409364521722924576452', NULL, '08-01-07-01', 0.000, 'ASRS000086', 1, '2024-08-06 14:09:36', 'WMS', '2024-08-06 14:39:25', NULL, NULL, NULL, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('HK_202408061409428091722924582809', 1, 100, 1, '202408061409428101722924582810', NULL, '03-02-09-01', 0.000, 'ASRS000068', 1, '2024-08-06 14:09:43', 'WMS', '2024-08-06 14:42:14', NULL, NULL, NULL, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('HK_202408061409494601722924589460', 1, 100, 1, '202408061409494621722924589462', NULL, '01-01-11-01', 0.000, 'ASRS000026', 1, '2024-08-06 14:09:49', 'WMS', '2024-08-06 14:39:39', NULL, NULL, NULL, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('HK_202408061410341801722924634180', 1, 100, 1, '202408061410341861722924634186', NULL, '04-01-08-01', 0.000, 'ASRS000047', 1, '2024-08-06 14:10:34', 'WMS', '2024-08-06 14:42:36', NULL, NULL, NULL, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('HK_202408061438474691722926327469', 1, 100, 1, '202408061438474711722926327471', NULL, '06-01-08-01', 0.000, 'ASRS000097', 1, '2024-08-06 14:38:47', 'WMS', '2024-08-06 14:40:24', NULL, NULL, NULL, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('HK_202408061440367141722926436714', 1, 100, 1, '202408061440367151722926436715', NULL, '09-01-07-01', 0.000, 'ASRS000024', 1, '2024-08-06 14:40:37', 'WMS', '2024-08-06 14:41:30', NULL, NULL, NULL, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('HK_202408061440598241722926459824', 1, 100, 1, '202408061440598271722926459827', NULL, '03-01-03-01', 0.000, 'ASRS000093', 1, '2024-08-06 14:41:00', 'WMS', '2024-08-06 14:41:59', NULL, NULL, NULL, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('HK_202408061442139701722926533970', 1, 100, 1, '202408061442139731722926533973', NULL, '02-01-11-01', 0.000, 'ASRS000067', 1, '2024-08-06 14:42:14', 'WMS', '2024-08-06 14:43:22', NULL, NULL, NULL, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('HK_202408061442218211722926541821', 1, 100, 1, '202408061442218231722926541823', NULL, '05-01-08-01', 0.000, 'ASRS000061', 1, '2024-08-06 14:42:22', 'WMS', '2024-08-06 14:43:22', NULL, NULL, NULL, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('HK_202408061442323581722926552358', 1, 100, 1, '202408061442323601722926552360', NULL, '07-01-08-01', 0.000, 'ASRS000168', 1, '2024-08-06 14:42:32', 'WMS', '2024-08-06 14:43:28', NULL, NULL, NULL, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('HK_202408061442359461722926555946', 1, 100, 1, '202408061442359471722926555947', NULL, '08-01-08-01', 0.000, 'ASRS000038', 1, '2024-08-06 14:42:36', 'WMS', '2024-08-06 14:44:01', NULL, NULL, NULL, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('HK_202408061443090161722926589016', 1, 100, 1, '202408061443090181722926589018', NULL, '02-01-04-01', 0.000, 'ASRS000033', 1, '2024-08-06 14:43:09', 'WMS', '2024-08-06 14:44:08', NULL, NULL, NULL, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('HK_202408061443125471722926592547', 1, 100, 1, '202408061443125491722926592549', NULL, '01-01-12-01', 0.000, 'ASRS000080', 1, '2024-08-06 14:43:13', 'WMS', '2024-08-06 14:44:24', NULL, NULL, NULL, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('HK_202408061443160921722926596092', 1, 100, 1, '202408061443160941722926596094', NULL, '04-01-09-01', 0.000, 'ASRS000193', 1, '2024-08-06 14:43:16', 'WMS', '2024-08-06 14:44:18', NULL, NULL, NULL, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('HK_202408061443271191722926607119', 1, 100, 1, '202408061443271211722926607121', NULL, '07-01-11-01', 0.000, 'ASRS000076', 1, '2024-08-06 14:43:27', 'WMS', '2024-08-06 14:44:27', NULL, NULL, NULL, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('HK_202408061443316531722926611653', 1, 100, 1, '202408061443316561722926611656', NULL, '09-01-08-01', 0.000, 'ASRS000042', 1, '2024-08-06 14:43:32', 'WMS', '2024-08-06 14:44:34', NULL, NULL, NULL, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('HK_202408061443363331722926616333', 1, 100, 1, '202408061443363351722926616335', NULL, '03-01-04-01', 0.000, 'ASRS000016', 1, '2024-08-06 14:43:36', 'WMS', '2024-08-06 14:44:35', NULL, NULL, NULL, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('HK_202408061443418131722926621813', 1, 100, 1, '202408061443418151722926621815', NULL, '01-01-13-01', 0.000, 'ASRS000003', 1, '2024-08-06 14:43:42', 'WMS', '2024-08-06 14:45:23', NULL, NULL, NULL, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('HK_202408061444007971722926640797', 1, 100, 1, '202408061444007981722926640798', NULL, '05-01-09-01', 0.000, 'ASRS000030', 1, '2024-08-06 14:44:01', 'WMS', '2024-08-06 14:45:02', NULL, NULL, NULL, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('HK_202408061444045231722926644523', 1, 100, 1, '202408061444045251722926644525', NULL, '06-01-12-01', 0.000, 'ASRS000023', 1, '2024-08-06 14:44:05', 'WMS', '2024-08-06 14:45:08', NULL, NULL, NULL, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('HK_202408061444095931722926649593', 1, 100, 1, '202408061444095951722926649595', NULL, '08-01-09-01', 0.000, 'ASRS000116', 1, '2024-08-06 14:44:10', 'WMS', '2024-08-06 14:45:08', NULL, NULL, NULL, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('HK_202408061444296141722926669614', 1, 100, 1, '202408061444296161722926669616', NULL, '03-01-05-01', 0.000, 'ASRS000069', 1, '2024-08-06 14:44:30', 'WMS', '2024-08-06 14:46:47', NULL, NULL, NULL, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('HK_202408061444332131722926673213', 1, 100, 1, '202408061444332151722926673215', NULL, '02-01-13-01', 0.000, 'ASRS000027', 1, '2024-08-06 14:44:33', 'WMS', '2024-08-06 14:46:02', NULL, NULL, NULL, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('HK_202408061444373481722926677348', 1, 100, 1, '202408061444373501722926677350', NULL, '04-01-10-01', 0.000, 'ASRS000028', 1, '2024-08-06 14:44:37', 'WMS', '2024-08-06 14:45:40', NULL, NULL, NULL, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('HK_202408061444425081722926682508', 1, 100, 1, '202408061444425101722926682510', NULL, '07-01-18-01', 0.000, 'ASRS000078', 1, '2024-08-06 14:44:43', 'WMS', '2024-08-06 14:45:49', NULL, NULL, NULL, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('HK_202408061444465881722926686588', 1, 100, 1, '202408061444465901722926686590', NULL, '09-01-09-01', 0.000, 'ASRS000107', 1, '2024-08-06 14:44:47', 'WMS', '2024-08-06 14:45:44', NULL, NULL, NULL, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('HK_202408061444505771722926690577', 1, 100, 1, '202408061444505791722926690579', NULL, '03-01-06-01', 0.000, 'ASRS000102', 1, '2024-08-06 14:44:51', 'WMS', '2024-08-06 14:46:58', NULL, NULL, NULL, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('HK_202408061445008531722926700853', 1, 100, 1, '202408061445008551722926700855', NULL, '01-01-14-01', 0.000, 'ASRS000054', 1, '2024-08-06 14:45:01', 'WMS', '2024-08-06 14:46:41', NULL, NULL, NULL, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('HK_202408061445200141722926720014', 1, 100, 1, '202408061445200161722926720016', NULL, '04-01-11-01', 0.000, 'ASRS000197', 1, '2024-08-06 14:45:20', 'WMS', '2024-08-06 14:46:24', NULL, NULL, NULL, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('HK_202408061445259031722926725903', 1, 100, 1, '202408061445259051722926725905', NULL, '06-01-19-01', 0.000, 'ASRS000059', 1, '2024-08-06 14:45:26', 'WMS', '2024-08-06 14:46:37', NULL, NULL, NULL, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('HK_202408061445313881722926731388', 1, 100, 1, '202408061445313901722926731390', NULL, '08-01-10-01', 0.000, 'ASRS000022', 1, '2024-08-06 14:45:31', 'WMS', '2024-08-06 14:46:30', NULL, NULL, NULL, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('HK_202408061445346651722926734665', 1, 100, 1, '202408061445346671722926734667', NULL, '02-01-08-01', 0.000, 'ASRS000091', 1, '2024-08-06 14:45:35', 'WMS', '2024-08-06 14:47:29', NULL, NULL, NULL, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('HK_202408061445453831722926745383', 1, 100, 1, '202408061445453851722926745385', NULL, '01-01-15-01', 0.000, 'ASRS000043', 1, '2024-08-06 14:45:45', 'WMS', '2024-08-06 14:47:22', NULL, NULL, NULL, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('HK_202408061445492961722926749296', 1, 100, 1, '202408061445492991722926749299', NULL, '04-01-12-01', 0.000, 'ASRS000075', 1, '2024-08-06 14:45:49', 'WMS', '2024-08-06 14:47:01', NULL, NULL, NULL, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('HK_202408061445527331722926752733', 1, 100, 1, '202408061445527351722926752735', NULL, '07-01-19-01', 0.000, 'ASRS000154', 1, '2024-08-06 14:45:53', 'WMS', '2024-08-06 14:47:23', NULL, NULL, NULL, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('HK_202408061446541271722926814127', 1, 100, 1, '202408061446541291722926814129', NULL, '09-01-10-01', 0.000, 'ASRS000034', 1, '2024-08-06 14:46:54', 'WMS', '2024-08-06 14:47:52', NULL, NULL, NULL, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('HK_202408061446577511722926817751', 1, 100, 1, '202408061446577531722926817753', NULL, '03-01-08-01', 0.000, 'ASRS000148', 1, '2024-08-06 14:46:58', 'WMS', '2024-08-06 14:48:01', NULL, NULL, NULL, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('HK_202408061447122311722926832231', 1, 100, 1, '202408061447122331722926832233', NULL, '02-01-15-01', 0.000, 'ASRS000081', 1, '2024-08-06 14:47:12', 'WMS', '2024-08-06 14:48:26', NULL, NULL, NULL, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('RK_202408011606265591722499586559', 1, 100, 1, '202408011606265581722499586558', NULL, '01-01-01-01', NULL, 'ASRS000176', 1, '2024-08-01 16:06:27', '管理员', '2024-08-01 16:09:35', '{\"opNum\": 2, \"goodsId\": \"123456789/CS\", \"goodsName\": \"测试物料\", \"originNum\": 0}', NULL, NULL, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('RK_202408020926295321722561989532', 1, 100, 1, '202408020926295301722561989530', NULL, '02-01-01-01', NULL, 'ASRS000179', 1, '2024-08-02 09:26:30', '管理员', '2024-08-02 09:28:14', '{\"opNum\": 20, \"goodsId\": \"123456789/CS\", \"goodsName\": \"测试物料1\", \"originNum\": 0}', NULL, NULL, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('RK_202408020928025421722562082542', 1, 100, 1, '202408020928025391722562082539', NULL, '01-01-02-01', NULL, 'ASRS000117', 1, '2024-08-02 09:28:03', '管理员', '2024-08-02 09:29:09', '{\"opNum\": 20, \"goodsId\": \"222222222/CS\", \"goodsName\": \"测试物料2\", \"originNum\": 0}', NULL, NULL, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('RK_202408020929325801722562172580', 1, 100, 1, '202408020929325751722562172575', NULL, '01-01-03-01', NULL, 'ASRS000180', 1, '2024-08-02 09:29:33', '管理员', '2024-08-02 09:30:39', '{\"opNum\": 30, \"goodsId\": \"333333333/CS\", \"goodsName\": \"测试物料3\", \"originNum\": 0}', NULL, NULL, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('RK_202408020937533881722562673388', 1, 100, 1, '202408020937533871722562673387', NULL, '02-01-03-01', NULL, 'ASRS000138', 1, '2024-08-02 09:37:53', '管理员', '2024-08-02 09:38:56', '{\"opNum\": 20, \"goodsId\": \"123456789/CS\", \"goodsName\": \"测试物料1\", \"originNum\": 0}', NULL, NULL, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('RK_202408020938262941722562706294', 1, 100, 1, '202408020938262921722562706292', NULL, '03-01-01-01', NULL, 'ASRS000184', 1, '2024-08-02 09:38:26', '管理员', '2024-08-02 09:39:21', '{\"opNum\": 10, \"goodsId\": \"444444444/CS\", \"goodsName\": \"测试物料4\", \"originNum\": 0}', NULL, NULL, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('RK_202408020938585781722562738578', 1, 100, 1, '202408020938585741722562738574', NULL, '04-01-01-01', NULL, 'ASRS000001', 1, '2024-08-02 09:38:59', '管理员', '2024-08-02 09:39:49', '{\"opNum\": 25, \"goodsId\": \"555555555/CS\", \"goodsName\": \"测试物料5\", \"originNum\": 0}', NULL, NULL, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('RK_202408021331583551722576718355', 1, 100, 1, '202408021331583491722576718349', NULL, '03-01-20-01', NULL, 'ASRS000185', 1, '2024-08-02 13:31:58', '管理员', '2024-08-02 13:33:12', '{\"opNum\": 100, \"goodsId\": \"ASRS000185\", \"goodsName\": \"测试物料000185\", \"originNum\": 0}', NULL, NULL, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('RK_202408021332530311722576773031', 1, 100, 1, '202408021332530221722576773022', NULL, '01-01-22-01', NULL, 'ASRS000172', 1, '2024-08-02 13:32:53', '管理员', '2024-08-02 13:34:15', '{\"opNum\": 100, \"goodsId\": \"ASRS000172\", \"goodsName\": \"测试物料000172\", \"originNum\": 0}', NULL, NULL, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('RK_202408021333105011722576790501', 1, 100, 1, '202408021333104991722576790499', NULL, '04-01-16-01', NULL, 'ASRS000178', 1, '2024-08-02 13:33:11', '管理员', '2024-08-02 13:34:17', '{\"opNum\": 100, \"goodsId\": \"ASRS000178\", \"goodsName\": \"测试物料000178\", \"originNum\": 0}', NULL, NULL, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('RK_202408021333256231722576805623', 1, 100, 1, '202408021333256191722576805619', NULL, '06-01-16-01', NULL, 'ASRS000150', 1, '2024-08-02 13:33:26', '管理员', '2024-08-02 13:34:29', '{\"opNum\": 100, \"goodsId\": \"ASRS000150\", \"goodsName\": \"测试物料000150\", \"originNum\": 0}', NULL, NULL, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('RK_202408021333392271722576819227', 1, 100, 1, '202408021333392131722576819213', NULL, '08-01-16-01', NULL, 'ASRS000131', 1, '2024-08-02 13:33:39', '管理员', '2024-08-02 13:34:41', '{\"opNum\": 100, \"goodsId\": \"ASRS000131\", \"goodsName\": \"测试物料000131\", \"originNum\": 0}', NULL, NULL, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('RK_202408021333527731722576832773', 1, 100, 1, '202408021333527661722576832766', NULL, '03-01-21-01', NULL, 'ASRS000145', 1, '2024-08-02 13:33:53', '管理员', '2024-08-02 13:35:04', '{\"opNum\": 100, \"goodsId\": \"ASRS000145\", \"goodsName\": \"测试物料000145\", \"originNum\": 0}', NULL, NULL, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('RK_202408021334169621722576856962', 1, 100, 1, '202408021334169561722576856956', NULL, '01-02-01-01', NULL, 'ASRS000132', 1, '2024-08-02 13:34:17', '管理员', '2024-08-02 13:35:25', '{\"opNum\": 100, \"goodsId\": \"ASRS000132\", \"goodsName\": \"测试物料000132\", \"originNum\": 0}', NULL, NULL, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('RK_202408021334395871722576879587', 1, 100, 1, '202408021334395791722576879579', NULL, '05-01-16-01', NULL, 'ASRS000186', 1, '2024-08-02 13:34:40', '管理员', '2024-08-02 13:35:45', '{\"opNum\": 100, \"goodsId\": \"ASRS000186\", \"goodsName\": \"测试物料000186\", \"originNum\": 0}', NULL, NULL, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('RK_202408021335028321722576902832', 1, 100, 1, '202408021335028251722576902825', NULL, '07-01-16-01', NULL, 'ASRS000129', 1, '2024-08-02 13:35:03', '管理员', '2024-08-02 13:36:06', '{\"opNum\": 100, \"goodsId\": \"ASRS000129\", \"goodsName\": \"测试物料000129\", \"originNum\": 0}', NULL, NULL, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('RK_202408021335151431722576915143', 1, 100, 1, '202408021335151331722576915133', NULL, '09-01-16-01', NULL, 'ASRS000146', 1, '2024-08-02 13:35:15', '管理员', '2024-08-02 13:36:17', '{\"opNum\": 100, \"goodsId\": \"ASRS000146\", \"goodsName\": \"测试物料000146\", \"originNum\": 0}', NULL, NULL, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('RK_202408021335256251722576925625', 1, 100, 1, '202408021335256191722576925619', NULL, '02-01-22-01', NULL, 'ASRS000141', 1, '2024-08-02 13:35:26', '管理员', '2024-08-02 13:36:41', '{\"opNum\": 100, \"goodsId\": \"ASRS000141\", \"goodsName\": \"测试物料000141\", \"originNum\": 0}', NULL, NULL, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('RK_202408021335369841722576936984', 1, 100, 1, '202408021335369821722576936982', NULL, '02-02-01-01', NULL, 'ASRS000181', 1, '2024-08-02 13:35:37', '管理员', '2024-08-02 13:36:31', '{\"opNum\": 100, \"goodsId\": \"ASRS000181\", \"goodsName\": \"测试物料000181\", \"originNum\": 0}', NULL, NULL, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('RK_202408021335523911722576952391', 1, 100, 1, '202408021335523891722576952389', NULL, '04-01-17-01', NULL, 'ASRS000182', 1, '2024-08-02 13:35:52', '管理员', '2024-08-02 13:36:59', '{\"opNum\": 100, \"goodsId\": \"ASRS000182\", \"goodsName\": \"测试物料000182\", \"originNum\": 0}', NULL, NULL, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('RK_202408021336028591722576962859', 1, 100, 1, '202408021336028521722576962852', NULL, '06-01-17-01', NULL, 'ASRS000187', 1, '2024-08-02 13:36:03', '管理员', '2024-08-02 13:37:07', '{\"opNum\": 100, \"goodsId\": \"ASRS000187\", \"goodsName\": \"测试物料000187\", \"originNum\": 0}', NULL, NULL, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('RK_202408021336140751722576974075', 1, 100, 1, '202408021336140731722576974073', NULL, '08-01-17-01', NULL, 'ASRS000183', 1, '2024-08-02 13:36:14', '管理员', '2024-08-02 13:37:17', '{\"opNum\": 100, \"goodsId\": \"ASRS000183\", \"goodsName\": \"测试物料000183\", \"originNum\": 0}', NULL, NULL, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('RK_202408021336249671722576984967', 1, 100, 1, '202408021336249611722576984961', NULL, '03-01-22-01', NULL, 'ASRS000128', 1, '2024-08-02 13:36:25', '管理员', '2024-08-02 13:37:41', '{\"opNum\": 100, \"goodsId\": \"ASRS000128\", \"goodsName\": \"测试物料000128\", \"originNum\": 0}', NULL, NULL, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('RK_202408021336345311722576994531', 1, 100, 1, '202408021336345301722576994530', NULL, '01-02-02-01', NULL, 'ASRS000126', 1, '2024-08-02 13:36:35', '管理员', '2024-08-02 13:37:30', '{\"opNum\": 100, \"goodsId\": \"ASRS000126\", \"goodsName\": \"测试物料000126\", \"originNum\": 0}', NULL, NULL, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('RK_202408021336590611722577019061', 1, 100, 1, '202408021336590591722577019059', NULL, '05-01-17-01', NULL, 'ASRS000173', 1, '2024-08-02 13:36:59', '管理员', '2024-08-02 13:38:06', '{\"opNum\": 100, \"goodsId\": \"ASRS000173\", \"goodsName\": \"测试物料000173\", \"originNum\": 0}', NULL, NULL, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('RK_202408021337082921722577028292', 1, 100, 1, '202408021337082881722577028288', NULL, '07-01-17-01', NULL, 'ASRS000127', 1, '2024-08-02 13:37:08', '管理员', '2024-08-02 13:38:13', '{\"opNum\": 100, \"goodsId\": \"ASRS000127\", \"goodsName\": \"测试物料000127\", \"originNum\": 0}', NULL, NULL, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('RK_202408021337177481722577037748', 1, 100, 1, '202408021337177411722577037741', NULL, '09-01-17-01', NULL, 'ASRS000174', 1, '2024-08-02 13:37:18', '管理员', '2024-08-02 13:38:21', '{\"opNum\": 100, \"goodsId\": \"ASRS000174\", \"goodsName\": \"测试物料000174\", \"originNum\": 0}', NULL, NULL, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('RK_202408021337279041722577047904', 1, 100, 1, '202408021337278971722577047897', NULL, '03-02-01-01', NULL, 'ASRS000122', 1, '2024-08-02 13:37:28', '管理员', '2024-08-02 13:38:32', '{\"opNum\": 100, \"goodsId\": \"ASRS000122\", \"goodsName\": \"测试物料000122\", \"originNum\": 0}', NULL, NULL, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('RK_202408021337381281722577058128', 1, 100, 1, '202408021337381131722577058113', NULL, '01-02-03-01', NULL, 'ASRS000175', 1, '2024-08-02 13:37:38', '管理员', '2024-08-02 13:38:33', '{\"opNum\": 100, \"goodsId\": \"ASRS000175\", \"goodsName\": \"测试物料000175\", \"originNum\": 0}', NULL, NULL, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('RK_202408021337524601722577072460', 1, 100, 1, '202408021337524561722577072456', NULL, '04-01-18-01', NULL, 'ASRS000142', 1, '2024-08-02 13:37:52', '管理员', '2024-08-02 13:39:01', '{\"opNum\": 100, \"goodsId\": \"ASRS000142\", \"goodsName\": \"测试物料000142\", \"originNum\": 0}', NULL, NULL, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('RK_202408021354410691722578081069', 1, 100, 1, '202408021354410641722578081064', NULL, '06-01-18-01', NULL, 'ASRS000134', 1, '2024-08-02 13:54:41', '管理员', '2024-08-02 13:55:47', '{\"opNum\": 99, \"goodsId\": \"ASRS000134\", \"goodsName\": \"测试物料000134\", \"originNum\": 0}', NULL, NULL, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('RK_202408021354546641722578094664', 1, 100, 1, '202408021354546571722578094657', NULL, '08-01-18-01', NULL, 'ASRS000133', 1, '2024-08-02 13:54:55', '管理员', '2024-08-02 13:56:00', '{\"opNum\": 99, \"goodsId\": \"ASRS000133\", \"goodsName\": \"测试物料000133\", \"originNum\": 0}', NULL, NULL, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('RK_202408021355257611722578125761', 1, 100, 1, '202408021355257571722578125757', NULL, '02-02-02-01', NULL, 'ASRS000095', 1, '2024-08-02 13:55:26', '管理员', '2024-08-02 13:56:20', '{\"opNum\": 99, \"goodsId\": \"ASRS000095\", \"goodsName\": \"测试物料000095\", \"originNum\": 0}', NULL, NULL, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('RK_202408021355428461722578142846', 1, 100, 1, '202408021355428441722578142844', NULL, '02-02-03-01', NULL, 'ASRS000147', 1, '2024-08-02 13:55:43', '管理员', '2024-08-02 13:56:37', '{\"opNum\": 99, \"goodsId\": \"ASRS000147\", \"goodsName\": \"测试物料000147\", \"originNum\": 0}', NULL, NULL, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('RK_202408021355555331722578155533', 1, 100, 1, '202408021355555271722578155527', NULL, '05-01-18-01', NULL, 'ASRS000196', 1, '2024-08-02 13:55:56', '管理员', '2024-08-02 13:57:03', '{\"opNum\": 99, \"goodsId\": \"ASRS000196\", \"goodsName\": \"测试物料000196\", \"originNum\": 0}', NULL, NULL, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('VCK_202408061355214851722923721485', 2, 100, 1, '202408061355214861722923721486', '08-01-01-01', '', 0.000, 'ASRS000154', 1, '2024-08-06 13:55:21', '管理员', '2024-08-06 13:58:22', NULL, NULL, 0, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('VCK_202408061355214961722923721496', 2, 100, 1, '202408061355214981722923721498', '07-01-01-01', '', 0.000, 'ASRS000034', 1, '2024-08-06 13:55:21', '管理员', '2024-08-06 13:57:37', NULL, NULL, 0, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('VCK_202408061355215011722923721501', 2, 100, 1, '202408061355215031722923721503', '01-01-02-01', '', 0.000, 'ASRS000032', 1, '2024-08-06 13:55:22', '管理员', '2024-08-06 13:58:13', NULL, NULL, 0, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('VCK_202408061355215061722923721506', 2, 100, 1, '202408061355215081722923721508', '04-01-02-01', '', 0.000, 'ASRS000018', 1, '2024-08-06 13:55:22', '管理员', '2024-08-06 13:58:53', NULL, NULL, 0, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('VCK_202408061355215111722923721511', 2, 100, 1, '202408061355215131722923721513', '09-01-01-01', '', 0.000, 'ASRS000036', 1, '2024-08-06 13:55:22', '管理员', '2024-08-06 13:57:52', NULL, NULL, 0, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('VCK_202408061355215161722923721516', 2, 100, 1, '202408061355215181722923721518', '06-01-02-01', '', 0.000, 'ASRS000087', 1, '2024-08-06 13:55:22', '管理员', '2024-08-06 13:59:13', NULL, NULL, 0, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('VCK_202408061355215211722923721521', 2, 100, 1, '202408061355215231722923721523', '08-01-02-01', '', 0.000, 'ASRS000043', 1, '2024-08-06 13:55:22', '管理员', '2024-08-06 13:59:03', NULL, NULL, 0, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('VCK_202408061355215261722923721526', 2, 100, 1, '202408061355215281722923721528', '01-01-03-01', '', 0.000, 'ASRS000041', 1, '2024-08-06 13:55:22', '管理员', '2024-08-06 13:58:13', NULL, NULL, 0, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('VCK_202408061355215321722923721532', 2, 100, 1, '202408061355215341722923721534', '05-01-02-01', '', 0.000, 'ASRS000143', 1, '2024-08-06 13:55:22', '管理员', '2024-08-06 13:58:12', NULL, NULL, 0, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('VCK_202408061355215371722923721537', 2, 100, 1, '202408061355215391722923721539', '07-01-02-01', '', 0.000, 'ASRS000002', 1, '2024-08-06 13:55:22', '管理员', '2024-08-06 13:58:05', NULL, NULL, 0, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('VCK_202408061355215411722923721541', 2, 100, 1, '202408061355215431722923721543', '09-01-02-01', '', 0.000, 'ASRS000039', 1, '2024-08-06 13:55:22', '管理员', '2024-08-06 13:59:02', NULL, NULL, 0, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('VCK_202408061355215451722923721545', 2, 100, 1, '202408061355215471722923721547', '01-01-04-01', '', 0.000, 'ASRS000081', 1, '2024-08-06 13:55:22', '管理员', '2024-08-06 13:58:55', NULL, NULL, 0, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('VCK_202408061355215491722923721549', 2, 100, 1, '202408061355215521722923721552', '04-01-03-01', '', 0.000, 'ASRS000008', 1, '2024-08-06 13:55:22', '管理员', '2024-08-06 13:58:53', NULL, NULL, 0, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('VCK_202408061355215551722923721555', 2, 100, 1, '202408061355215571722923721557', '06-01-03-01', '', 0.000, 'ASRS000010', 1, '2024-08-06 13:55:22', '管理员', '2024-08-06 13:58:32', NULL, NULL, 0, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('VCK_202408061355215621722923721562', 2, 100, 1, '202408061355215641722923721564', '08-01-03-01', '', 0.000, 'ASRS000006', 1, '2024-08-06 13:55:22', '管理员', '2024-08-06 14:00:01', NULL, NULL, 0, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('VCK_202408061355215701722923721570', 2, 100, 1, '202408061355215721722923721572', '01-01-05-01', '', 0.000, 'ASRS000082', 1, '2024-08-06 13:55:22', '管理员', '2024-08-06 13:58:55', NULL, NULL, 0, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('VCK_202408061355215781722923721578', 2, 100, 1, '202408061355215811722923721581', '05-01-03-01', '', 0.000, 'ASRS000085', 1, '2024-08-06 13:55:22', '管理员', '2024-08-06 13:59:35', NULL, NULL, 0, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('VCK_202408061355215851722923721585', 2, 100, 1, '202408061355215871722923721587', '07-01-03-01', '', 0.000, 'ASRS000084', 1, '2024-08-06 13:55:22', '管理员', '2024-08-06 13:59:13', NULL, NULL, 0, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('VCK_202408061355215911722923721591', 2, 100, 1, '202408061355215931722923721593', '09-01-03-01', '', 0.000, 'ASRS000037', 1, '2024-08-06 13:55:22', '管理员', '2024-08-06 13:59:31', NULL, NULL, 0, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('VCK_202408061355215961722923721596', 2, 100, 1, '202408061355215981722923721598', '02-01-05-01', '', 0.000, 'ASRS000021', 1, '2024-08-06 13:55:22', '管理员', '2024-08-06 13:59:38', NULL, NULL, 0, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('VCK_202408061355216011722923721601', 2, 100, 1, '202408061355216031722923721603', '04-01-04-01', '', 0.000, 'ASRS000012', 1, '2024-08-06 13:55:22', '管理员', '2024-08-06 13:59:36', NULL, NULL, 0, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('VCK_202408061355216051722923721605', 2, 100, 1, '202408061355216071722923721607', '06-01-04-01', '', 0.000, 'ASRS000005', 1, '2024-08-06 13:55:22', '管理员', '2024-08-06 13:59:55', NULL, NULL, 0, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('VCK_202408061355216101722923721610', 2, 100, 1, '202408061355216121722923721612', '08-01-04-01', '', 0.000, 'ASRS000033', 1, '2024-08-06 13:55:22', '管理员', '2024-08-06 14:00:41', NULL, NULL, 0, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('VCK_202408061355216141722923721614', 2, 100, 1, '202408061355216161722923721616', '01-01-06-01', '', 0.000, 'ASRS000004', 1, '2024-08-06 13:55:22', '管理员', '2024-08-06 13:59:38', NULL, NULL, 0, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('VCK_202408061355216181722923721618', 2, 100, 1, '202408061355216201722923721620', '02-01-02-01', '', 0.000, 'ASRS000042', 1, '2024-08-06 13:55:22', '管理员', '2024-08-06 13:58:14', NULL, NULL, 0, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('VCK_202408061355216231722923721623', 2, 100, 1, '202408061355216251722923721625', '03-01-02-01', '', 0.000, 'ASRS000040', 1, '2024-08-06 13:55:22', '管理员', '2024-08-06 13:58:13', NULL, NULL, 0, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('VCK_202408061355216281722923721628', 2, 100, 1, '202408061355216291722923721629', '03-01-03-01', '', 0.000, 'ASRS000003', 1, '2024-08-06 13:55:22', '管理员', '2024-08-06 14:26:36', NULL, NULL, 0, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('VCK_202408061355216311722923721631', 2, 100, 1, '202408061355216321722923721632', '02-01-04-01', '', 0.000, 'ASRS000016', 1, '2024-08-06 13:55:22', '管理员', '2024-08-06 14:25:37', NULL, NULL, 0, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('VCK_202408061355216351722923721635', 2, 100, 1, '202408061355216371722923721637', '05-01-04-01', '', 0.000, 'ASRS000007', 1, '2024-08-06 13:55:22', '管理员', '2024-08-06 14:00:35', NULL, NULL, 0, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('VCK_202408061355216401722923721640', 2, 100, 1, '202408061355216421722923721642', '03-01-04-01', '', 0.000, 'ASRS000030', 1, '2024-08-06 13:55:22', '管理员', '2024-08-06 14:26:36', NULL, NULL, 0, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('VCK_202408061355216441722923721644', 2, 100, 1, '202408061355216461722923721646', '07-01-04-01', '', 0.000, 'ASRS000014', 1, '2024-08-06 13:55:22', '管理员', '2024-08-06 13:59:55', NULL, NULL, 0, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('VCK_202408061355216481722923721648', 2, 100, 1, '202408061355216491722923721649', '03-01-05-01', '', 0.000, 'ASRS000023', 1, '2024-08-06 13:55:22', '管理员', '2024-08-06 14:27:19', NULL, NULL, 0, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('VCK_202408061355216511722923721651', 2, 100, 1, '202408061355216531722923721653', '09-01-04-01', '', 0.000, 'ASRS000011', 1, '2024-08-06 13:55:22', '管理员', '2024-08-06 14:00:41', NULL, NULL, 0, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('VCK_202408061355216561722923721656', 2, 100, 1, '202408061355216581722923721658', '04-01-05-01', '', 0.000, 'ASRS000013', 1, '2024-08-06 13:55:22', '管理员', '2024-08-06 14:00:05', NULL, NULL, 0, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('VCK_202408061355216611722923721661', 2, 100, 1, '202408061355216631722923721663', '01-01-07-01', '', 0.000, 'ASRS000009', 1, '2024-08-06 13:55:22', '管理员', '2024-08-06 14:00:23', NULL, NULL, 0, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('VCK_202408061355216661722923721666', 2, 100, 1, '202408061355216691722923721669', '06-01-05-01', '', 0.000, 'ASRS000017', 1, '2024-08-06 13:55:22', '管理员', '2024-08-06 14:00:38', NULL, NULL, 0, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('VCK_202408061355216711722923721671', 2, 100, 1, '202408061355216741722923721674', '08-01-05-01', '', 0.000, 'ASRS000097', 1, '2024-08-06 13:55:22', '管理员', '2024-08-06 14:01:25', NULL, NULL, 0, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('VCK_202408061355216771722923721677', 2, 100, 1, '202408061355216791722923721679', '03-01-06-01', '', 0.000, 'ASRS000022', 1, '2024-08-06 13:55:22', '管理员', '2024-08-06 14:27:19', NULL, NULL, 0, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('VCK_202408061355216811722923721681', 2, 100, 1, '202408061355216831722923721683', '02-01-07-01', '', 0.000, 'ASRS000090', 1, '2024-08-06 13:55:22', '管理员', '2024-08-06 14:00:23', NULL, NULL, 0, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('VCK_202408061355216861722923721686', 2, 100, 1, '202408061355216881722923721688', '05-01-05-01', '', 0.000, 'ASRS000099', 1, '2024-08-06 13:55:22', '管理员', '2024-08-06 14:01:47', NULL, NULL, 0, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('VCK_202408061355216901722923721690', 2, 100, 1, '202408061355216931722923721693', '09-01-05-01', '', 0.000, 'ASRS000088', 1, '2024-08-06 13:55:22', '管理员', '2024-08-06 14:01:24', NULL, NULL, 0, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('VCK_202408061355216951722923721695', 2, 100, 1, '202408061355216981722923721698', '07-01-05-01', '', 0.000, 'ASRS000089', 1, '2024-08-06 13:55:22', '管理员', '2024-08-06 14:00:37', NULL, NULL, 0, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('VCK_202408061355217001722923721700', 2, 100, 1, '202408061355217021722923721702', '04-01-06-01', '', 0.000, 'ASRS000020', 1, '2024-08-06 13:55:22', '管理员', '2024-08-06 14:01:04', NULL, NULL, 0, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('VCK_202408061355217041722923721704', 2, 100, 1, '202408061355217061722923721706', '08-01-06-01', '', 0.000, 'ASRS000092', 1, '2024-08-06 13:55:22', '管理员', '2024-08-06 14:02:27', NULL, NULL, 0, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('VCK_202408061355217071722923721707', 2, 100, 1, '202408061355217091722923721709', '01-01-09-01', '', 0.000, 'ASRS000098', 1, '2024-08-06 13:55:22', '管理员', '2024-08-06 14:01:10', NULL, NULL, 0, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('VCK_202408061355217111722923721711', 2, 100, 1, '202408061355217141722923721714', '02-01-08-01', '', 0.000, 'ASRS000091', 1, '2024-08-06 13:55:22', '管理员', '2024-08-06 14:28:05', NULL, NULL, 0, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('VCK_202408061355217161722923721716', 2, 100, 1, '202408061355217181722923721718', '09-01-06-01', '', 0.000, 'ASRS000063', 1, '2024-08-06 13:55:22', '管理员', '2024-08-06 14:01:56', NULL, NULL, 0, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('VCK_202408061355217201722923721720', 2, 100, 1, '202408061355217231722923721723', '02-01-09-01', '', 0.000, 'ASRS000064', 1, '2024-08-06 13:55:22', '管理员', '2024-08-06 14:01:10', NULL, NULL, 0, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('VCK_202408061355217261722923721726', 2, 100, 1, '202408061355217271722923721727', '04-01-07-01', '', 0.000, 'ASRS000060', 1, '2024-08-06 13:55:22', '管理员', '2024-08-06 14:01:47', NULL, NULL, 0, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('VCK_202408061355217291722923721729', 2, 100, 1, '202408061355217321722923721732', '01-01-10-01', '', 0.000, 'ASRS000050', 1, '2024-08-06 13:55:22', '管理员', '2024-08-06 14:02:00', NULL, NULL, 0, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('VCK_202408061355217341722923721734', 2, 100, 1, '202408061355217361722923721736', '08-01-07-01', '', 0.000, 'ASRS000055', 1, '2024-08-06 13:55:22', '管理员', '2024-08-06 14:03:11', NULL, NULL, 0, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('VCK_202408061355217381722923721738', 2, 100, 1, '202408061355217401722923721740', '05-01-07-01', '', 0.000, 'ASRS000086', 1, '2024-08-06 13:55:22', '管理员', '2024-08-06 14:06:49', NULL, NULL, 0, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('VCK_202408061355217421722923721742', 2, 100, 1, '202408061355217441722923721744', '09-01-07-01', '', 0.000, 'ASRS000066', 1, '2024-08-06 13:55:22', '管理员', '2024-08-06 14:03:10', NULL, NULL, 0, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('VCK_202408061355217461722923721746', 2, 100, 1, '202408061355217481722923721748', '01-01-11-01', '', 0.000, 'ASRS000058', 1, '2024-08-06 13:55:22', '管理员', '2024-08-06 14:02:00', NULL, NULL, 0, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('VCK_202408061355217511722923721751', 2, 100, 1, '202408061355217521722923721752', '08-01-08-01', '', 0.000, 'ASRS000073', 1, '2024-08-06 13:55:22', '管理员', '2024-08-06 14:03:58', NULL, NULL, 0, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('VCK_202408061355217541722923721754', 2, 100, 1, '202408061355217561722923721756', '02-01-11-01', '', 0.000, 'ASRS000049', 1, '2024-08-06 13:55:22', '管理员', '2024-08-06 14:02:50', NULL, NULL, 0, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('VCK_202408061355217601722923721760', 2, 100, 1, '202408061355217621722923721762', '09-01-08-01', '', 0.000, 'ASRS000083', 1, '2024-08-06 13:55:22', '管理员', '2024-08-06 14:03:57', NULL, NULL, 0, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('VCK_202408061355217671722923721767', 2, 100, 1, '202408061355217741722923721774', '01-01-12-01', '', 0.000, 'ASRS000024', 1, '2024-08-06 13:55:22', '管理员', '2024-08-06 14:02:51', NULL, NULL, 0, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('VCK_202408061355217791722923721779', 2, 100, 1, '202408061355217821722923721782', '08-01-09-01', '', 0.000, 'ASRS000077', 1, '2024-08-06 13:55:22', '管理员', '2024-08-06 14:04:46', NULL, NULL, 0, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('VCK_202408061355217881722923721788', 2, 100, 1, '202408061355217891722923721789', '09-01-09-01', '', 0.000, 'ASRS000025', 1, '2024-08-06 13:55:22', '管理员', '2024-08-06 14:04:45', NULL, NULL, 0, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('VCK_202408061355217941722923721794', 2, 100, 1, '202408061355217961722923721796', '01-01-13-01', '', 0.000, 'ASRS000038', 1, '2024-08-06 13:55:22', '管理员', '2024-08-06 14:03:44', NULL, NULL, 0, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('VCK_202408061355217991722923721799', 2, 100, 1, '202408061355218021722923721802', '02-01-13-01', '', 0.000, 'ASRS000031', 1, '2024-08-06 13:55:22', '管理员', '2024-08-06 14:03:43', NULL, NULL, 0, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('VCK_202408061355218611722923721861', 2, 100, 1, '202408061355218621722923721862', '09-01-10-01', '', 0.000, 'ASRS000056', 1, '2024-08-06 13:55:22', '管理员', '2024-08-06 14:05:36', NULL, NULL, 0, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('VCK_202408061355218761722923721876', 2, 100, 1, '202408061355218811722923721881', '08-01-11-01', '', 0.000, 'ASRS000035', 1, '2024-08-06 13:55:22', '管理员', '2024-08-06 14:05:37', NULL, NULL, 0, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('VCK_202408061355218881722923721888', 2, 100, 1, '202408061355218901722923721890', '01-01-15-01', '', 0.000, 'ASRS000053', 1, '2024-08-06 13:55:22', '管理员', '2024-08-06 14:04:39', NULL, NULL, 0, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('VCK_202408061355218951722923721895', 2, 100, 1, '202408061355218971722923721897', '01-01-14-01', '', 0.000, 'ASRS000048', 1, '2024-08-06 13:55:22', '管理员', '2024-08-06 14:04:39', NULL, NULL, 0, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('VCK_202408061355219021722923721902', 2, 100, 1, '202408061355219041722923721904', '06-01-06-01', '', 0.000, 'ASRS000093', 1, '2024-08-06 13:55:22', '管理员', '2024-08-06 14:01:39', NULL, NULL, 0, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('VCK_202408061355219091722923721909', 2, 100, 1, '202408061355219111722923721911', '05-01-06-01', '', 0.000, 'ASRS000100', 1, '2024-08-06 13:55:22', '管理员', '2024-08-06 14:02:18', NULL, NULL, 0, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('VCK_202408061355219161722923721916', 2, 100, 1, '202408061355219181722923721918', '07-01-06-01', '', 0.000, 'ASRS000062', 1, '2024-08-06 13:55:22', '管理员', '2024-08-06 14:01:39', NULL, NULL, 0, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('VCK_202408061355219221722923721922', 2, 100, 1, '202408061355219251722923721925', '06-01-07-01', '', 0.000, 'ASRS000057', 1, '2024-08-06 13:55:22', '管理员', '2024-08-06 14:02:24', NULL, NULL, 0, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('VCK_202408061355219311722923721931', 2, 100, 1, '202408061355219321722923721932', '05-01-08-01', '', 0.000, 'ASRS000052', 1, '2024-08-06 13:55:22', '管理员', '2024-08-06 14:02:51', NULL, NULL, 0, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('VCK_202408061355219371722923721937', 2, 100, 1, '202408061355219391722923721939', '07-01-07-01', '', 0.000, 'ASRS000029', 1, '2024-08-06 13:55:22', '管理员', '2024-08-06 14:02:23', NULL, NULL, 0, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('VCK_202408061355219441722923721944', 2, 100, 1, '202408061355219461722923721946', '04-01-09-01', '', 0.000, 'ASRS000068', 1, '2024-08-06 13:55:22', '管理员', '2024-08-06 14:06:50', NULL, NULL, 0, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('VCK_202408061355219501722923721950', 2, 100, 1, '202408061355219511722923721951', '06-01-08-01', '', 0.000, 'ASRS000059', 1, '2024-08-06 13:55:22', '管理员', '2024-08-06 14:14:10', NULL, NULL, 0, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('VCK_202408061355219551722923721955', 2, 100, 1, '202408061355219571722923721957', '07-01-08-01', '', 0.000, 'ASRS000074', 1, '2024-08-06 13:55:22', '管理员', '2024-08-06 14:02:57', NULL, NULL, 0, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('VCK_202408061355219611722923721961', 2, 100, 1, '202408061355219631722923721963', '05-01-09-01', '', 0.000, 'ASRS000047', 1, '2024-08-06 13:55:22', '管理员', '2024-08-06 14:07:36', NULL, NULL, 0, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('VCK_202408061355219681722923721968', 2, 100, 1, '202408061355219691722923721969', '08-01-10-01', '', 0.000, 'ASRS000188', 1, '2024-08-06 13:55:22', '管理员', '2024-08-06 14:06:27', NULL, NULL, 0, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('VCK_202408061355219731722923721973', 2, 100, 1, '202408061355219761722923721976', '09-01-11-01', '', 0.000, 'ASRS000118', 1, '2024-08-06 13:55:22', '管理员', '2024-08-06 14:06:27', NULL, NULL, 0, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('VCK_202408061355219801722923721980', 2, 100, 1, '202408061355219821722923721982', '08-01-12-01', '', 0.000, 'ASRS000026', 1, '2024-08-06 13:55:22', '管理员', '2024-08-06 14:07:07', NULL, NULL, 0, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('VCK_202408061355219871722923721987', 2, 100, 1, '202408061355219901722923721990', '03-01-08-01', '', 0.000, 'ASRS000070', 1, '2024-08-06 13:55:22', '管理员', '2024-08-06 14:28:05', NULL, NULL, 0, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('VCK_202408061355219941722923721994', 2, 100, 1, '202408061355219961722923721996', '04-01-08-01', '', 0.000, 'ASRS000067', 1, '2024-08-06 13:55:22', '管理员', '2024-08-06 14:07:37', NULL, NULL, 0, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('VCK_202408061355220011722923722001', 2, 100, 1, '202408061355220031722923722003', '03-01-10-01', '', 0.000, 'ASRS000069', 1, '2024-08-06 13:55:22', '管理员', '2024-08-06 14:28:55', NULL, NULL, 0, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('VCK_202408061355220381722923722038', 2, 100, 1, '202408061355220401722923722040', '03-01-11-01', '', 0.000, 'ASRS000027', 1, '2024-08-06 13:55:22', '管理员', '2024-08-06 14:28:55', NULL, NULL, 0, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('VCK_202408061355220451722923722045', 2, 100, 1, '202408061355220471722923722047', '02-01-12-01', '', 0.000, 'ASRS000028', 1, '2024-08-06 13:55:22', '管理员', '2024-08-06 14:29:47', NULL, NULL, 0, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('VCK_202408061355220541722923722054', 2, 100, 1, '202408061355220551722923722055', '03-01-13-01', '', 0.000, 'ASRS000078', 1, '2024-08-06 13:55:22', '管理员', '2024-08-06 14:29:46', NULL, NULL, 0, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('VCK_202408061355220611722923722061', 2, 100, 1, '202408061355220631722923722063', '06-01-12-01', '', 0.000, 'ASRS000193', 1, '2024-08-06 13:55:22', '管理员', '2024-08-06 14:14:10', NULL, NULL, 0, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('VCK_202408061355220691722923722069', 2, 100, 1, '202408061355220711722923722071', '02-01-15-01', '', 0.000, 'ASRS000166', 1, '2024-08-06 13:55:22', '管理员', '2024-08-06 14:05:35', NULL, NULL, 0, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('VCK_202408061355220751722923722075', 2, 100, 1, '202408061355220761722923722076', '04-01-12-01', '', 0.000, 'ASRS000168', 1, '2024-08-06 13:55:22', '管理员', '2024-08-06 14:08:17', NULL, NULL, 0, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('VCK_202408061355223321722923722332', 2, 100, 1, '202408061355223341722923722334', '03-01-15-01', '', 0.000, 'ASRS000107', 1, '2024-08-06 13:55:22', '管理员', '2024-08-06 14:30:44', NULL, NULL, 0, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('VCK_202408061355223391722923722339', 2, 100, 1, '202408061355223411722923722341', '01-01-16-01', '', 0.000, 'ASRS000112', 1, '2024-08-06 13:55:22', '管理员', '2024-08-06 14:05:35', NULL, NULL, 0, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('VCK_202408061355223461722923722346', 2, 100, 1, '202408061355223481722923722348', '02-01-16-01', '', 0.000, 'ASRS000102', 1, '2024-08-06 13:55:22', '管理员', '2024-08-06 14:30:45', NULL, NULL, 0, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('VCK_202408061355223541722923722354', 2, 100, 1, '202408061355223561722923722356', '05-01-12-01', '', 0.000, 'ASRS000076', 1, '2024-08-06 13:55:22', '管理员', '2024-08-06 14:14:46', NULL, NULL, 0, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('VCK_202408061355223611722923722361', 2, 100, 1, '202408061355223631722923722363', '02-01-17-01', '', 0.000, 'ASRS000101', 1, '2024-08-06 13:55:22', '管理员', '2024-08-06 14:06:33', NULL, NULL, 0, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('VCK_202408061355223681722923722368', 2, 100, 1, '202408061355223701722923722370', '01-01-17-01', '', 0.000, 'ASRS000198', 1, '2024-08-06 13:55:22', '管理员', '2024-08-06 14:06:34', NULL, NULL, 0, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('VCK_202408061355223751722923722375', 2, 100, 1, '202408061355223761722923722376', '04-01-11-01', '', 0.000, 'ASRS000061', 1, '2024-08-06 13:55:22', '管理员', '2024-08-06 14:08:52', NULL, NULL, 0, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('VCK_202408061355223821722923722382', 2, 100, 1, '202408061355223841722923722384', '02-01-14-01', '', 0.000, 'ASRS000054', 1, '2024-08-06 13:55:22', '管理员', '2024-08-06 14:31:38', NULL, NULL, 0, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('VCK_202408061355224331722923722433', 2, 100, 1, '202408061355224361722923722436', '03-01-09-01', '', 0.000, 'ASRS000075', 1, '2024-08-06 13:55:22', '管理员', '2024-08-06 14:31:38', NULL, NULL, 0, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('VCK_202408061355224391722923722439', 2, 100, 1, '202408061355224411722923722441', '04-01-10-01', '', 0.000, 'ASRS000080', 1, '2024-08-06 13:55:22', '管理员', '2024-08-06 14:09:28', NULL, NULL, 0, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('VCK_202408061355224431722923722443', 2, 100, 1, '202408061355224451722923722445', '03-01-12-01', '', 0.000, 'ASRS000197', 1, '2024-08-06 13:55:22', '管理员', '2024-08-06 14:32:19', NULL, NULL, 0, NULL); +INSERT INTO `tbl_app_task_bak` VALUES ('VCK_202408061355224471722923722447', 2, 100, 1, '202408061355224501722923722450', '07-01-11-01', '', 0.000, 'ASRS000116', 1, '2024-08-06 13:55:22', '管理员', '2024-08-06 14:14:48', NULL, NULL, 0, NULL); + +-- ---------------------------- +-- Table structure for tbl_app_upload_record +-- ---------------------------- +DROP TABLE IF EXISTS `tbl_app_upload_record`; +CREATE TABLE `tbl_app_upload_record` ( + `upload_id` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL COMMENT '上传id', + `file_id` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL COMMENT '文件id', + `file_name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL COMMENT '文件名', + `file_description` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL COMMENT '文件描述', + `file_type` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL COMMENT '文件类型', + `upload_time` datetime NULL DEFAULT NULL COMMENT '上传时间', + `upload_user` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL COMMENT '上传人员', + PRIMARY KEY (`upload_id`) USING BTREE +) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_0900_ai_ci ROW_FORMAT = Dynamic; + +-- ---------------------------- +-- Records of tbl_app_upload_record +-- ---------------------------- +INSERT INTO `tbl_app_upload_record` VALUES ('UPLOAD_202408070951511921722995511192', '1722994900159', 'MWL数据.xlsx', 'fileDescription', 'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet', '2024-08-07 09:51:51', '管理员'); +INSERT INTO `tbl_app_upload_record` VALUES ('UPLOAD_202408070954288741722995668874', '1722995666442', 'MWL数据.xlsx', 'fileDescription', 'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet', '2024-08-07 09:54:29', '管理员'); +INSERT INTO `tbl_app_upload_record` VALUES ('UPLOAD_202408070955342391722995734239', '1722995732954', 'MWL数据.xlsx', 'fileDescription', 'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet', '2024-08-07 09:55:34', '管理员'); +INSERT INTO `tbl_app_upload_record` VALUES ('UPLOAD_202408070956100281722995770028', '1722995768635', 'MWL数据.xlsx', 'fileDescription', 'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet', '2024-08-07 09:56:10', '管理员'); +INSERT INTO `tbl_app_upload_record` VALUES ('UPLOAD_202408070957124071722995832407', '1722995830981', 'MWL数据.xlsx', 'fileDescription', 'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet', '2024-08-07 09:57:12', '管理员'); +INSERT INTO `tbl_app_upload_record` VALUES ('UPLOAD_202408070957502631722995870263', '1722995868354', 'MWL数据.xlsx', 'fileDescription', 'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet', '2024-08-07 09:57:50', '管理员'); +INSERT INTO `tbl_app_upload_record` VALUES ('UPLOAD_202408070958072961722995887296', '1722995885834', 'MWL数据.xlsx', 'fileDescription', 'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet', '2024-08-07 09:58:07', '管理员'); +INSERT INTO `tbl_app_upload_record` VALUES ('UPLOAD_202408070958383091722995918309', '1722995916636', 'MWL数据.xlsx', 'fileDescription', 'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet', '2024-08-07 09:58:38', '管理员'); +INSERT INTO `tbl_app_upload_record` VALUES ('UPLOAD_202408071003493791722996229379', '1722996226239', 'MWL数据.xlsx', 'fileDescription', 'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet', '2024-08-07 10:03:49', '管理员'); +INSERT INTO `tbl_app_upload_record` VALUES ('UPLOAD_202408071005055241722996305524', '1722996301656', 'MWL数据.xlsx', 'fileDescription', 'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet', '2024-08-07 10:05:06', '管理员'); +INSERT INTO `tbl_app_upload_record` VALUES ('UPLOAD_202408071106265081722999986508', '1722999983070', 'MWL数据.xlsx', 'fileDescription', 'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet', '2024-08-07 11:06:27', '管理员'); +INSERT INTO `tbl_app_upload_record` VALUES ('UPLOAD_202408071106576881723000017688', '1723000013885', 'MWL数据.xlsx', 'fileDescription', 'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet', '2024-08-07 11:06:58', '管理员'); -- ---------------------------- -- Table structure for tbl_app_vehicle @@ -2847,8 +14772,181 @@ CREATE TABLE `tbl_app_vehicle` ( -- ---------------------------- -- Records of tbl_app_vehicle -- ---------------------------- -INSERT INTO `tbl_app_vehicle` VALUES ('1', 2, '0101', 1, '1', NULL, '2024-07-26 15:12:25'); -INSERT INTO `tbl_app_vehicle` VALUES ('2', 2, '0101', 0, '2', NULL, '2024-07-26 15:12:28'); +INSERT INTO `tbl_app_vehicle` VALUES ('ASRS000001', 2, '04-01-01-01', 0, '', NULL, '2024-08-02 09:39:49'); +INSERT INTO `tbl_app_vehicle` VALUES ('ASRS000002', 2, '08-01-01-01', 1, '', NULL, '2024-08-06 14:38:00'); +INSERT INTO `tbl_app_vehicle` VALUES ('ASRS000003', 2, '01-01-13-01', 1, '', NULL, '2024-08-06 14:45:23'); +INSERT INTO `tbl_app_vehicle` VALUES ('ASRS000004', 2, '05-01-02-01', 1, '', NULL, '2024-08-06 14:36:19'); +INSERT INTO `tbl_app_vehicle` VALUES ('ASRS000005', 2, '03-02-02-01', 1, '', NULL, '2024-08-06 14:36:42'); +INSERT INTO `tbl_app_vehicle` VALUES ('ASRS000006', 2, '02-01-02-01', 1, '', NULL, '2024-08-06 14:38:03'); +INSERT INTO `tbl_app_vehicle` VALUES ('ASRS000007', 2, '01-01-05-01', 1, '', NULL, '2024-08-06 14:37:48'); +INSERT INTO `tbl_app_vehicle` VALUES ('ASRS000008', 2, '09-01-04-01', 1, '', NULL, '2024-08-06 14:36:59'); +INSERT INTO `tbl_app_vehicle` VALUES ('ASRS000009', 2, '07-01-02-01', 1, '', NULL, '2024-08-06 14:37:22'); +INSERT INTO `tbl_app_vehicle` VALUES ('ASRS000010', 2, '05-01-05-01', 1, '', NULL, '2024-08-06 14:39:35'); +INSERT INTO `tbl_app_vehicle` VALUES ('ASRS000011', 2, '06-01-02-01', 1, '', NULL, '2024-08-06 14:38:14'); +INSERT INTO `tbl_app_vehicle` VALUES ('ASRS000012', 2, '01-01-04-01', 1, '', NULL, '2024-08-06 14:37:04'); +INSERT INTO `tbl_app_vehicle` VALUES ('ASRS000013', 2, '06-01-03-01', 1, '', NULL, '2024-08-06 14:36:43'); +INSERT INTO `tbl_app_vehicle` VALUES ('ASRS000014', 2, '03-02-03-01', 1, '', NULL, '2024-08-06 14:37:22'); +INSERT INTO `tbl_app_vehicle` VALUES ('ASRS000015', 2, '02-01-06-01', 1, '', NULL, '2024-08-02 13:13:23'); +INSERT INTO `tbl_app_vehicle` VALUES ('ASRS000016', 2, '03-01-04-01', 1, '', NULL, '2024-08-06 14:44:35'); +INSERT INTO `tbl_app_vehicle` VALUES ('ASRS000017', 2, '07-01-03-01', 1, '', NULL, '2024-08-06 14:37:33'); +INSERT INTO `tbl_app_vehicle` VALUES ('ASRS000018', 2, '06-01-07-01', 1, '', NULL, '2024-08-06 14:40:35'); +INSERT INTO `tbl_app_vehicle` VALUES ('ASRS000020', 2, '05-01-03-01', 1, '', NULL, '2024-08-06 14:37:13'); +INSERT INTO `tbl_app_vehicle` VALUES ('ASRS000021', 2, '03-01-02-01', 1, '', NULL, '2024-08-06 14:36:03'); +INSERT INTO `tbl_app_vehicle` VALUES ('ASRS000022', 2, '08-01-10-01', 1, '', NULL, '2024-08-06 14:46:30'); +INSERT INTO `tbl_app_vehicle` VALUES ('ASRS000023', 2, '06-01-12-01', 1, '', NULL, '2024-08-06 14:45:08'); +INSERT INTO `tbl_app_vehicle` VALUES ('ASRS000024', 2, '09-01-07-01', 1, '', NULL, '2024-08-06 14:41:30'); +INSERT INTO `tbl_app_vehicle` VALUES ('ASRS000025', 2, '07-01-06-01', 1, '', NULL, '2024-08-06 14:39:38'); +INSERT INTO `tbl_app_vehicle` VALUES ('ASRS000026', 2, '01-01-11-01', 1, '', NULL, '2024-08-06 14:39:39'); +INSERT INTO `tbl_app_vehicle` VALUES ('ASRS000027', 2, '02-01-13-01', 1, '', NULL, '2024-08-06 14:46:02'); +INSERT INTO `tbl_app_vehicle` VALUES ('ASRS000028', 2, '04-01-10-01', 1, '', NULL, '2024-08-06 14:45:40'); +INSERT INTO `tbl_app_vehicle` VALUES ('ASRS000029', 2, '02-02-06-01', 1, '', NULL, '2024-08-06 14:42:45'); +INSERT INTO `tbl_app_vehicle` VALUES ('ASRS000030', 2, '05-01-09-01', 1, '', NULL, '2024-08-06 14:45:02'); +INSERT INTO `tbl_app_vehicle` VALUES ('ASRS000031', 2, '01-01-08-01', 1, '', NULL, '2024-08-06 14:38:01'); +INSERT INTO `tbl_app_vehicle` VALUES ('ASRS000032', 2, '09-01-06-01', 1, '', NULL, '2024-08-06 14:40:44'); +INSERT INTO `tbl_app_vehicle` VALUES ('ASRS000033', 2, '02-01-04-01', 1, '', NULL, '2024-08-06 14:44:08'); +INSERT INTO `tbl_app_vehicle` VALUES ('ASRS000034', 2, '09-01-10-01', 1, '', NULL, '2024-08-06 14:47:52'); +INSERT INTO `tbl_app_vehicle` VALUES ('ASRS000035', 2, '01-01-10-01', 1, '', NULL, '2024-08-06 14:40:43'); +INSERT INTO `tbl_app_vehicle` VALUES ('ASRS000037', 2, '07-01-01-01', 1, '', NULL, '2024-08-06 14:36:03'); +INSERT INTO `tbl_app_vehicle` VALUES ('ASRS000038', 2, '08-01-08-01', 1, '', NULL, '2024-08-06 14:44:01'); +INSERT INTO `tbl_app_vehicle` VALUES ('ASRS000039', 2, '07-01-05-01', 1, '', NULL, '2024-08-06 14:41:52'); +INSERT INTO `tbl_app_vehicle` VALUES ('ASRS000040', 2, '08-01-05-01', 1, '', NULL, '2024-08-06 14:40:13'); +INSERT INTO `tbl_app_vehicle` VALUES ('ASRS000041', 2, '04-01-07-01', 1, '', NULL, '2024-08-06 14:41:46'); +INSERT INTO `tbl_app_vehicle` VALUES ('ASRS000042', 2, '09-01-08-01', 1, '', NULL, '2024-08-06 14:44:34'); +INSERT INTO `tbl_app_vehicle` VALUES ('ASRS000043', 2, '01-01-15-01', 1, '', NULL, '2024-08-06 14:47:22'); +INSERT INTO `tbl_app_vehicle` VALUES ('ASRS000044', 2, '07-01-09-01', 1, '', NULL, '2024-08-02 13:08:47'); +INSERT INTO `tbl_app_vehicle` VALUES ('ASRS000045', 2, '05-01-10-01', 1, '', NULL, '2024-08-02 13:09:36'); +INSERT INTO `tbl_app_vehicle` VALUES ('ASRS000046', 2, '03-01-14-01', 1, '', NULL, '2024-08-02 13:07:57'); +INSERT INTO `tbl_app_vehicle` VALUES ('ASRS000047', 2, '04-01-08-01', 1, '', NULL, '2024-08-06 14:42:36'); +INSERT INTO `tbl_app_vehicle` VALUES ('ASRS000048', 2, '02-02-08-01', 1, '', NULL, '2024-08-06 14:39:29'); +INSERT INTO `tbl_app_vehicle` VALUES ('ASRS000049', 2, '01-01-07-01', 1, '', NULL, '2024-08-06 14:37:17'); +INSERT INTO `tbl_app_vehicle` VALUES ('ASRS000050', 2, '03-02-04-01', 1, '', NULL, '2024-08-06 14:36:15'); +INSERT INTO `tbl_app_vehicle` VALUES ('ASRS000051', 2, '06-01-11-01', 1, '', NULL, '2024-08-02 13:13:22'); +INSERT INTO `tbl_app_vehicle` VALUES ('ASRS000052', 2, '03-02-05-01', 1, '', NULL, '2024-08-06 14:36:54'); +INSERT INTO `tbl_app_vehicle` VALUES ('ASRS000053', 2, '01-01-09-01', 1, '', NULL, '2024-08-06 14:39:51'); +INSERT INTO `tbl_app_vehicle` VALUES ('ASRS000054', 2, '01-01-14-01', 1, '', NULL, '2024-08-06 14:46:41'); +INSERT INTO `tbl_app_vehicle` VALUES ('ASRS000055', 2, '04-01-05-01', 1, '', NULL, '2024-08-06 14:36:46'); +INSERT INTO `tbl_app_vehicle` VALUES ('ASRS000056', 2, '03-02-08-01', 1, '', NULL, '2024-08-06 14:40:51'); +INSERT INTO `tbl_app_vehicle` VALUES ('ASRS000057', 2, '07-01-04-01', 1, '', NULL, '2024-08-06 14:36:16'); +INSERT INTO `tbl_app_vehicle` VALUES ('ASRS000058', 2, '01-01-06-01', 1, '', NULL, '2024-08-06 14:36:24'); +INSERT INTO `tbl_app_vehicle` VALUES ('ASRS000059', 2, '06-01-19-01', 1, '', NULL, '2024-08-06 14:46:37'); +INSERT INTO `tbl_app_vehicle` VALUES ('ASRS000060', 2, '06-01-04-01', 1, '', NULL, '2024-08-06 14:38:02'); +INSERT INTO `tbl_app_vehicle` VALUES ('ASRS000061', 2, '05-01-08-01', 1, '', NULL, '2024-08-06 14:43:22'); +INSERT INTO `tbl_app_vehicle` VALUES ('ASRS000062', 2, '02-01-05-01', 1, '', NULL, '2024-08-06 14:35:52'); +INSERT INTO `tbl_app_vehicle` VALUES ('ASRS000063', 2, '05-01-04-01', 1, '', NULL, '2024-08-06 14:36:07'); +INSERT INTO `tbl_app_vehicle` VALUES ('ASRS000064', 2, '09-01-03-01', 1, '', NULL, '2024-08-06 14:37:27'); +INSERT INTO `tbl_app_vehicle` VALUES ('ASRS000065', 2, '05-01-11-01', 1, '', NULL, '2024-08-02 13:08:48'); +INSERT INTO `tbl_app_vehicle` VALUES ('ASRS000066', 2, '06-01-05-01', 1, '', NULL, '2024-08-06 14:36:56'); +INSERT INTO `tbl_app_vehicle` VALUES ('ASRS000067', 2, '02-01-11-01', 1, '', NULL, '2024-08-06 14:43:22'); +INSERT INTO `tbl_app_vehicle` VALUES ('ASRS000068', 2, '03-02-09-01', 1, '', NULL, '2024-08-06 14:42:14'); +INSERT INTO `tbl_app_vehicle` VALUES ('ASRS000069', 2, '03-01-05-01', 1, '', NULL, '2024-08-06 14:46:47'); +INSERT INTO `tbl_app_vehicle` VALUES ('ASRS000072', 2, '06-01-09-01', 1, '', NULL, '2024-08-02 13:12:46'); +INSERT INTO `tbl_app_vehicle` VALUES ('ASRS000073', 2, '04-01-06-01', 1, '', NULL, '2024-08-06 14:41:57'); +INSERT INTO `tbl_app_vehicle` VALUES ('ASRS000074', 2, '02-01-07-01', 1, '', NULL, '2024-08-06 14:38:33'); +INSERT INTO `tbl_app_vehicle` VALUES ('ASRS000075', 2, '04-01-12-01', 1, '', NULL, '2024-08-06 14:47:01'); +INSERT INTO `tbl_app_vehicle` VALUES ('ASRS000076', 2, '07-01-11-01', 1, '', NULL, '2024-08-06 14:44:27'); +INSERT INTO `tbl_app_vehicle` VALUES ('ASRS000077', 2, '03-02-07-01', 1, '', NULL, '2024-08-06 14:39:40'); +INSERT INTO `tbl_app_vehicle` VALUES ('ASRS000078', 2, '07-01-18-01', 1, '', NULL, '2024-08-06 14:45:49'); +INSERT INTO `tbl_app_vehicle` VALUES ('ASRS000079', 2, '02-01-10-01', 1, '', NULL, '2024-08-06 14:45:21'); +INSERT INTO `tbl_app_vehicle` VALUES ('ASRS000080', 2, '01-01-12-01', 1, '', NULL, '2024-08-06 14:44:24'); +INSERT INTO `tbl_app_vehicle` VALUES ('ASRS000081', 2, '02-01-15-01', 1, '', NULL, '2024-08-06 14:48:26'); +INSERT INTO `tbl_app_vehicle` VALUES ('ASRS000082', 2, '09-01-01-01', 1, '', NULL, '2024-08-06 14:35:05'); +INSERT INTO `tbl_app_vehicle` VALUES ('ASRS000083', 2, '06-01-06-01', 1, '', NULL, '2024-08-06 14:39:49'); +INSERT INTO `tbl_app_vehicle` VALUES ('ASRS000084', 2, '01-01-03-01', 1, '', NULL, '2024-08-06 14:36:37'); +INSERT INTO `tbl_app_vehicle` VALUES ('ASRS000085', 2, '03-02-06-01', 1, '', NULL, '2024-08-06 14:41:22'); +INSERT INTO `tbl_app_vehicle` VALUES ('ASRS000086', 2, '08-01-07-01', 1, '', NULL, '2024-08-06 14:39:25'); +INSERT INTO `tbl_app_vehicle` VALUES ('ASRS000087', 2, '04-01-02-01', 1, '', NULL, '2024-08-06 14:37:25'); +INSERT INTO `tbl_app_vehicle` VALUES ('ASRS000088', 2, '09-01-02-01', 1, '', NULL, '2024-08-06 14:36:19'); +INSERT INTO `tbl_app_vehicle` VALUES ('ASRS000089', 2, '08-01-03-01', 1, '', NULL, '2024-08-06 14:38:27'); +INSERT INTO `tbl_app_vehicle` VALUES ('ASRS000090', 2, '08-01-02-01', 1, '', NULL, '2024-08-06 14:35:48'); +INSERT INTO `tbl_app_vehicle` VALUES ('ASRS000091', 2, '02-01-08-01', 1, '', NULL, '2024-08-06 14:47:29'); +INSERT INTO `tbl_app_vehicle` VALUES ('ASRS000093', 2, '03-01-03-01', 1, '', NULL, '2024-08-06 14:41:59'); +INSERT INTO `tbl_app_vehicle` VALUES ('ASRS000094', 2, '02-02-04-01', 1, '', NULL, '2024-08-06 14:37:33'); +INSERT INTO `tbl_app_vehicle` VALUES ('ASRS000095', 2, '02-02-02-01', 0, '', NULL, '2024-08-02 13:56:20'); +INSERT INTO `tbl_app_vehicle` VALUES ('ASRS000097', 2, '06-01-08-01', 1, '', NULL, '2024-08-06 14:40:24'); +INSERT INTO `tbl_app_vehicle` VALUES ('ASRS000099', 2, '04-01-04-01', 1, '', NULL, '2024-08-06 14:35:23'); +INSERT INTO `tbl_app_vehicle` VALUES ('ASRS000100', 2, '08-01-04-01', 1, '', NULL, '2024-08-06 14:36:48'); +INSERT INTO `tbl_app_vehicle` VALUES ('ASRS000101', 2, '05-01-07-01', 1, '', NULL, '2024-08-06 14:42:47'); +INSERT INTO `tbl_app_vehicle` VALUES ('ASRS000102', 2, '03-01-06-01', 1, '', NULL, '2024-08-06 14:46:58'); +INSERT INTO `tbl_app_vehicle` VALUES ('ASRS000103', 2, '01-01-20-01', 1, '', NULL, '2024-08-02 13:27:01'); +INSERT INTO `tbl_app_vehicle` VALUES ('ASRS000104', 2, '09-01-15-01', 1, '', NULL, '2024-08-06 13:44:52'); +INSERT INTO `tbl_app_vehicle` VALUES ('ASRS000105', 2, '08-01-13-01', 1, '', NULL, '2024-08-02 13:18:32'); +INSERT INTO `tbl_app_vehicle` VALUES ('ASRS000107', 2, '09-01-09-01', 1, '', NULL, '2024-08-06 14:45:44'); +INSERT INTO `tbl_app_vehicle` VALUES ('ASRS000108', 2, '01-01-21-01', 1, '', NULL, '2024-08-02 13:24:45'); +INSERT INTO `tbl_app_vehicle` VALUES ('ASRS000109', 2, '04-01-14-01', 1, '', NULL, '2024-08-02 13:26:32'); +INSERT INTO `tbl_app_vehicle` VALUES ('ASRS000110', 2, '04-01-15-01', 1, '', NULL, '2024-08-02 13:24:04'); +INSERT INTO `tbl_app_vehicle` VALUES ('ASRS000111', 2, '03-01-18-01', 1, '', NULL, '2024-08-02 13:24:28'); +INSERT INTO `tbl_app_vehicle` VALUES ('ASRS000112', 2, '05-01-06-01', 1, '', NULL, '2024-08-06 14:40:25'); +INSERT INTO `tbl_app_vehicle` VALUES ('ASRS000113', 2, '07-01-12-01', 1, '', NULL, '2024-08-02 13:17:50'); +INSERT INTO `tbl_app_vehicle` VALUES ('ASRS000116', 2, '08-01-09-01', 1, '', NULL, '2024-08-06 14:45:08'); +INSERT INTO `tbl_app_vehicle` VALUES ('ASRS000117', 2, '05-01-01-01', 0, '', NULL, '2024-08-02 10:05:42'); +INSERT INTO `tbl_app_vehicle` VALUES ('ASRS000118', 2, '02-01-09-01', 1, '', NULL, '2024-08-06 14:41:17'); +INSERT INTO `tbl_app_vehicle` VALUES ('ASRS000119', 2, '09-01-13-01', 1, '', NULL, '2024-08-02 13:19:14'); +INSERT INTO `tbl_app_vehicle` VALUES ('ASRS000120', 2, '04-01-13-01', 1, '', NULL, '2024-08-02 13:18:19'); +INSERT INTO `tbl_app_vehicle` VALUES ('ASRS000121', 2, '09-01-12-01', 1, '', NULL, '2024-08-02 13:17:54'); +INSERT INTO `tbl_app_vehicle` VALUES ('ASRS000122', 2, '03-02-01-01', 0, '', NULL, '2024-08-02 13:38:32'); +INSERT INTO `tbl_app_vehicle` VALUES ('ASRS000126', 2, '01-02-02-01', 0, '', NULL, '2024-08-02 13:37:30'); +INSERT INTO `tbl_app_vehicle` VALUES ('ASRS000127', 2, '07-01-17-01', 0, '', NULL, '2024-08-02 13:38:13'); +INSERT INTO `tbl_app_vehicle` VALUES ('ASRS000128', 2, '03-01-22-01', 0, '', NULL, '2024-08-02 13:37:41'); +INSERT INTO `tbl_app_vehicle` VALUES ('ASRS000129', 2, '07-01-16-01', 0, '', NULL, '2024-08-02 13:36:06'); +INSERT INTO `tbl_app_vehicle` VALUES ('ASRS000131', 2, '08-01-16-01', 0, '', NULL, '2024-08-02 13:34:41'); +INSERT INTO `tbl_app_vehicle` VALUES ('ASRS000132', 2, '01-02-01-01', 0, '', NULL, '2024-08-02 13:35:25'); +INSERT INTO `tbl_app_vehicle` VALUES ('ASRS000133', 2, '08-01-18-01', 0, '', NULL, '2024-08-02 13:56:00'); +INSERT INTO `tbl_app_vehicle` VALUES ('ASRS000134', 2, '06-01-18-01', 0, '', NULL, '2024-08-02 13:55:47'); +INSERT INTO `tbl_app_vehicle` VALUES ('ASRS000138', 2, '02-01-03-01', 0, '', NULL, '2024-08-02 09:38:56'); +INSERT INTO `tbl_app_vehicle` VALUES ('ASRS000141', 2, '02-01-22-01', 0, '', NULL, '2024-08-02 13:36:41'); +INSERT INTO `tbl_app_vehicle` VALUES ('ASRS000142', 2, '04-01-18-01', 0, '', NULL, '2024-08-02 13:39:01'); +INSERT INTO `tbl_app_vehicle` VALUES ('ASRS000143', 2, '01-01-02-01', 1, '', NULL, '2024-08-06 14:38:48'); +INSERT INTO `tbl_app_vehicle` VALUES ('ASRS000145', 2, '03-01-21-01', 0, '', NULL, '2024-08-02 13:35:04'); +INSERT INTO `tbl_app_vehicle` VALUES ('ASRS000146', 2, '09-01-16-01', 0, '', NULL, '2024-08-02 13:36:17'); +INSERT INTO `tbl_app_vehicle` VALUES ('ASRS000147', 2, '02-02-03-01', 0, '', NULL, '2024-08-02 13:56:37'); +INSERT INTO `tbl_app_vehicle` VALUES ('ASRS000148', 2, '03-01-08-01', 1, '', NULL, '2024-08-06 14:48:01'); +INSERT INTO `tbl_app_vehicle` VALUES ('ASRS000150', 2, '06-01-16-01', 0, '', NULL, '2024-08-02 13:34:29'); +INSERT INTO `tbl_app_vehicle` VALUES ('ASRS000151', 2, '07-01-13-01', 1, '', NULL, '2024-08-02 13:19:12'); +INSERT INTO `tbl_app_vehicle` VALUES ('ASRS000152', 2, '07-01-14-01', 1, '', NULL, '2024-08-02 13:23:41'); +INSERT INTO `tbl_app_vehicle` VALUES ('ASRS000153', 2, '03-01-19-01', 1, '', NULL, '2024-08-02 13:24:40'); +INSERT INTO `tbl_app_vehicle` VALUES ('ASRS000154', 2, '07-01-19-01', 1, '', NULL, '2024-08-06 14:47:23'); +INSERT INTO `tbl_app_vehicle` VALUES ('ASRS000155', 2, '03-01-17-01', 1, '', NULL, '2024-08-02 13:23:31'); +INSERT INTO `tbl_app_vehicle` VALUES ('ASRS000156', 2, '02-01-20-01', 1, '', NULL, '2024-08-02 13:25:26'); +INSERT INTO `tbl_app_vehicle` VALUES ('ASRS000157', 2, '02-01-21-01', 1, '', NULL, '2024-08-02 13:24:56'); +INSERT INTO `tbl_app_vehicle` VALUES ('ASRS000158', 2, '08-01-14-01', 1, '', NULL, '2024-08-02 13:19:53'); +INSERT INTO `tbl_app_vehicle` VALUES ('ASRS000159', 2, '08-01-15-01', 1, '', NULL, '2024-08-02 13:24:17'); +INSERT INTO `tbl_app_vehicle` VALUES ('ASRS000160', 2, '06-01-10-01', 1, '', NULL, '2024-08-02 13:13:33'); +INSERT INTO `tbl_app_vehicle` VALUES ('ASRS000161', 2, '05-01-14-01', 1, '', NULL, '2024-08-02 13:23:52'); +INSERT INTO `tbl_app_vehicle` VALUES ('ASRS000162', 2, '07-01-15-01', 1, '', NULL, '2024-08-02 13:25:02'); +INSERT INTO `tbl_app_vehicle` VALUES ('ASRS000164', 2, '05-01-15-01', 1, '', NULL, '2024-08-02 13:25:02'); +INSERT INTO `tbl_app_vehicle` VALUES ('ASRS000166', 2, '09-01-05-01', 1, '', NULL, '2024-08-06 14:39:37'); +INSERT INTO `tbl_app_vehicle` VALUES ('ASRS000167', 2, '03-01-16-01', 1, '', NULL, '2024-08-02 13:26:33'); +INSERT INTO `tbl_app_vehicle` VALUES ('ASRS000168', 2, '07-01-08-01', 1, '', NULL, '2024-08-06 14:43:28'); +INSERT INTO `tbl_app_vehicle` VALUES ('ASRS000169', 2, '05-01-13-01', 1, '', NULL, '2024-08-02 13:22:38'); +INSERT INTO `tbl_app_vehicle` VALUES ('ASRS000170', 2, '09-01-14-01', 1, '', NULL, '2024-08-02 13:23:36'); +INSERT INTO `tbl_app_vehicle` VALUES ('ASRS000171', 2, '06-01-15-01', 1, '', NULL, '2024-08-02 13:24:22'); +INSERT INTO `tbl_app_vehicle` VALUES ('ASRS000172', 2, '01-01-22-01', 0, '', NULL, '2024-08-02 13:34:15'); +INSERT INTO `tbl_app_vehicle` VALUES ('ASRS000173', 2, '05-01-17-01', 0, '', NULL, '2024-08-02 13:38:06'); +INSERT INTO `tbl_app_vehicle` VALUES ('ASRS000174', 2, '09-01-17-01', 0, '', NULL, '2024-08-02 13:38:21'); +INSERT INTO `tbl_app_vehicle` VALUES ('ASRS000175', 2, '01-02-03-01', 0, '', NULL, '2024-08-02 13:38:33'); +INSERT INTO `tbl_app_vehicle` VALUES ('ASRS000176', 2, '01-01-01-01', 0, '', NULL, '2024-08-01 16:14:26'); +INSERT INTO `tbl_app_vehicle` VALUES ('ASRS000178', 2, '04-01-16-01', 0, '', NULL, '2024-08-02 13:34:17'); +INSERT INTO `tbl_app_vehicle` VALUES ('ASRS000179', 2, '03-01-01-01', 0, '', NULL, '2024-08-02 10:02:36'); +INSERT INTO `tbl_app_vehicle` VALUES ('ASRS000180', 2, '06-01-01-01', 0, '', NULL, '2024-08-02 09:50:58'); +INSERT INTO `tbl_app_vehicle` VALUES ('ASRS000181', 2, '02-02-01-01', 0, '', NULL, '2024-08-02 13:36:31'); +INSERT INTO `tbl_app_vehicle` VALUES ('ASRS000182', 2, '04-01-17-01', 0, '', NULL, '2024-08-02 13:36:59'); +INSERT INTO `tbl_app_vehicle` VALUES ('ASRS000183', 2, '08-01-17-01', 0, '', NULL, '2024-08-02 13:37:17'); +INSERT INTO `tbl_app_vehicle` VALUES ('ASRS000184', 2, '02-01-01-01', 0, '', NULL, '2024-08-02 09:56:55'); +INSERT INTO `tbl_app_vehicle` VALUES ('ASRS000185', 2, '03-01-20-01', 0, '', NULL, '2024-08-02 13:33:12'); +INSERT INTO `tbl_app_vehicle` VALUES ('ASRS000186', 2, '05-01-16-01', 0, '', NULL, '2024-08-02 13:35:45'); +INSERT INTO `tbl_app_vehicle` VALUES ('ASRS000187', 2, '06-01-17-01', 0, '', NULL, '2024-08-02 13:37:07'); +INSERT INTO `tbl_app_vehicle` VALUES ('ASRS000188', 2, '08-01-06-01', 1, '', NULL, '2024-08-06 14:40:55'); +INSERT INTO `tbl_app_vehicle` VALUES ('ASRS000189', 2, '06-01-14-01', 1, '', NULL, '2024-08-02 13:22:45'); +INSERT INTO `tbl_app_vehicle` VALUES ('ASRS000190', 2, '02-01-19-01', 1, '', NULL, '2024-08-02 13:23:55'); +INSERT INTO `tbl_app_vehicle` VALUES ('ASRS000191', 2, '06-01-13-01', 1, '', NULL, '2024-08-02 13:18:28'); +INSERT INTO `tbl_app_vehicle` VALUES ('ASRS000192', 2, '02-01-18-01', 1, '', NULL, '2024-08-02 13:23:42'); +INSERT INTO `tbl_app_vehicle` VALUES ('ASRS000193', 2, '04-01-09-01', 1, '', NULL, '2024-08-06 14:44:18'); +INSERT INTO `tbl_app_vehicle` VALUES ('ASRS000194', 2, '01-01-19-01', 1, '', NULL, '2024-08-02 13:23:44'); +INSERT INTO `tbl_app_vehicle` VALUES ('ASRS000196', 2, '05-01-18-01', 0, '', NULL, '2024-08-02 13:57:03'); +INSERT INTO `tbl_app_vehicle` VALUES ('ASRS000197', 2, '04-01-11-01', 1, '', NULL, '2024-08-06 14:46:24'); +INSERT INTO `tbl_app_vehicle` VALUES ('ASRS000198', 2, '07-01-07-01', 1, '', NULL, '2024-08-06 14:41:06'); +INSERT INTO `tbl_app_vehicle` VALUES ('ASRS000199', 2, '07-01-10-01', 1, '', NULL, '2024-08-02 13:14:07'); +INSERT INTO `tbl_app_vehicle` VALUES ('ASRS000200', 2, '01-01-18-01', 1, '', NULL, '2024-08-02 13:26:49'); -- ---------------------------- -- Table structure for tbl_app_work_flow @@ -2861,14 +14959,14 @@ CREATE TABLE `tbl_app_work_flow` ( `work_order` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL COMMENT '工单', `work_center` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL COMMENT '工位', `goods_id` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL COMMENT '物料编号', - `picked_num` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL COMMENT '已拣货数量', + `picked_num` decimal(12, 4) NULL DEFAULT NULL COMMENT '已拣货数量', `need_num` decimal(12, 4) NULL DEFAULT NULL COMMENT '需求数量', `light_status` int NULL DEFAULT NULL COMMENT '亮灯状态', `work_status` int NULL DEFAULT NULL COMMENT '工作状态', `create_time` datetime NULL DEFAULT NULL COMMENT '任务创建时间', `finish_time` datetime NULL DEFAULT NULL COMMENT '任务完成时间', PRIMARY KEY (`work_flow_id`) USING BTREE -) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_0900_ai_ci ROW_FORMAT = Dynamic; +) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_0900_ai_ci ROW_FORMAT = DYNAMIC; -- ---------------------------- -- Records of tbl_app_work_flow @@ -2891,11 +14989,16 @@ CREATE TABLE `tbl_app_work_station_config` ( `last_update_time` datetime NULL DEFAULT NULL COMMENT '最近更新时间', `last_update_user` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL COMMENT '最近更新用户', PRIMARY KEY (`config_id`) USING BTREE -) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_0900_ai_ci ROW_FORMAT = Dynamic; +) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_0900_ai_ci ROW_FORMAT = DYNAMIC; -- ---------------------------- -- Records of tbl_app_work_station_config -- ---------------------------- +INSERT INTO `tbl_app_work_station_config` VALUES ('1', 'ASRS-#1', 'box01', 'NWL', '1', 'bigBox01', 'b', 'b', 0, '2024-08-01 12:52:33', 'WMS'); +INSERT INTO `tbl_app_work_station_config` VALUES ('2', 'ASRS-#2', 'box02', 'NWL', '1', 'bigBox01', 'b', 'b', 0, '2024-08-01 12:52:33', 'WMS'); +INSERT INTO `tbl_app_work_station_config` VALUES ('3', 'ASRS-#2', 'box03', 'NWL', '1', 'bigBox01', 'b', 'b', 0, '2024-08-01 12:52:33', 'WMS'); +INSERT INTO `tbl_app_work_station_config` VALUES ('4', 'ASRS-#1', 'box04', 'NWL', '1', 'bigBox01', 'b', 'b', 0, '2024-08-01 12:52:33', 'WMS'); +INSERT INTO `tbl_app_work_station_config` VALUES ('5', 'ASRS-#3', 'box05', 'NWL', '1', 'bigBox01', 'b', 'b', 0, '2024-08-01 12:52:33', 'WMS'); -- ---------------------------- -- Table structure for tbl_app_work_summary @@ -2915,7 +15018,7 @@ CREATE TABLE `tbl_app_work_summary` ( `lack_status` int NULL DEFAULT NULL COMMENT '缺件状态', `finish_time` datetime NULL DEFAULT NULL COMMENT '完成时间', PRIMARY KEY (`work_flow_id`) USING BTREE -) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_0900_ai_ci ROW_FORMAT = Dynamic; +) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_0900_ai_ci ROW_FORMAT = DYNAMIC; -- ---------------------------- -- Records of tbl_app_work_summary @@ -2929,7 +15032,7 @@ CREATE TABLE `tbl_sys_config` ( `config_id` int NOT NULL COMMENT '配置ID', `config_key` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL COMMENT '配置键', `config_value` varchar(1024) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL COMMENT '配置值', - `config_type` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL COMMENT '配置类型:1.输入框2.下拉多选3.下拉单选', + `config_type` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL COMMENT '配置类型:1.输入框2.下拉多选3.开关', `config_name` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL COMMENT '配置显示名称', PRIMARY KEY (`config_id`) USING BTREE ) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_0900_ai_ci ROW_FORMAT = DYNAMIC; @@ -2937,13 +15040,18 @@ CREATE TABLE `tbl_sys_config` ( -- ---------------------------- -- Records of tbl_sys_config -- ---------------------------- -INSERT INTO `tbl_sys_config` VALUES (1, 'WCS_TASK', 'http://localhost:18990/api/Wms/WmsTask/SetStackerTask', '1', 'WCS接收任务URL'); -INSERT INTO `tbl_sys_config` VALUES (2, 'WCS_TASK_CHANGE', 'http://192.168.103.110:2000', '1', 'WCS接收任务状态变更URL'); -INSERT INTO `tbl_sys_config` VALUES (3, 'WCS_SCAN_CODE', '///', '1', 'WCS查询扫码结果的URL'); -INSERT INTO `tbl_sys_config` VALUES (4, 'URL_MES_GET_INFO', '///', '1', 'MES查询物料信息的URL'); -INSERT INTO `tbl_sys_config` VALUES (5, 'MES_IN_FEEDBACK_URL', '///', '1', 'MES接收入库反馈的URL'); -INSERT INTO `tbl_sys_config` VALUES (6, 'MES_OUT_FEEDBACK_URL', '///', '1', 'MES接收出口反馈的URL'); -INSERT INTO `tbl_sys_config` VALUES (7, 'MAX_VEHICLE_NUMS', '54', '1', '最大任务数量'); +INSERT INTO `tbl_sys_config` VALUES (1, 'URL_WCS_TASK', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '1', 'WCS接收任务URL'); +INSERT INTO `tbl_sys_config` VALUES (2, 'URL_NEW_DESTINATION', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '1', 'WCS接收新库位URL'); +INSERT INTO `tbl_sys_config` VALUES (3, 'URL_WCS_PICK_TASK', 'http://10.90.106.61:18990/api/wms/convey/conveyTask', '1', 'WCS接收拣选任务URL'); +INSERT INTO `tbl_sys_config` VALUES (4, 'URL_WCS_E_TASK', 'http://10.90.106.61:18990/api/wms/elTag/elTagTask', '1', '电子标签亮灯地址'); +INSERT INTO `tbl_sys_config` VALUES (5, 'URL_WCS_DISPOSE_VEHICLE', 'http://10.90.106.61:18990/api/wms/convey/disposeVehicle', '1', 'Wcs释放箱子URL'); +INSERT INTO `tbl_sys_config` VALUES (6, 'START_WORK', '0', '3', '开始工作'); +INSERT INTO `tbl_sys_config` VALUES (7, 'SEND_TASK', '1', '3', '发送任务'); +INSERT INTO `tbl_sys_config` VALUES (8, 'MAX_WEIGHT', '250', '1', '最大负重'); +INSERT INTO `tbl_sys_config` VALUES (9, 'MAX_VEHICLE_NUMS', '54', '1', '最大任务数量'); +INSERT INTO `tbl_sys_config` VALUES (10, 'SLOC_FILTER_STRING', 'DM01', '1', 'kitting物料筛选字符'); +INSERT INTO `tbl_sys_config` VALUES (11, 'URL_WCS_CHANGE_TASK', 'http://192.168.103.110:2000', '1', 'WCS接收任务状态变更URL'); +INSERT INTO `tbl_sys_config` VALUES (12, 'MAX_WCS_ACCEPT_NUMS', '20', '1', 'WCS可接收最大任务数'); -- ---------------------------- -- Table structure for tbl_sys_log @@ -2968,6 +15076,6378 @@ INSERT INTO `tbl_sys_log` VALUES ('LOG_202407241046438111721789203811', '获取 INSERT INTO `tbl_sys_log` VALUES ('LOG_202407241046458501721789205850', '获取备料工作信息', 'getWorkByStandAndGoods', '[{\"goodsId\": \"\", \"standId\": \"# 1\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数补全,料号必须可少\\\"}\"', '127.0.0.1', '2024-07-24 10:46:46', ''); INSERT INTO `tbl_sys_log` VALUES ('LOG_202407241047058601721789225860', '获取备料工作信息', 'getWorkByStandAndGoods', '[{\"goodsId\": \"aaa\", \"standId\": \"# 1\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"当前站台查不到正在拣选的箱子\\\"}\"', '127.0.0.1', '2024-07-24 10:47:06', ''); INSERT INTO `tbl_sys_log` VALUES ('LOG_202407271313367441722057216744', '呼叫空箱', 'callEmptyVehicle', '[{\"goodsId\": \"\", \"needNum\": 1, \"userName\": \"管理员\", \"vehicleType1\": \"LR02\", \"vehicleType2\": \"CLC一箱一料\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"库中没有空箱了。\\\"}\"', '127.0.0.1', '2024-07-27 13:13:37', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202407301455109571722322510957', '获取备料工作信息', 'getWorkByStandAndGoods', '[{\"goodsId\": \"\", \"standId\": \"# 1\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数补全,料号必须可少\\\"}\"', '127.0.0.1', '2024-07-30 14:55:11', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202407301455161461722322516146', '获取备料工作信息', 'getWorkByStandAndGoods', '[{\"goodsId\": \"aaa\", \"standId\": \"# 1\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"当前站台查不到正在拣选的箱子\\\"}\"', '127.0.0.1', '2024-07-30 14:55:16', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202407310842144001722386534400', '更新库位信息', 'genLocations', '[{\"wCol\": 64, \"wRow\": 9, \"isAsc\": true, \"areaId\": null, \"isLock\": null, \"pageNo\": 1, \"sortBy\": \"\", \"wDepth\": null, \"wLayer\": 22, \"pageSize\": 10, \"vehicleId\": \"\", \"locationId\": \"\", \"equipmentId\": null, \"locationType\": null, \"locationStatus\": null}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"生成库位成功。\\\"}\"', '127.0.0.1', '2024-07-31 08:42:14', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202407310924406541722389080654', '入库请求', 'requestIn', '[{\"userName\": \"管理员\", \"goodsList\": [], \"vehicleId\": \"ASRS-000131\", \"originPoint\": \"\", \"totalWeight\": null}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"接收入库请求成功!\\\"}\"', '127.0.0.1', '2024-07-31 09:24:41', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202407310940253061722390025306', 'Wcs请求载具入库', 'wcsVehicleIn', '[{\"point\": \"R1\", \"remark\": \"\", \"vehicleNo\": \"ASRS000131\", \"codeMessage\": \"ASRS000131\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求载具入库发生错误:当前载具没有入库或回库任务\\\"}\"', '192.168.8.62', '2024-07-31 09:40:25', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202407310945249131722390324913', 'Wcs请求载具入库', 'wcsVehicleIn', '[{\"point\": \"R1\", \"remark\": \"\", \"vehicleNo\": \"ASRS000131\", \"codeMessage\": \"ASRS000131\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求载具入库发生错误:当前载具没有入库或回库任务\\\"}\"', '192.168.8.62', '2024-07-31 09:45:25', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202407310946431911722390403191', 'Wcs请求载具入库', 'wcsVehicleIn', '[{\"point\": \"R1\", \"remark\": \"\", \"vehicleNo\": \"ASRS000131\", \"codeMessage\": \"ASRS000131\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求载具入库发生错误:当前载具没有入库或回库任务\\\"}\"', '192.168.8.62', '2024-07-31 09:46:43', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202407310946433671722390403367', 'Wcs请求载具入库', 'wcsVehicleIn', '[{\"point\": \"R1\", \"remark\": \"\", \"vehicleNo\": \"ASRS000131\", \"codeMessage\": \"ASRS000131\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求载具入库发生错误:当前载具没有入库或回库任务\\\"}\"', '192.168.8.62', '2024-07-31 09:46:43', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202407310953080781722390788078', 'Wcs请求载具入库', 'wcsVehicleIn', '[{\"point\": \"R1\", \"remark\": \"\", \"vehicleNo\": \"ASRS000131\", \"codeMessage\": \"ASRS000131\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理载具入库请求成功!\\\"}\"', '192.168.8.62', '2024-07-31 09:53:08', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202407310953150691722390795069', 'Wcs请求载具入库', 'wcsVehicleIn', '[{\"point\": \"R1\", \"remark\": \"\", \"vehicleNo\": \"ASRS000131\", \"codeMessage\": \"ASRS000131\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理载具入库请求成功!\\\"}\"', '192.168.8.62', '2024-07-31 09:53:15', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202407310955374311722390937431', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"02-01-02\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202407310924406271722389080627\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000131\\\",\\\"vehicleSize\\\":1}]\"', '\"null\"', 'http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask', '2024-07-31 09:55:37', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202407310955391261722390939126', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"02-01-02\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202407310924406271722389080627\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000131\\\",\\\"vehicleSize\\\":1}]\"', '\"null\"', 'http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask', '2024-07-31 09:55:39', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202407310955411261722390941126', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"02-01-02\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202407310924406271722389080627\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000131\\\",\\\"vehicleSize\\\":1}]\"', '\"null\"', 'http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask', '2024-07-31 09:55:41', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202407310955431271722390943127', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"02-01-02\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202407310924406271722389080627\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000131\\\",\\\"vehicleSize\\\":1}]\"', '\"null\"', 'http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask', '2024-07-31 09:55:43', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202407310955451271722390945127', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"02-01-02\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202407310924406271722389080627\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000131\\\",\\\"vehicleSize\\\":1}]\"', '\"null\"', 'http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask', '2024-07-31 09:55:45', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202407310955471281722390947128', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"02-01-02\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202407310924406271722389080627\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000131\\\",\\\"vehicleSize\\\":1}]\"', '\"null\"', 'http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask', '2024-07-31 09:55:47', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202407310955491301722390949130', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"02-01-02\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202407310924406271722389080627\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000131\\\",\\\"vehicleSize\\\":1}]\"', '\"null\"', 'http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask', '2024-07-31 09:55:49', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202407310955511291722390951129', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"02-01-02\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202407310924406271722389080627\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000131\\\",\\\"vehicleSize\\\":1}]\"', '\"null\"', 'http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask', '2024-07-31 09:55:51', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202407310955531301722390953130', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"02-01-02\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202407310924406271722389080627\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000131\\\",\\\"vehicleSize\\\":1}]\"', '\"null\"', 'http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask', '2024-07-31 09:55:53', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202407310955551331722390955133', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"02-01-02\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202407310924406271722389080627\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000131\\\",\\\"vehicleSize\\\":1}]\"', '\"null\"', 'http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask', '2024-07-31 09:55:55', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202407310955571311722390957131', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"02-01-02\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202407310924406271722389080627\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000131\\\",\\\"vehicleSize\\\":1}]\"', '\"null\"', 'http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask', '2024-07-31 09:55:57', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202407310955591331722390959133', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"02-01-02\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202407310924406271722389080627\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000131\\\",\\\"vehicleSize\\\":1}]\"', '\"null\"', 'http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask', '2024-07-31 09:55:59', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202407310956001841722390960184', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"02-01-02\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202407310924406271722389080627\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000131\\\",\\\"vehicleSize\\\":1}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"请求的任务数据存在异常\\\",\\\"returnData\\\":[{\\\"taskId\\\":\\\"202407310924406271722389080627\\\",\\\"taskType\\\":1,\\\"priority\\\":1,\\\"destination\\\":\\\"02-01-02\\\",\\\"vehicleNo\\\":\\\"ASRS000131\\\",\\\"vehicleSize\\\":1}]}\"', 'http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask', '2024-07-31 09:56:00', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202407310956001871722390960187', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"02-01-02\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202407310924406271722389080627\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000131\\\",\\\"vehicleSize\\\":1}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"请求的任务数据存在异常\\\",\\\"returnData\\\":[{\\\"taskId\\\":\\\"202407310924406271722389080627\\\",\\\"taskType\\\":1,\\\"priority\\\":1,\\\"destination\\\":\\\"02-01-02\\\",\\\"vehicleNo\\\":\\\"ASRS000131\\\",\\\"vehicleSize\\\":1}]}\"', 'http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask', '2024-07-31 09:56:00', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202407310956012031722390961203', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"02-01-02\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202407310924406271722389080627\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000131\\\",\\\"vehicleSize\\\":1}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"请求的任务数据存在异常\\\",\\\"returnData\\\":[{\\\"taskId\\\":\\\"202407310924406271722389080627\\\",\\\"taskType\\\":1,\\\"priority\\\":1,\\\"destination\\\":\\\"02-01-02\\\",\\\"vehicleNo\\\":\\\"ASRS000131\\\",\\\"vehicleSize\\\":1}]}\"', 'http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask', '2024-07-31 09:56:01', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202407310956022021722390962202', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"02-01-02\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202407310924406271722389080627\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000131\\\",\\\"vehicleSize\\\":1}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"请求的任务数据存在异常\\\",\\\"returnData\\\":[{\\\"taskId\\\":\\\"202407310924406271722389080627\\\",\\\"taskType\\\":1,\\\"priority\\\":1,\\\"destination\\\":\\\"02-01-02\\\",\\\"vehicleNo\\\":\\\"ASRS000131\\\",\\\"vehicleSize\\\":1}]}\"', 'http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask', '2024-07-31 09:56:02', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202407310956042121722390964212', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"02-01-02\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202407310924406271722389080627\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000131\\\",\\\"vehicleSize\\\":1}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"请求的任务数据存在异常\\\",\\\"returnData\\\":[{\\\"taskId\\\":\\\"202407310924406271722389080627\\\",\\\"taskType\\\":1,\\\"priority\\\":1,\\\"destination\\\":\\\"02-01-02\\\",\\\"vehicleNo\\\":\\\"ASRS000131\\\",\\\"vehicleSize\\\":1}]}\"', 'http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask', '2024-07-31 09:56:04', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202407310956061861722390966186', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"02-01-02\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202407310924406271722389080627\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000131\\\",\\\"vehicleSize\\\":1}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"请求的任务数据存在异常\\\",\\\"returnData\\\":[{\\\"taskId\\\":\\\"202407310924406271722389080627\\\",\\\"taskType\\\":1,\\\"priority\\\":1,\\\"destination\\\":\\\"02-01-02\\\",\\\"vehicleNo\\\":\\\"ASRS000131\\\",\\\"vehicleSize\\\":1}]}\"', 'http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask', '2024-07-31 09:56:06', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202407310956082041722390968204', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"02-01-02\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202407310924406271722389080627\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000131\\\",\\\"vehicleSize\\\":1}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"请求的任务数据存在异常\\\",\\\"returnData\\\":[{\\\"taskId\\\":\\\"202407310924406271722389080627\\\",\\\"taskType\\\":1,\\\"priority\\\":1,\\\"destination\\\":\\\"02-01-02\\\",\\\"vehicleNo\\\":\\\"ASRS000131\\\",\\\"vehicleSize\\\":1}]}\"', 'http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask', '2024-07-31 09:56:08', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202407310956102321722390970232', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"02-01-02\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202407310924406271722389080627\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000131\\\",\\\"vehicleSize\\\":1}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"请求的任务数据存在异常\\\",\\\"returnData\\\":[{\\\"taskId\\\":\\\"202407310924406271722389080627\\\",\\\"taskType\\\":1,\\\"priority\\\":1,\\\"destination\\\":\\\"02-01-02\\\",\\\"vehicleNo\\\":\\\"ASRS000131\\\",\\\"vehicleSize\\\":1}]}\"', 'http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask', '2024-07-31 09:56:10', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202407310956122221722390972222', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"02-01-02\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202407310924406271722389080627\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000131\\\",\\\"vehicleSize\\\":1}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"请求的任务数据存在异常\\\",\\\"returnData\\\":[{\\\"taskId\\\":\\\"202407310924406271722389080627\\\",\\\"taskType\\\":1,\\\"priority\\\":1,\\\"destination\\\":\\\"02-01-02\\\",\\\"vehicleNo\\\":\\\"ASRS000131\\\",\\\"vehicleSize\\\":1}]}\"', 'http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask', '2024-07-31 09:56:12', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202407310956142211722390974221', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"02-01-02\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202407310924406271722389080627\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000131\\\",\\\"vehicleSize\\\":1}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"请求的任务数据存在异常\\\",\\\"returnData\\\":[{\\\"taskId\\\":\\\"202407310924406271722389080627\\\",\\\"taskType\\\":1,\\\"priority\\\":1,\\\"destination\\\":\\\"02-01-02\\\",\\\"vehicleNo\\\":\\\"ASRS000131\\\",\\\"vehicleSize\\\":1}]}\"', 'http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask', '2024-07-31 09:56:14', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202407310956162111722390976211', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"02-01-02\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202407310924406271722389080627\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000131\\\",\\\"vehicleSize\\\":1}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"请求的任务数据存在异常\\\",\\\"returnData\\\":[{\\\"taskId\\\":\\\"202407310924406271722389080627\\\",\\\"taskType\\\":1,\\\"priority\\\":1,\\\"destination\\\":\\\"02-01-02\\\",\\\"vehicleNo\\\":\\\"ASRS000131\\\",\\\"vehicleSize\\\":1}]}\"', 'http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask', '2024-07-31 09:56:16', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202407310956182211722390978221', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"02-01-02\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202407310924406271722389080627\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000131\\\",\\\"vehicleSize\\\":1}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"请求的任务数据存在异常\\\",\\\"returnData\\\":[{\\\"taskId\\\":\\\"202407310924406271722389080627\\\",\\\"taskType\\\":1,\\\"priority\\\":1,\\\"destination\\\":\\\"02-01-02\\\",\\\"vehicleNo\\\":\\\"ASRS000131\\\",\\\"vehicleSize\\\":1}]}\"', 'http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask', '2024-07-31 09:56:18', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202407310956202211722390980221', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"02-01-02\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202407310924406271722389080627\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000131\\\",\\\"vehicleSize\\\":1}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"请求的任务数据存在异常\\\",\\\"returnData\\\":[{\\\"taskId\\\":\\\"202407310924406271722389080627\\\",\\\"taskType\\\":1,\\\"priority\\\":1,\\\"destination\\\":\\\"02-01-02\\\",\\\"vehicleNo\\\":\\\"ASRS000131\\\",\\\"vehicleSize\\\":1}]}\"', 'http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask', '2024-07-31 09:56:20', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202407310956222211722390982221', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"02-01-02\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202407310924406271722389080627\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000131\\\",\\\"vehicleSize\\\":1}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"请求的任务数据存在异常\\\",\\\"returnData\\\":[{\\\"taskId\\\":\\\"202407310924406271722389080627\\\",\\\"taskType\\\":1,\\\"priority\\\":1,\\\"destination\\\":\\\"02-01-02\\\",\\\"vehicleNo\\\":\\\"ASRS000131\\\",\\\"vehicleSize\\\":1}]}\"', 'http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask', '2024-07-31 09:56:22', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202407310956242211722390984221', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"02-01-02\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202407310924406271722389080627\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000131\\\",\\\"vehicleSize\\\":1}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"请求的任务数据存在异常\\\",\\\"returnData\\\":[{\\\"taskId\\\":\\\"202407310924406271722389080627\\\",\\\"taskType\\\":1,\\\"priority\\\":1,\\\"destination\\\":\\\"02-01-02\\\",\\\"vehicleNo\\\":\\\"ASRS000131\\\",\\\"vehicleSize\\\":1}]}\"', 'http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask', '2024-07-31 09:56:24', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202407310956262211722390986221', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"02-01-02\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202407310924406271722389080627\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000131\\\",\\\"vehicleSize\\\":1}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"请求的任务数据存在异常\\\",\\\"returnData\\\":[{\\\"taskId\\\":\\\"202407310924406271722389080627\\\",\\\"taskType\\\":1,\\\"priority\\\":1,\\\"destination\\\":\\\"02-01-02\\\",\\\"vehicleNo\\\":\\\"ASRS000131\\\",\\\"vehicleSize\\\":1}]}\"', 'http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask', '2024-07-31 09:56:26', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202407310956282181722390988218', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"02-01-02\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202407310924406271722389080627\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000131\\\",\\\"vehicleSize\\\":1}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"请求的任务数据存在异常\\\",\\\"returnData\\\":[{\\\"taskId\\\":\\\"202407310924406271722389080627\\\",\\\"taskType\\\":1,\\\"priority\\\":1,\\\"destination\\\":\\\"02-01-02\\\",\\\"vehicleNo\\\":\\\"ASRS000131\\\",\\\"vehicleSize\\\":1}]}\"', 'http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask', '2024-07-31 09:56:28', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202407310956302401722390990240', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"02-01-02\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202407310924406271722389080627\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000131\\\",\\\"vehicleSize\\\":1}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"请求的任务数据存在异常\\\",\\\"returnData\\\":[{\\\"taskId\\\":\\\"202407310924406271722389080627\\\",\\\"taskType\\\":1,\\\"priority\\\":1,\\\"destination\\\":\\\"02-01-02\\\",\\\"vehicleNo\\\":\\\"ASRS000131\\\",\\\"vehicleSize\\\":1}]}\"', 'http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask', '2024-07-31 09:56:30', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202407310956322111722390992211', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"02-01-02\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202407310924406271722389080627\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000131\\\",\\\"vehicleSize\\\":1}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"请求的任务数据存在异常\\\",\\\"returnData\\\":[{\\\"taskId\\\":\\\"202407310924406271722389080627\\\",\\\"taskType\\\":1,\\\"priority\\\":1,\\\"destination\\\":\\\"02-01-02\\\",\\\"vehicleNo\\\":\\\"ASRS000131\\\",\\\"vehicleSize\\\":1}]}\"', 'http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask', '2024-07-31 09:56:32', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202407310956342041722390994204', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"02-01-02\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202407310924406271722389080627\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000131\\\",\\\"vehicleSize\\\":1}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"请求的任务数据存在异常\\\",\\\"returnData\\\":[{\\\"taskId\\\":\\\"202407310924406271722389080627\\\",\\\"taskType\\\":1,\\\"priority\\\":1,\\\"destination\\\":\\\"02-01-02\\\",\\\"vehicleNo\\\":\\\"ASRS000131\\\",\\\"vehicleSize\\\":1}]}\"', 'http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask', '2024-07-31 09:56:34', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202407310956362311722390996231', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"02-01-02\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202407310924406271722389080627\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000131\\\",\\\"vehicleSize\\\":1}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"请求的任务数据存在异常\\\",\\\"returnData\\\":[{\\\"taskId\\\":\\\"202407310924406271722389080627\\\",\\\"taskType\\\":1,\\\"priority\\\":1,\\\"destination\\\":\\\"02-01-02\\\",\\\"vehicleNo\\\":\\\"ASRS000131\\\",\\\"vehicleSize\\\":1}]}\"', 'http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask', '2024-07-31 09:56:36', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202407310956382201722390998220', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"02-01-02\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202407310924406271722389080627\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000131\\\",\\\"vehicleSize\\\":1}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"请求的任务数据存在异常\\\",\\\"returnData\\\":[{\\\"taskId\\\":\\\"202407310924406271722389080627\\\",\\\"taskType\\\":1,\\\"priority\\\":1,\\\"destination\\\":\\\"02-01-02\\\",\\\"vehicleNo\\\":\\\"ASRS000131\\\",\\\"vehicleSize\\\":1}]}\"', 'http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask', '2024-07-31 09:56:38', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202407310956402291722391000229', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"02-01-02\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202407310924406271722389080627\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000131\\\",\\\"vehicleSize\\\":1}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"请求的任务数据存在异常\\\",\\\"returnData\\\":[{\\\"taskId\\\":\\\"202407310924406271722389080627\\\",\\\"taskType\\\":1,\\\"priority\\\":1,\\\"destination\\\":\\\"02-01-02\\\",\\\"vehicleNo\\\":\\\"ASRS000131\\\",\\\"vehicleSize\\\":1}]}\"', 'http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask', '2024-07-31 09:56:40', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202407310956422301722391002230', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"02-01-02\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202407310924406271722389080627\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000131\\\",\\\"vehicleSize\\\":1}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"请求的任务数据存在异常\\\",\\\"returnData\\\":[{\\\"taskId\\\":\\\"202407310924406271722389080627\\\",\\\"taskType\\\":1,\\\"priority\\\":1,\\\"destination\\\":\\\"02-01-02\\\",\\\"vehicleNo\\\":\\\"ASRS000131\\\",\\\"vehicleSize\\\":1}]}\"', 'http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask', '2024-07-31 09:56:42', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202407310956442421722391004242', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"02-01-02\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202407310924406271722389080627\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000131\\\",\\\"vehicleSize\\\":1}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"请求的任务数据存在异常\\\",\\\"returnData\\\":[{\\\"taskId\\\":\\\"202407310924406271722389080627\\\",\\\"taskType\\\":1,\\\"priority\\\":1,\\\"destination\\\":\\\"02-01-02\\\",\\\"vehicleNo\\\":\\\"ASRS000131\\\",\\\"vehicleSize\\\":1}]}\"', 'http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask', '2024-07-31 09:56:44', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202407310956462401722391006240', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"02-01-02\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202407310924406271722389080627\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000131\\\",\\\"vehicleSize\\\":1}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"请求的任务数据存在异常\\\",\\\"returnData\\\":[{\\\"taskId\\\":\\\"202407310924406271722389080627\\\",\\\"taskType\\\":1,\\\"priority\\\":1,\\\"destination\\\":\\\"02-01-02\\\",\\\"vehicleNo\\\":\\\"ASRS000131\\\",\\\"vehicleSize\\\":1}]}\"', 'http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask', '2024-07-31 09:56:46', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202407310956482391722391008239', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"02-01-02\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202407310924406271722389080627\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000131\\\",\\\"vehicleSize\\\":1}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"请求的任务数据存在异常\\\",\\\"returnData\\\":[{\\\"taskId\\\":\\\"202407310924406271722389080627\\\",\\\"taskType\\\":1,\\\"priority\\\":1,\\\"destination\\\":\\\"02-01-02\\\",\\\"vehicleNo\\\":\\\"ASRS000131\\\",\\\"vehicleSize\\\":1}]}\"', 'http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask', '2024-07-31 09:56:48', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202407310956502391722391010239', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"02-01-02\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202407310924406271722389080627\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000131\\\",\\\"vehicleSize\\\":1}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"请求的任务数据存在异常\\\",\\\"returnData\\\":[{\\\"taskId\\\":\\\"202407310924406271722389080627\\\",\\\"taskType\\\":1,\\\"priority\\\":1,\\\"destination\\\":\\\"02-01-02\\\",\\\"vehicleNo\\\":\\\"ASRS000131\\\",\\\"vehicleSize\\\":1}]}\"', 'http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask', '2024-07-31 09:56:50', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202407310956522521722391012252', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"02-01-02\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202407310924406271722389080627\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000131\\\",\\\"vehicleSize\\\":1}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"请求的任务数据存在异常\\\",\\\"returnData\\\":[{\\\"taskId\\\":\\\"202407310924406271722389080627\\\",\\\"taskType\\\":1,\\\"priority\\\":1,\\\"destination\\\":\\\"02-01-02\\\",\\\"vehicleNo\\\":\\\"ASRS000131\\\",\\\"vehicleSize\\\":1}]}\"', 'http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask', '2024-07-31 09:56:52', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202407310956542301722391014230', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"02-01-02\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202407310924406271722389080627\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000131\\\",\\\"vehicleSize\\\":1}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"请求的任务数据存在异常\\\",\\\"returnData\\\":[{\\\"taskId\\\":\\\"202407310924406271722389080627\\\",\\\"taskType\\\":1,\\\"priority\\\":1,\\\"destination\\\":\\\"02-01-02\\\",\\\"vehicleNo\\\":\\\"ASRS000131\\\",\\\"vehicleSize\\\":1}]}\"', 'http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask', '2024-07-31 09:56:54', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202407310956562421722391016242', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"02-01-02\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202407310924406271722389080627\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000131\\\",\\\"vehicleSize\\\":1}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"请求的任务数据存在异常\\\",\\\"returnData\\\":[{\\\"taskId\\\":\\\"202407310924406271722389080627\\\",\\\"taskType\\\":1,\\\"priority\\\":1,\\\"destination\\\":\\\"02-01-02\\\",\\\"vehicleNo\\\":\\\"ASRS000131\\\",\\\"vehicleSize\\\":1}]}\"', 'http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask', '2024-07-31 09:56:56', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202407310956582291722391018229', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"02-01-02\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202407310924406271722389080627\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000131\\\",\\\"vehicleSize\\\":1}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"请求的任务数据存在异常\\\",\\\"returnData\\\":[{\\\"taskId\\\":\\\"202407310924406271722389080627\\\",\\\"taskType\\\":1,\\\"priority\\\":1,\\\"destination\\\":\\\"02-01-02\\\",\\\"vehicleNo\\\":\\\"ASRS000131\\\",\\\"vehicleSize\\\":1}]}\"', 'http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask', '2024-07-31 09:56:58', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202407310957002241722391020224', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"02-01-02\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202407310924406271722389080627\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000131\\\",\\\"vehicleSize\\\":1}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"请求的任务数据存在异常\\\",\\\"returnData\\\":[{\\\"taskId\\\":\\\"202407310924406271722389080627\\\",\\\"taskType\\\":1,\\\"priority\\\":1,\\\"destination\\\":\\\"02-01-02\\\",\\\"vehicleNo\\\":\\\"ASRS000131\\\",\\\"vehicleSize\\\":1}]}\"', 'http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask', '2024-07-31 09:57:00', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202407310957022481722391022248', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"02-01-02\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202407310924406271722389080627\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000131\\\",\\\"vehicleSize\\\":1}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"请求的任务数据存在异常\\\",\\\"returnData\\\":[{\\\"taskId\\\":\\\"202407310924406271722389080627\\\",\\\"taskType\\\":1,\\\"priority\\\":1,\\\"destination\\\":\\\"02-01-02\\\",\\\"vehicleNo\\\":\\\"ASRS000131\\\",\\\"vehicleSize\\\":1}]}\"', 'http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask', '2024-07-31 09:57:02', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202407310957042481722391024248', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"02-01-02\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202407310924406271722389080627\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000131\\\",\\\"vehicleSize\\\":1}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"请求的任务数据存在异常\\\",\\\"returnData\\\":[{\\\"taskId\\\":\\\"202407310924406271722389080627\\\",\\\"taskType\\\":1,\\\"priority\\\":1,\\\"destination\\\":\\\"02-01-02\\\",\\\"vehicleNo\\\":\\\"ASRS000131\\\",\\\"vehicleSize\\\":1}]}\"', 'http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask', '2024-07-31 09:57:04', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202407310957062381722391026238', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"02-01-02\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202407310924406271722389080627\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000131\\\",\\\"vehicleSize\\\":1}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"请求的任务数据存在异常\\\",\\\"returnData\\\":[{\\\"taskId\\\":\\\"202407310924406271722389080627\\\",\\\"taskType\\\":1,\\\"priority\\\":1,\\\"destination\\\":\\\"02-01-02\\\",\\\"vehicleNo\\\":\\\"ASRS000131\\\",\\\"vehicleSize\\\":1}]}\"', 'http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask', '2024-07-31 09:57:06', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202407310957082371722391028237', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"02-01-02\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202407310924406271722389080627\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000131\\\",\\\"vehicleSize\\\":1}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"请求的任务数据存在异常\\\",\\\"returnData\\\":[{\\\"taskId\\\":\\\"202407310924406271722389080627\\\",\\\"taskType\\\":1,\\\"priority\\\":1,\\\"destination\\\":\\\"02-01-02\\\",\\\"vehicleNo\\\":\\\"ASRS000131\\\",\\\"vehicleSize\\\":1}]}\"', 'http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask', '2024-07-31 09:57:08', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202407310957102381722391030238', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"02-01-02\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202407310924406271722389080627\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000131\\\",\\\"vehicleSize\\\":1}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"请求的任务数据存在异常\\\",\\\"returnData\\\":[{\\\"taskId\\\":\\\"202407310924406271722389080627\\\",\\\"taskType\\\":1,\\\"priority\\\":1,\\\"destination\\\":\\\"02-01-02\\\",\\\"vehicleNo\\\":\\\"ASRS000131\\\",\\\"vehicleSize\\\":1}]}\"', 'http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask', '2024-07-31 09:57:10', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202407310957122571722391032257', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"02-01-02\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202407310924406271722389080627\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000131\\\",\\\"vehicleSize\\\":1}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"请求的任务数据存在异常\\\",\\\"returnData\\\":[{\\\"taskId\\\":\\\"202407310924406271722389080627\\\",\\\"taskType\\\":1,\\\"priority\\\":1,\\\"destination\\\":\\\"02-01-02\\\",\\\"vehicleNo\\\":\\\"ASRS000131\\\",\\\"vehicleSize\\\":1}]}\"', 'http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask', '2024-07-31 09:57:12', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202407310957143771722391034377', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"02-01-02\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202407310924406271722389080627\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000131\\\",\\\"vehicleSize\\\":1}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"请求的任务数据存在异常\\\",\\\"returnData\\\":[{\\\"taskId\\\":\\\"202407310924406271722389080627\\\",\\\"taskType\\\":1,\\\"priority\\\":1,\\\"destination\\\":\\\"02-01-02\\\",\\\"vehicleNo\\\":\\\"ASRS000131\\\",\\\"vehicleSize\\\":1}]}\"', 'http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask', '2024-07-31 09:57:14', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202407310957162471722391036247', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"02-01-02\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202407310924406271722389080627\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000131\\\",\\\"vehicleSize\\\":1}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"请求的任务数据存在异常\\\",\\\"returnData\\\":[{\\\"taskId\\\":\\\"202407310924406271722389080627\\\",\\\"taskType\\\":1,\\\"priority\\\":1,\\\"destination\\\":\\\"02-01-02\\\",\\\"vehicleNo\\\":\\\"ASRS000131\\\",\\\"vehicleSize\\\":1}]}\"', 'http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask', '2024-07-31 09:57:16', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202407310957182461722391038246', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"02-01-02\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202407310924406271722389080627\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000131\\\",\\\"vehicleSize\\\":1}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"请求的任务数据存在异常\\\",\\\"returnData\\\":[{\\\"taskId\\\":\\\"202407310924406271722389080627\\\",\\\"taskType\\\":1,\\\"priority\\\":1,\\\"destination\\\":\\\"02-01-02\\\",\\\"vehicleNo\\\":\\\"ASRS000131\\\",\\\"vehicleSize\\\":1}]}\"', 'http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask', '2024-07-31 09:57:18', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202407310957202311722391040231', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"02-01-02\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202407310924406271722389080627\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000131\\\",\\\"vehicleSize\\\":1}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"请求的任务数据存在异常\\\",\\\"returnData\\\":[{\\\"taskId\\\":\\\"202407310924406271722389080627\\\",\\\"taskType\\\":1,\\\"priority\\\":1,\\\"destination\\\":\\\"02-01-02\\\",\\\"vehicleNo\\\":\\\"ASRS000131\\\",\\\"vehicleSize\\\":1}]}\"', 'http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask', '2024-07-31 09:57:20', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202407310957222561722391042256', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"02-01-02\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202407310924406271722389080627\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000131\\\",\\\"vehicleSize\\\":1}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"请求的任务数据存在异常\\\",\\\"returnData\\\":[{\\\"taskId\\\":\\\"202407310924406271722389080627\\\",\\\"taskType\\\":1,\\\"priority\\\":1,\\\"destination\\\":\\\"02-01-02\\\",\\\"vehicleNo\\\":\\\"ASRS000131\\\",\\\"vehicleSize\\\":1}]}\"', 'http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask', '2024-07-31 09:57:22', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202407310957242861722391044286', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"02-01-02\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202407310924406271722389080627\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000131\\\",\\\"vehicleSize\\\":1}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"请求的任务数据存在异常\\\",\\\"returnData\\\":[{\\\"taskId\\\":\\\"202407310924406271722389080627\\\",\\\"taskType\\\":1,\\\"priority\\\":1,\\\"destination\\\":\\\"02-01-02\\\",\\\"vehicleNo\\\":\\\"ASRS000131\\\",\\\"vehicleSize\\\":1}]}\"', 'http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask', '2024-07-31 09:57:24', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202407310957262571722391046257', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"02-01-02\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202407310924406271722389080627\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000131\\\",\\\"vehicleSize\\\":1}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"请求的任务数据存在异常\\\",\\\"returnData\\\":[{\\\"taskId\\\":\\\"202407310924406271722389080627\\\",\\\"taskType\\\":1,\\\"priority\\\":1,\\\"destination\\\":\\\"02-01-02\\\",\\\"vehicleNo\\\":\\\"ASRS000131\\\",\\\"vehicleSize\\\":1}]}\"', 'http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask', '2024-07-31 09:57:26', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202407310957282661722391048266', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"02-01-02\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202407310924406271722389080627\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000131\\\",\\\"vehicleSize\\\":1}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"请求的任务数据存在异常\\\",\\\"returnData\\\":[{\\\"taskId\\\":\\\"202407310924406271722389080627\\\",\\\"taskType\\\":1,\\\"priority\\\":1,\\\"destination\\\":\\\"02-01-02\\\",\\\"vehicleNo\\\":\\\"ASRS000131\\\",\\\"vehicleSize\\\":1}]}\"', 'http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask', '2024-07-31 09:57:28', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202407310957302861722391050286', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"02-01-02\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202407310924406271722389080627\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000131\\\",\\\"vehicleSize\\\":1}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"请求的任务数据存在异常\\\",\\\"returnData\\\":[{\\\"taskId\\\":\\\"202407310924406271722389080627\\\",\\\"taskType\\\":1,\\\"priority\\\":1,\\\"destination\\\":\\\"02-01-02\\\",\\\"vehicleNo\\\":\\\"ASRS000131\\\",\\\"vehicleSize\\\":1}]}\"', 'http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask', '2024-07-31 09:57:30', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202407310957322561722391052256', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"02-01-02\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202407310924406271722389080627\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000131\\\",\\\"vehicleSize\\\":1}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"请求的任务数据存在异常\\\",\\\"returnData\\\":[{\\\"taskId\\\":\\\"202407310924406271722389080627\\\",\\\"taskType\\\":1,\\\"priority\\\":1,\\\"destination\\\":\\\"02-01-02\\\",\\\"vehicleNo\\\":\\\"ASRS000131\\\",\\\"vehicleSize\\\":1}]}\"', 'http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask', '2024-07-31 09:57:32', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202407310957342661722391054266', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"02-01-02\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202407310924406271722389080627\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000131\\\",\\\"vehicleSize\\\":1}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"请求的任务数据存在异常\\\",\\\"returnData\\\":[{\\\"taskId\\\":\\\"202407310924406271722389080627\\\",\\\"taskType\\\":1,\\\"priority\\\":1,\\\"destination\\\":\\\"02-01-02\\\",\\\"vehicleNo\\\":\\\"ASRS000131\\\",\\\"vehicleSize\\\":1}]}\"', 'http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask', '2024-07-31 09:57:34', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202407310957362551722391056255', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"02-01-02\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202407310924406271722389080627\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000131\\\",\\\"vehicleSize\\\":1}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"请求的任务数据存在异常\\\",\\\"returnData\\\":[{\\\"taskId\\\":\\\"202407310924406271722389080627\\\",\\\"taskType\\\":1,\\\"priority\\\":1,\\\"destination\\\":\\\"02-01-02\\\",\\\"vehicleNo\\\":\\\"ASRS000131\\\",\\\"vehicleSize\\\":1}]}\"', 'http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask', '2024-07-31 09:57:36', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202407310957382661722391058266', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"02-01-02\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202407310924406271722389080627\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000131\\\",\\\"vehicleSize\\\":1}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"请求的任务数据存在异常\\\",\\\"returnData\\\":[{\\\"taskId\\\":\\\"202407310924406271722389080627\\\",\\\"taskType\\\":1,\\\"priority\\\":1,\\\"destination\\\":\\\"02-01-02\\\",\\\"vehicleNo\\\":\\\"ASRS000131\\\",\\\"vehicleSize\\\":1}]}\"', 'http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask', '2024-07-31 09:57:38', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202407310957402661722391060266', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"02-01-02\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202407310924406271722389080627\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000131\\\",\\\"vehicleSize\\\":1}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"请求的任务数据存在异常\\\",\\\"returnData\\\":[{\\\"taskId\\\":\\\"202407310924406271722389080627\\\",\\\"taskType\\\":1,\\\"priority\\\":1,\\\"destination\\\":\\\"02-01-02\\\",\\\"vehicleNo\\\":\\\"ASRS000131\\\",\\\"vehicleSize\\\":1}]}\"', 'http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask', '2024-07-31 09:57:40', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202407310957422441722391062244', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"02-01-02\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202407310924406271722389080627\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000131\\\",\\\"vehicleSize\\\":1}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"请求的任务数据存在异常\\\",\\\"returnData\\\":[{\\\"taskId\\\":\\\"202407310924406271722389080627\\\",\\\"taskType\\\":1,\\\"priority\\\":1,\\\"destination\\\":\\\"02-01-02\\\",\\\"vehicleNo\\\":\\\"ASRS000131\\\",\\\"vehicleSize\\\":1}]}\"', 'http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask', '2024-07-31 09:57:42', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202407310957442651722391064265', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"02-01-02\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202407310924406271722389080627\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000131\\\",\\\"vehicleSize\\\":1}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"请求的任务数据存在异常\\\",\\\"returnData\\\":[{\\\"taskId\\\":\\\"202407310924406271722389080627\\\",\\\"taskType\\\":1,\\\"priority\\\":1,\\\"destination\\\":\\\"02-01-02\\\",\\\"vehicleNo\\\":\\\"ASRS000131\\\",\\\"vehicleSize\\\":1}]}\"', 'http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask', '2024-07-31 09:57:44', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202407310957462851722391066285', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"02-01-02\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202407310924406271722389080627\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000131\\\",\\\"vehicleSize\\\":1}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"请求的任务数据存在异常\\\",\\\"returnData\\\":[{\\\"taskId\\\":\\\"202407310924406271722389080627\\\",\\\"taskType\\\":1,\\\"priority\\\":1,\\\"destination\\\":\\\"02-01-02\\\",\\\"vehicleNo\\\":\\\"ASRS000131\\\",\\\"vehicleSize\\\":1}]}\"', 'http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask', '2024-07-31 09:57:46', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202407310957482751722391068275', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"02-01-02\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202407310924406271722389080627\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000131\\\",\\\"vehicleSize\\\":1}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"请求的任务数据存在异常\\\",\\\"returnData\\\":[{\\\"taskId\\\":\\\"202407310924406271722389080627\\\",\\\"taskType\\\":1,\\\"priority\\\":1,\\\"destination\\\":\\\"02-01-02\\\",\\\"vehicleNo\\\":\\\"ASRS000131\\\",\\\"vehicleSize\\\":1}]}\"', 'http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask', '2024-07-31 09:57:48', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202407310957502861722391070286', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"02-01-02\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202407310924406271722389080627\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000131\\\",\\\"vehicleSize\\\":1}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"请求的任务数据存在异常\\\",\\\"returnData\\\":[{\\\"taskId\\\":\\\"202407310924406271722389080627\\\",\\\"taskType\\\":1,\\\"priority\\\":1,\\\"destination\\\":\\\"02-01-02\\\",\\\"vehicleNo\\\":\\\"ASRS000131\\\",\\\"vehicleSize\\\":1}]}\"', 'http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask', '2024-07-31 09:57:50', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202407310957522851722391072285', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"02-01-02\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202407310924406271722389080627\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000131\\\",\\\"vehicleSize\\\":1}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"请求的任务数据存在异常\\\",\\\"returnData\\\":[{\\\"taskId\\\":\\\"202407310924406271722389080627\\\",\\\"taskType\\\":1,\\\"priority\\\":1,\\\"destination\\\":\\\"02-01-02\\\",\\\"vehicleNo\\\":\\\"ASRS000131\\\",\\\"vehicleSize\\\":1}]}\"', 'http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask', '2024-07-31 09:57:52', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202407310957542851722391074285', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"02-01-02\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202407310924406271722389080627\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000131\\\",\\\"vehicleSize\\\":1}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"请求的任务数据存在异常\\\",\\\"returnData\\\":[{\\\"taskId\\\":\\\"202407310924406271722389080627\\\",\\\"taskType\\\":1,\\\"priority\\\":1,\\\"destination\\\":\\\"02-01-02\\\",\\\"vehicleNo\\\":\\\"ASRS000131\\\",\\\"vehicleSize\\\":1}]}\"', 'http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask', '2024-07-31 09:57:54', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202407310957563051722391076305', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"02-01-02\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202407310924406271722389080627\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000131\\\",\\\"vehicleSize\\\":1}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"请求的任务数据存在异常\\\",\\\"returnData\\\":[{\\\"taskId\\\":\\\"202407310924406271722389080627\\\",\\\"taskType\\\":1,\\\"priority\\\":1,\\\"destination\\\":\\\"02-01-02\\\",\\\"vehicleNo\\\":\\\"ASRS000131\\\",\\\"vehicleSize\\\":1}]}\"', 'http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask', '2024-07-31 09:57:56', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202407310957583241722391078324', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"02-01-02\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202407310924406271722389080627\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000131\\\",\\\"vehicleSize\\\":1}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"请求的任务数据存在异常\\\",\\\"returnData\\\":[{\\\"taskId\\\":\\\"202407310924406271722389080627\\\",\\\"taskType\\\":1,\\\"priority\\\":1,\\\"destination\\\":\\\"02-01-02\\\",\\\"vehicleNo\\\":\\\"ASRS000131\\\",\\\"vehicleSize\\\":1}]}\"', 'http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask', '2024-07-31 09:57:58', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202407310958003451722391080345', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"02-01-02\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202407310924406271722389080627\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000131\\\",\\\"vehicleSize\\\":1}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"请求的任务数据存在异常\\\",\\\"returnData\\\":[{\\\"taskId\\\":\\\"202407310924406271722389080627\\\",\\\"taskType\\\":1,\\\"priority\\\":1,\\\"destination\\\":\\\"02-01-02\\\",\\\"vehicleNo\\\":\\\"ASRS000131\\\",\\\"vehicleSize\\\":1}]}\"', 'http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask', '2024-07-31 09:58:00', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202407310958023441722391082344', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"02-01-02\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202407310924406271722389080627\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000131\\\",\\\"vehicleSize\\\":1}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"请求的任务数据存在异常\\\",\\\"returnData\\\":[{\\\"taskId\\\":\\\"202407310924406271722389080627\\\",\\\"taskType\\\":1,\\\"priority\\\":1,\\\"destination\\\":\\\"02-01-02\\\",\\\"vehicleNo\\\":\\\"ASRS000131\\\",\\\"vehicleSize\\\":1}]}\"', 'http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask', '2024-07-31 09:58:02', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202407310958043541722391084354', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"02-01-02\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202407310924406271722389080627\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000131\\\",\\\"vehicleSize\\\":1}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"请求的任务数据存在异常\\\",\\\"returnData\\\":[{\\\"taskId\\\":\\\"202407310924406271722389080627\\\",\\\"taskType\\\":1,\\\"priority\\\":1,\\\"destination\\\":\\\"02-01-02\\\",\\\"vehicleNo\\\":\\\"ASRS000131\\\",\\\"vehicleSize\\\":1}]}\"', 'http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask', '2024-07-31 09:58:04', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202407310958063641722391086364', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"02-01-02\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202407310924406271722389080627\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000131\\\",\\\"vehicleSize\\\":1}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"请求的任务数据存在异常\\\",\\\"returnData\\\":[{\\\"taskId\\\":\\\"202407310924406271722389080627\\\",\\\"taskType\\\":1,\\\"priority\\\":1,\\\"destination\\\":\\\"02-01-02\\\",\\\"vehicleNo\\\":\\\"ASRS000131\\\",\\\"vehicleSize\\\":1}]}\"', 'http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask', '2024-07-31 09:58:06', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202407310958083741722391088374', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"02-01-02\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202407310924406271722389080627\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000131\\\",\\\"vehicleSize\\\":1}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"请求的任务数据存在异常\\\",\\\"returnData\\\":[{\\\"taskId\\\":\\\"202407310924406271722389080627\\\",\\\"taskType\\\":1,\\\"priority\\\":1,\\\"destination\\\":\\\"02-01-02\\\",\\\"vehicleNo\\\":\\\"ASRS000131\\\",\\\"vehicleSize\\\":1}]}\"', 'http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask', '2024-07-31 09:58:08', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202407310958103631722391090363', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"02-01-02\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202407310924406271722389080627\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000131\\\",\\\"vehicleSize\\\":1}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"请求的任务数据存在异常\\\",\\\"returnData\\\":[{\\\"taskId\\\":\\\"202407310924406271722389080627\\\",\\\"taskType\\\":1,\\\"priority\\\":1,\\\"destination\\\":\\\"02-01-02\\\",\\\"vehicleNo\\\":\\\"ASRS000131\\\",\\\"vehicleSize\\\":1}]}\"', 'http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask', '2024-07-31 09:58:10', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202407310958123731722391092373', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"02-01-02\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202407310924406271722389080627\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000131\\\",\\\"vehicleSize\\\":1}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"请求的任务数据存在异常\\\",\\\"returnData\\\":[{\\\"taskId\\\":\\\"202407310924406271722389080627\\\",\\\"taskType\\\":1,\\\"priority\\\":1,\\\"destination\\\":\\\"02-01-02\\\",\\\"vehicleNo\\\":\\\"ASRS000131\\\",\\\"vehicleSize\\\":1}]}\"', 'http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask', '2024-07-31 09:58:12', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202407310958143831722391094383', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"02-01-02\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202407310924406271722389080627\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000131\\\",\\\"vehicleSize\\\":1}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"请求的任务数据存在异常\\\",\\\"returnData\\\":[{\\\"taskId\\\":\\\"202407310924406271722389080627\\\",\\\"taskType\\\":1,\\\"priority\\\":1,\\\"destination\\\":\\\"02-01-02\\\",\\\"vehicleNo\\\":\\\"ASRS000131\\\",\\\"vehicleSize\\\":1}]}\"', 'http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask', '2024-07-31 09:58:14', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202407310958163951722391096395', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"02-01-02\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202407310924406271722389080627\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000131\\\",\\\"vehicleSize\\\":1}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"请求的任务数据存在异常\\\",\\\"returnData\\\":[{\\\"taskId\\\":\\\"202407310924406271722389080627\\\",\\\"taskType\\\":1,\\\"priority\\\":1,\\\"destination\\\":\\\"02-01-02\\\",\\\"vehicleNo\\\":\\\"ASRS000131\\\",\\\"vehicleSize\\\":1}]}\"', 'http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask', '2024-07-31 09:58:16', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202407310958233371722391103337', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"02-01-02\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202407310924406271722389080627\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000131\\\",\\\"vehicleSize\\\":1}]\"', '\"null\"', 'http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask', '2024-07-31 09:58:23', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202407310958253351722391105335', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"02-01-02\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202407310924406271722389080627\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000131\\\",\\\"vehicleSize\\\":1}]\"', '\"null\"', 'http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask', '2024-07-31 09:58:25', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202407310958303841722391110384', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"02-01-02\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202407310924406271722389080627\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000131\\\",\\\"vehicleSize\\\":1}]\"', '\"null\"', 'http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask', '2024-07-31 09:58:30', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202407310958303851722391110385', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"02-01-02\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202407310924406271722389080627\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000131\\\",\\\"vehicleSize\\\":1}]\"', '\"null\"', 'http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask', '2024-07-31 09:58:30', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202407310958314151722391111415', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"02-01-02\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202407310924406271722389080627\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000131\\\",\\\"vehicleSize\\\":1}]\"', '\"null\"', 'http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask', '2024-07-31 09:58:31', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202407310958334141722391113414', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"02-01-02\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202407310924406271722389080627\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000131\\\",\\\"vehicleSize\\\":1}]\"', '\"null\"', 'http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask', '2024-07-31 09:58:33', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202407310958354281722391115428', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"02-01-02\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202407310924406271722389080627\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000131\\\",\\\"vehicleSize\\\":1}]\"', '\"null\"', 'http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask', '2024-07-31 09:58:35', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202407310958374341722391117434', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"02-01-02\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202407310924406271722389080627\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000131\\\",\\\"vehicleSize\\\":1}]\"', '\"null\"', 'http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask', '2024-07-31 09:58:37', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202407310958394621722391119462', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"02-01-02\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202407310924406271722389080627\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000131\\\",\\\"vehicleSize\\\":1}]\"', '\"null\"', 'http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask', '2024-07-31 09:58:39', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202407310958414791722391121479', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"02-01-02\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202407310924406271722389080627\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000131\\\",\\\"vehicleSize\\\":1}]\"', '\"null\"', 'http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask', '2024-07-31 09:58:41', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202407310958434771722391123477', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"02-01-02\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202407310924406271722389080627\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000131\\\",\\\"vehicleSize\\\":1}]\"', '\"null\"', 'http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask', '2024-07-31 09:58:43', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202407310958454951722391125495', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"02-01-02\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202407310924406271722389080627\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000131\\\",\\\"vehicleSize\\\":1}]\"', '\"null\"', 'http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask', '2024-07-31 09:58:45', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202407310958475021722391127502', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"02-01-02\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202407310924406271722389080627\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000131\\\",\\\"vehicleSize\\\":1}]\"', '\"null\"', 'http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask', '2024-07-31 09:58:48', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202407310958495081722391129508', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"02-01-02\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202407310924406271722389080627\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000131\\\",\\\"vehicleSize\\\":1}]\"', '\"null\"', 'http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask', '2024-07-31 09:58:50', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202407310958515181722391131518', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"02-01-02\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202407310924406271722389080627\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000131\\\",\\\"vehicleSize\\\":1}]\"', '\"null\"', 'http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask', '2024-07-31 09:58:52', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202407310958535201722391133520', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"02-01-02\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202407310924406271722389080627\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000131\\\",\\\"vehicleSize\\\":1}]\"', '\"null\"', 'http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask', '2024-07-31 09:58:54', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202407310958555421722391135542', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"02-01-02\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202407310924406271722389080627\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000131\\\",\\\"vehicleSize\\\":1}]\"', '\"null\"', 'http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask', '2024-07-31 09:58:56', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202407310958555571722391135557', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"02-01-02\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202407310924406271722389080627\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000131\\\",\\\"vehicleSize\\\":1}]\"', '\"null\"', 'http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask', '2024-07-31 09:58:56', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202407310958555721722391135572', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"02-01-02\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202407310924406271722389080627\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000131\\\",\\\"vehicleSize\\\":1}]\"', '\"null\"', 'http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask', '2024-07-31 09:58:56', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202407310959015161722391141516', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"02-01-02\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202407310924406271722389080627\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000131\\\",\\\"vehicleSize\\\":1}]\"', '\"null\"', 'http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask', '2024-07-31 09:59:02', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202407310959035241722391143524', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"02-01-02\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202407310924406271722389080627\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000131\\\",\\\"vehicleSize\\\":1}]\"', '\"null\"', 'http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask', '2024-07-31 09:59:04', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202407310959055411722391145541', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"02-01-02\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202407310924406271722389080627\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000131\\\",\\\"vehicleSize\\\":1}]\"', '\"null\"', 'http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask', '2024-07-31 09:59:06', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202407310959075371722391147537', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"02-01-02\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202407310924406271722389080627\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000131\\\",\\\"vehicleSize\\\":1}]\"', '\"null\"', 'http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask', '2024-07-31 09:59:08', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202407310959115911722391151591', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"02-01-02\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202407310924406271722389080627\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000131\\\",\\\"vehicleSize\\\":1}]\"', '\"null\"', 'http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask', '2024-07-31 09:59:12', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202407310959125911722391152591', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"02-01-02\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202407310924406271722389080627\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000131\\\",\\\"vehicleSize\\\":1}]\"', '\"null\"', 'http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask', '2024-07-31 09:59:13', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202407310959136061722391153606', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"02-01-02\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202407310924406271722389080627\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000131\\\",\\\"vehicleSize\\\":1}]\"', '\"null\"', 'http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask', '2024-07-31 09:59:14', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202407310959155891722391155589', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"02-01-02\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202407310924406271722389080627\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000131\\\",\\\"vehicleSize\\\":1}]\"', '\"null\"', 'http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask', '2024-07-31 09:59:16', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202407310959175991722391157599', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"02-01-02\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202407310924406271722389080627\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000131\\\",\\\"vehicleSize\\\":1}]\"', '\"null\"', 'http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask', '2024-07-31 09:59:18', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202407310959182831722391158283', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"02-01-02\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202407310924406271722389080627\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000131\\\",\\\"vehicleSize\\\":1}]\"', '\"null\"', 'http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask', '2024-07-31 09:59:18', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202407310959182841722391158284', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"02-01-02\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202407310924406271722389080627\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000131\\\",\\\"vehicleSize\\\":1}]\"', '\"null\"', 'http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask', '2024-07-31 09:59:18', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202407310959227781722391162778', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"02-01-02\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202407310924406271722389080627\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000131\\\",\\\"vehicleSize\\\":1}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"请求的任务数据存在异常\\\",\\\"returnData\\\":[{\\\"taskId\\\":\\\"202407310924406271722389080627\\\",\\\"taskType\\\":1,\\\"priority\\\":1,\\\"destination\\\":\\\"02-01-02\\\",\\\"vehicleNo\\\":\\\"ASRS000131\\\",\\\"vehicleSize\\\":1}]}\"', 'http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask', '2024-07-31 09:59:23', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202407310959235711722391163571', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"02-01-02\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202407310924406271722389080627\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000131\\\",\\\"vehicleSize\\\":1}]\"', '\"null\"', 'http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask', '2024-07-31 09:59:24', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202407310959236591722391163659', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"02-01-02\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202407310924406271722389080627\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000131\\\",\\\"vehicleSize\\\":1}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"请求的任务数据存在异常\\\",\\\"returnData\\\":[{\\\"taskId\\\":\\\"202407310924406271722389080627\\\",\\\"taskType\\\":1,\\\"priority\\\":1,\\\"destination\\\":\\\"02-01-02\\\",\\\"vehicleNo\\\":\\\"ASRS000131\\\",\\\"vehicleSize\\\":1}]}\"', 'http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask', '2024-07-31 09:59:24', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202407311000182651722391218265', '更新库位信息', 'genLocations', '[{\"wCol\": 64, \"wRow\": 9, \"isAsc\": true, \"areaId\": null, \"isLock\": null, \"pageNo\": 1, \"sortBy\": \"\", \"wDepth\": null, \"wLayer\": 22, \"pageSize\": 10, \"vehicleId\": \"\", \"locationId\": \"\", \"equipmentId\": null, \"locationType\": null, \"locationStatus\": null}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"生成库位成功。\\\"}\"', '127.0.0.1', '2024-07-31 10:00:18', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202407311000452181722391245218', '入库请求', 'requestIn', '[{\"userName\": \"管理员\", \"goodsList\": [], \"vehicleId\": \"ASRS000131\", \"originPoint\": \"\", \"totalWeight\": null}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"接收入库请求成功!\\\"}\"', '127.0.0.1', '2024-07-31 10:00:45', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202407311000553571722391255357', 'Wcs请求载具入库', 'wcsVehicleIn', '[{\"point\": \"R1\", \"remark\": \"\", \"vehicleNo\": \"ASRS000131\", \"codeMessage\": \"ASRS000131\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理载具入库请求成功!\\\"}\"', '192.168.8.62', '2024-07-31 10:00:55', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202407311000555911722391255591', 'Wcs请求载具入库', 'wcsVehicleIn', '[{\"point\": \"R1\", \"remark\": \"\", \"vehicleNo\": \"ASRS000131\", \"codeMessage\": \"ASRS000131\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理载具入库请求成功!\\\"}\"', '192.168.8.62', '2024-07-31 10:00:56', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202407311000566591722391256659', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"02-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202407311000452131722391245213\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000131\\\",\\\"vehicleSize\\\":1}]\"', '\"{\\\"code\\\":0,\\\"message\\\":\\\"任务创建成功,任务号:202407311000452131722391245213\\\",\\\"returnData\\\":[]}\"', 'http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask', '2024-07-31 10:00:57', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202407311001108181722391270818', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202407311000452131722391245213\", \"message\": \"开始执行\", \"vehicleId\": \"\", \"taskStatus\": 2, \"destination\": \"02-01-02-01\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"任务反馈请求验证失败:缺少必须参数:任务号、载具号、任务状态。\\\"}\"', '192.168.8.62', '2024-07-31 10:01:11', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202407311001108931722391270893', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202407311000452131722391245213\", \"message\": \"开始执行\", \"vehicleId\": \"\", \"taskStatus\": 2, \"destination\": \"02-01-02-01\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"任务反馈请求验证失败:缺少必须参数:任务号、载具号、任务状态。\\\"}\"', '192.168.8.62', '2024-07-31 10:01:11', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202407311001109831722391270983', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202407311000452131722391245213\", \"message\": \"开始执行\", \"vehicleId\": \"\", \"taskStatus\": 2, \"destination\": \"02-01-02-01\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"任务反馈请求验证失败:缺少必须参数:任务号、载具号、任务状态。\\\"}\"', '192.168.8.62', '2024-07-31 10:01:11', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202407311001110731722391271073', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202407311000452131722391245213\", \"message\": \"开始执行\", \"vehicleId\": \"\", \"taskStatus\": 2, \"destination\": \"02-01-02-01\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"任务反馈请求验证失败:缺少必须参数:任务号、载具号、任务状态。\\\"}\"', '192.168.8.62', '2024-07-31 10:01:11', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202407311001111631722391271163', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202407311000452131722391245213\", \"message\": \"开始执行\", \"vehicleId\": \"\", \"taskStatus\": 2, \"destination\": \"02-01-02-01\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"任务反馈请求验证失败:缺少必须参数:任务号、载具号、任务状态。\\\"}\"', '192.168.8.62', '2024-07-31 10:01:11', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901123191722474072319', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:12', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901123211722474072321', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:12', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901123241722474072324', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:12', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901123611722474072361', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:12', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901123801722474072380', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:12', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901124261722474072426', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:12', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901124411722474072441', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:12', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901124841722474072484', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:12', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901125001722474072500', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:13', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901211211722474081121', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:21', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901212511722474081251', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:21', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901218001722474081800', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:22', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901218211722474081821', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:22', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901218591722474081859', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:22', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901218801722474081880', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:22', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901219421722474081942', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:22', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901219481722474081948', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:22', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901219601722474081960', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:22', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901220771722474082077', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:22', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901221021722474082102', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:22', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901221321722474082132', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:22', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901221921722474082192', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:22', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901222011722474082201', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:22', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901222041722474082204', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:22', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901222571722474082257', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:22', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901222691722474082269', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:22', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901222931722474082293', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:22', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901223751722474082375', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:22', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901223921722474082392', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:22', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901224391722474082439', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:22', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901224501722474082450', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:22', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901224961722474082496', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:22', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901225111722474082511', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:23', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901225571722474082557', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:23', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901225951722474082595', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:23', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901225971722474082597', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:23', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901226721722474082672', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:23', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901227301722474082730', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:23', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901227311722474082731', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:23', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901227501722474082750', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:23', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901228151722474082815', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:23', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901228161722474082816', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:23', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901228911722474082891', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:23', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901228931722474082893', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:23', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901229091722474082909', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:23', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901229921722474082992', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:23', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901230101722474083010', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:23', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901230711722474083071', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:23', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901230721722474083072', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:23', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901230901722474083090', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:23', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901231331722474083133', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:23', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901231501722474083150', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:23', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901231931722474083193', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:23', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901232091722474083209', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:23', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901233311722474083331', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:23', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901233321722474083332', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:23', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901233491722474083349', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:23', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901234291722474083429', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:23', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901234391722474083439', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:23', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901234411722474083441', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:23', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901234931722474083493', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:23', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901235081722474083508', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:24', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901235701722474083570', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:24', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901236621722474083662', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:24', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901236811722474083681', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:24', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901237231722474083723', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:24', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901237401722474083740', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:24', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901237891722474083789', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:24', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901238181722474083818', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:24', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901238391722474083839', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:24', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901238751722474083875', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:24', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901239001722474083900', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:24', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901239801722474083980', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:24', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901240221722474084022', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:24', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901240401722474084040', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:24', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901240801722474084080', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:24', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901241011722474084101', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:24', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901241431722474084143', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:24', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901241591722474084159', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:24', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901242051722474084205', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:24', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901242191722474084219', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:24', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901243221722474084322', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:24', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901243401722474084340', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:24', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901243831722474084383', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:24', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901244021722474084402', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:24', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901244741722474084474', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:24', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901244761722474084476', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:24', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901244981722474084498', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:24', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901245181722474084518', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:25', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901245801722474084580', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:25', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901246691722474084669', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:25', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901246991722474084699', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:25', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901247321722474084732', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:25', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901247601722474084760', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:25', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901248201722474084820', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:25', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901248211722474084821', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:25', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901248391722474084839', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:25', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901248821722474084882', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:25', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901249001722474084900', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:25', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901250171722474085017', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:25', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901250371722474085037', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:25', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901250611722474085061', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:25', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901250991722474085099', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:25', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901251421722474085142', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:25', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901251931722474085193', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:25', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901251941722474085194', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:25', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901252241722474085224', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:25', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901252391722474085239', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:25', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901253291722474085329', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:25', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901253581722474085358', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:25', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901253801722474085380', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:25', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901254401722474085440', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:25', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901254431722474085443', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:25', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901254631722474085463', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:25', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901255041722474085504', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:26', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901255191722474085519', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:26', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901256001722474085600', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:26', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901257211722474085721', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:26', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901257221722474085722', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:26', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901257401722474085740', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:26', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901257881722474085788', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:26', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901258201722474085820', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:26', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901258491722474085849', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:26', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901258891722474085889', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:26', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901258921722474085892', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:26', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901259591722474085959', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:26', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901260471722474086047', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:26', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901260581722474086058', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:26', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901261041722474086104', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:26', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901261191722474086119', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:26', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901261631722474086163', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:26', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901261791722474086179', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:26', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901262231722474086223', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:26', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901262381722474086238', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:26', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901263001722474086300', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:26', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901263821722474086382', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:26', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901263981722474086398', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:26', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901264421722474086442', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:26', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901264591722474086459', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:26', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901265051722474086505', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:27', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901265191722474086519', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:27', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901265591722474086559', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:27', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901266211722474086621', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:27', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901266411722474086641', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:27', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901267321722474086732', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:27', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901267491722474086749', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:27', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901267941722474086794', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:27', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901268091722474086809', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:27', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901268491722474086849', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:27', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901268861722474086886', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:27', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901269121722474086912', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:27', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901269691722474086969', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:27', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901269891722474086989', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:27', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901270731722474087073', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:27', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901270881722474087088', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:27', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901271361722474087136', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:27', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901271481722474087148', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:27', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901271931722474087193', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:27', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901272091722474087209', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:27', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901272481722474087248', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:27', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901273091722474087309', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:27', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901273291722474087329', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:27', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901274371722474087437', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:27', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901274391722474087439', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:27', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901274591722474087459', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:27', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901275051722474087505', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:28', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901275211722474087521', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:28', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901275281722474087528', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:28', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901276091722474087609', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:28', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901276451722474087645', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:28', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901276461722474087646', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:28', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901277151722474087715', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:28', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901277301722474087730', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:28', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901277731722474087773', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:28', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901277881722474087788', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:28', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901278691722474087869', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:28', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901278701722474087870', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:28', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901278901722474087890', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:28', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901279351722474087935', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:28', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901279481722474087948', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:28', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901280401722474088040', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:28', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901280701722474088070', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:28', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901281301722474088130', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:28', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901281331722474088133', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:28', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901281491722474088149', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:28', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901282001722474088200', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:28', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901282091722474088209', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:28', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901282531722474088253', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:28', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901282691722474088269', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:28', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901283931722474088393', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:28', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901283951722474088395', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:28', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901284111722474088411', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:28', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901284491722474088449', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:28', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901284781722474088478', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:28', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901284881722474088488', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:28', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901285321722474088532', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:29', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901285551722474088555', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:29', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901285901722474088590', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:29', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901287101722474088710', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:29', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901287131722474088713', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:29', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901287291722474088729', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:29', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901287741722474088774', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:29', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901287911722474088791', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:29', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901288321722474088832', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:29', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901288511722474088851', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:29', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901289231722474088923', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:29', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901289401722474088940', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:29', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901290181722474089018', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:29', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901290711722474089071', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:29', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901290991722474089099', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:29', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901291591722474089159', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:29', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901291621722474089162', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:29', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901291811722474089181', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:29', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901292221722474089222', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:29', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901292381722474089238', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:29', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901292991722474089299', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:29', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901293911722474089391', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:29', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901294101722474089410', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:29', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901294521722474089452', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:29', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901294701722474089470', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:29', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901295401722474089540', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:30', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901295421722474089542', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:30', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901295591722474089559', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:30', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901296031722474089603', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:30', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901296191722474089619', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:30', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901297401722474089740', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:30', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901297421722474089742', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:30', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901297581722474089758', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:30', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901298031722474089803', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:30', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901298191722474089819', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:30', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901298641722474089864', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:30', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901298791722474089879', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:30', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901299241722474089924', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:30', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901299391722474089939', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:30', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901300591722474090059', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:30', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901300611722474090061', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:30', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901300791722474090079', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:30', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901301231722474090123', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:30', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901301381722474090138', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:30', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901301851722474090185', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:30', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901302001722474090200', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:30', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901302431722474090243', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:30', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901302591722474090259', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:30', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901303571722474090357', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:30', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901304081722474090408', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:30', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901304261722474090426', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:30', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901304481722474090448', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:30', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901304691722474090469', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:30', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901305101722474090510', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:31', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901305281722474090528', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:31', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901305731722474090573', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:31', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901305901722474090590', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:31', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901307101722474090710', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:31', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901307121722474090712', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:31', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901307321722474090732', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:31', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901307711722474090771', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:31', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901307881722474090788', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:31', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901308321722474090832', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:31', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901308491722474090849', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:31', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901308921722474090892', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:31', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901309091722474090909', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:31', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901310291722474091029', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:31', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901310311722474091031', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:31', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901310481722474091048', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:31', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901310921722474091092', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:31', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901311081722474091108', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:31', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901311521722474091152', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:31', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901311681722474091168', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:31', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901311901722474091190', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:31', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901311951722474091195', 'Wcs请求载具入库', 'wcsVehicleIn', '[{\"point\": \"C4\", \"remark\": \"\", \"vehicleNo\": \"ASRS000185\", \"codeMessage\": \"ASRS000185\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求载具入库发生错误:当前载具没有入库或回库任务\\\"}\"', '192.168.8.62', '2024-08-01 09:01:31', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901312481722474091248', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:31', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901313321722474091332', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:31', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901313551722474091355', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:31', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901313931722474091393', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:31', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901314101722474091410', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:31', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901314801722474091480', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:31', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901314821722474091482', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:31', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901314831722474091483', 'Wcs请求载具入库', 'wcsVehicleIn', '[{\"point\": \"C4\", \"remark\": \"\", \"vehicleNo\": \"ASRS000185\", \"codeMessage\": \"ASRS000185\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求载具入库发生错误:当前载具没有入库或回库任务\\\"}\"', '192.168.8.62', '2024-08-01 09:01:31', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901315491722474091549', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:32', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901315521722474091552', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:32', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901315691722474091569', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:32', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901316891722474091689', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:32', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901316921722474091692', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:32', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901317081722474091708', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:32', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901317511722474091751', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:32', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901317681722474091768', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:32', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901318141722474091814', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:32', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901318441722474091844', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:32', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901318691722474091869', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:32', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901319291722474091929', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:32', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901320211722474092021', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:32', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901320371722474092037', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:32', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901320861722474092086', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:32', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901320901722474092090', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:32', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901321581722474092158', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:32', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901321651722474092165', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:32', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901321791722474092179', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:32', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901322591722474092259', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:32', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901322791722474092279', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:32', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901323681722474092368', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:32', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901323781722474092378', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:32', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901324711722474092471', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:32', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901324721722474092472', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:32', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901324921722474092492', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:32', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901325191722474092519', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:33', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901325881722474092588', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:33', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901325891722474092589', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:33', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901326011722474092601', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:33', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901327181722474092718', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:33', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901327221722474092722', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:33', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901327401722474092740', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:33', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901327831722474092783', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:33', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901327991722474092799', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:33', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901328471722474092847', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:33', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901328801722474092880', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:33', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901329151722474092915', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:33', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901329391722474092939', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:33', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901330311722474093031', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:33', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901330481722474093048', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:33', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901330921722474093092', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:33', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901331081722474093108', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:33', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901331531722474093153', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:33', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901331681722474093168', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:33', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901332131722474093213', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:33', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901332281722474093228', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:33', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901332881722474093288', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:33', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901334091722474093409', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:33', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901334121722474093412', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:33', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901334291722474093429', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:33', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901334721722474093472', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:33', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901334891722474093489', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:33', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901335311722474093531', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:34', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901335491722474093549', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:34', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901335921722474093592', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:34', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901336081722474093608', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:34', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901337311722474093731', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:34', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901337321722474093732', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:34', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901337481722474093748', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:34', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901337911722474093791', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:34', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901338081722474093808', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:34', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901338521722474093852', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:34', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901338711722474093871', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:34', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901339131722474093913', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:34', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901339271722474093927', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:34', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901340091722474094009', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:34', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901340281722474094028', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:34', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901340721722474094072', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:34', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901340891722474094089', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:34', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901341321722474094132', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:34', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901341491722474094149', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:34', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901341921722474094192', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:34', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901342151722474094215', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:34', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901342681722474094268', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:34', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901343671722474094367', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:34', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901343681722474094368', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:34', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901344491722474094449', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:34', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901344541722474094454', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:34', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901344681722474094468', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:34', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901345101722474094510', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:35', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901345271722474094527', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:35', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901345751722474094575', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:35', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901345891722474094589', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:35', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901346821722474094682', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:35', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901346981722474094698', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:35', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901347431722474094743', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:35', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901347581722474094758', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:35', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901348021722474094802', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:35', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901348181722474094818', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:35', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901348601722474094860', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:35', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901348831722474094883', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:35', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901349381722474094938', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:35', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901350221722474095022', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:35', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901350381722474095038', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:35', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901350831722474095083', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:35', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901350971722474095097', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:35', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901351401722474095140', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:35', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901351591722474095159', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:35', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901352391722474095239', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:35', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901352421722474095242', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:35', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901352581722474095258', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:35', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901353701722474095370', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:35', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901353721722474095372', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:35', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901353891722474095389', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:35', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901354321722474095432', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:35', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901354481722474095448', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:35', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901355281722474095528', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:36', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901355301722474095530', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:36', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901355481722474095548', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:36', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901356081722474095608', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:36', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901357401722474095740', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:36', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901357541722474095754', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:36', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901357751722474095775', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:36', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901357981722474095798', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:36', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901358411722474095841', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:36', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901358571722474095857', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:36', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901358991722474095899', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:36', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901359181722474095918', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:36', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901359791722474095979', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:36', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901360691722474096069', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:36', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901360881722474096088', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:36', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901361311722474096131', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:36', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901361471722474096147', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:36', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901361931722474096193', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:36', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901362081722474096208', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:36', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901362511722474096251', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:36', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901362701722474096270', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:36', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901363281722474096328', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:36', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901364211722474096421', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:36', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901364381722474096438', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:36', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901364861722474096486', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:36', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901364971722474096497', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:36', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901365941722474096594', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:37', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901365961722474096596', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:37', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901365981722474096598', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:37', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901366581722474096658', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:37', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901366781722474096678', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:37', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901367681722474096768', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:37', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901368221722474096822', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:37', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901368241722474096824', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:37', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901368271722474096827', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:37', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901369091722474096909', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:37', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901369111722474096911', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:37', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901369361722474096936', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:37', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901369711722474096971', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:37', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901369871722474096987', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:37', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901371091722474097109', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:37', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901371121722474097112', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:37', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901371281722474097128', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:37', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901371721722474097172', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:37', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901371871722474097187', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:37', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901372311722474097231', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:37', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901372481722474097248', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:37', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901372911722474097291', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:37', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901373071722474097307', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:37', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901374181722474097418', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:37', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901374211722474097421', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:37', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901374371722474097437', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:37', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901374801722474097480', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:37', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901374981722474097498', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:37', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901375441722474097544', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:38', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901375581722474097558', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:38', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901376381722474097638', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:38', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901376581722474097658', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:38', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901377421722474097742', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:38', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901377591722474097759', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:38', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901378041722474097804', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:38', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901378181722474097818', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:38', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901378991722474097899', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:38', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901379021722474097902', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:38', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901379181722474097918', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:38', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901379611722474097961', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:38', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901379781722474097978', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:38', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901380791722474098079', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:38', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901380931722474098093', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:38', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901381081722474098108', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:38', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901381681722474098168', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:38', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901381721722474098172', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:38', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901381891722474098189', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:38', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901382311722474098231', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:38', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901382471722474098247', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:38', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901383091722474098309', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:38', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901384181722474098418', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:38', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901384201722474098420', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:38', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901384711722474098471', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:38', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901384881722474098488', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:38', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901385321722474098532', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:39', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901385481722474098548', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:39', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901385921722474098592', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:39', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901386071722474098607', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:39', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901386681722474098668', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:39', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901387511722474098751', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:39', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901387671722474098767', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:39', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901388281722474098828', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:39', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901388321722474098832', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:39', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901388471722474098847', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:39', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901388941722474098894', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:39', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901389071722474098907', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:39', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901389511722474098951', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:39', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901389671722474098967', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:39', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901390811722474099081', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:39', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901390831722474099083', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:39', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901391081722474099108', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:39', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901391681722474099168', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:39', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901391731722474099173', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:39', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901391881722474099188', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:39', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901392311722474099231', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:39', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901392491722474099249', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:39', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901393071722474099307', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:39', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901394581722474099458', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:39', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901394611722474099461', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:39', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901394791722474099479', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:39', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901395331722474099533', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:40', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901395541722474099554', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:40', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901395781722474099578', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:40', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901396381722474099638', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:40', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901396431722474099643', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:40', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901396571722474099657', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:40', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901397301722474099730', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:40', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901397471722474099747', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:40', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901397921722474099792', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:40', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901398281722474099828', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:40', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901398881722474099888', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:40', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901398901722474099890', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:40', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901399091722474099909', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:40', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901399511722474099951', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:40', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901399671722474099967', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:40', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901400891722474100089', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:40', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901400921722474100092', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:40', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901401071722474100107', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:40', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901401551722474100155', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:40', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901401681722474100168', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:40', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901402121722474100212', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:40', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901402271722474100227', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:40', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901402721722474100272', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:40', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901402871722474100287', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:40', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901403971722474100397', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:40', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901404021722474100402', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:40', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901404181722474100418', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:40', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901404611722474100461', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:40', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901404771722474100477', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:40', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901405211722474100521', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:41', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901405371722474100537', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:41', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901405821722474100582', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:41', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901405971722474100597', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:41', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901406941722474100694', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:41', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901407071722474100707', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:41', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901407541722474100754', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:41', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901407671722474100767', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:41', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901408111722474100811', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:41', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901408271722474100827', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:41', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901408701722474100870', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:41', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901408861722474100886', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:41', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901409481722474100948', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:41', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901410611722474101061', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:41', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901410631722474101063', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:41', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901411091722474101109', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:41', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901411271722474101127', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:41', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901411691722474101169', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:41', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901411871722474101187', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:41', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901412321722474101232', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:41', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901412471722474101247', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:41', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901413081722474101308', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:41', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901413981722474101398', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:41', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901414581722474101458', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:41', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901414611722474101461', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:41', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901414781722474101478', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:41', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901415201722474101520', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:42', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901415381722474101538', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:42', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901415801722474101580', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:42', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901416051722474101605', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:42', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901416471722474101647', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:42', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901417471722474101747', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:42', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901417511722474101751', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:42', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901417671722474101767', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:42', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901418141722474101814', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:42', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901418271722474101827', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:42', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901418721722474101872', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:42', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901418871722474101887', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:42', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901419271722474101927', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:42', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901419671722474101967', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:42', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901420411722474102041', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:42', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901420571722474102057', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:42', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901421011722474102101', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:42', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901421171722474102117', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:42', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901421701722474102170', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:42', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901421981722474102198', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:42', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901422571722474102257', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:42', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901422631722474102263', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:42', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901422771722474102277', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:42', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901424021722474102402', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:42', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901424041722474102404', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:42', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901424181722474102418', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:42', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901424631722474102463', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:42', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901424771722474102477', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:42', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901425211722474102521', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:43', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901425391722474102539', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:43', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901425801722474102580', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:43', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901426031722474102603', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:43', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901427181722474102718', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:43', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901427211722474102721', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:43', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901427391722474102739', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:43', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901427821722474102782', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:43', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901427981722474102798', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:43', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901428431722474102843', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:43', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901428571722474102857', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:43', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901429051722474102905', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:43', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901429171722474102917', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:43', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901430371722474103037', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:43', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901430431722474103043', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:43', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901430561722474103056', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:43', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901431011722474103101', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:43', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901431161722474103116', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:43', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901431621722474103162', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:43', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901431771722474103177', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:43', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901432201722474103220', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:43', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901432371722474103237', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:43', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901433641722474103364', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:43', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901433661722474103366', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:43', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901433781722474103378', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:43', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901434221722474103422', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:43', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901434371722474103437', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:43', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901434821722474103482', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:43', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901434961722474103496', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:43', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901435581722474103558', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:44', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901435781722474103578', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:44', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901436711722474103671', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:44', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901436891722474103689', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:44', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901437671722474103767', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:44', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901437711722474103771', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:44', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901437871722474103787', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:44', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901438311722474103831', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:44', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901438471722474103847', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:44', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901438911722474103891', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:44', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901439071722474103907', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:44', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901440281722474104028', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:44', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901440321722474104032', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:44', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901440471722474104047', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:44', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901440911722474104091', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:44', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901441081722474104108', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:44', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901441521722474104152', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:44', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901441681722474104168', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:44', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901442161722474104216', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:44', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901442331722474104233', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:44', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901443571722474104357', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:44', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901443591722474104359', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:44', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901443771722474104377', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:44', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901444421722474104442', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:44', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901444441722474104444', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:44', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901444571722474104457', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:44', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901445031722474104503', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:45', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901445171722474104517', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:45', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901445971722474104597', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:45', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901446921722474104692', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:45', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901447071722474104707', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:45', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901447501722474104750', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:45', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901447661722474104766', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:45', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901448101722474104810', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:45', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901448281722474104828', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:45', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901448701722474104870', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:45', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901448871722474104887', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:45', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901449471722474104947', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:45', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901450571722474105057', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:45', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901450581722474105058', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:45', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901450771722474105077', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:45', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901451201722474105120', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:45', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901451371722474105137', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:45', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901451811722474105181', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:45', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901451961722474105196', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:45', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901452401722474105240', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:45', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901452571722474105257', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:45', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901453581722474105358', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:45', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901453601722474105360', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:45', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901453771722474105377', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:45', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901454381722474105438', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:45', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901454391722474105439', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:45', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901454581722474105458', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:45', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901455011722474105501', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:46', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901455191722474105519', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:46', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901455781722474105578', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:46', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901456711722474105671', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:46', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901456861722474105686', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:46', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901457311722474105731', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:46', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901457461722474105746', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:46', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901457921722474105792', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:46', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901458061722474105806', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:46', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901458521722474105852', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:46', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901458671722474105867', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:46', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901459271722474105927', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:46', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901460221722474106022', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:46', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901460361722474106036', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:46', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901460861722474106086', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:46', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901460961722474106096', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:46', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901461771722474106177', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:46', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901461801722474106180', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:46', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901461971722474106197', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:46', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901462381722474106238', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:46', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901462571722474106257', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:46', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901463871722474106387', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:46', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901463921722474106392', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:46', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901464071722474106407', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:46', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901464501722474106450', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:46', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901464661722474106466', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:46', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901465131722474106513', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:47', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901465271722474106527', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:47', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901465721722474106572', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:47', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901466071722474106607', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:47', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901467271722474106727', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:47', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901467501722474106750', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:47', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901467641722474106764', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:47', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901467871722474106787', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:47', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901468471722474106847', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:47', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901468501722474106850', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:47', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901468661722474106866', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:47', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901469101722474106910', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:47', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901469271722474106927', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:47', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901470141722474107014', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:47', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901470371722474107037', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:47', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901470981722474107098', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:47', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901470991722474107099', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:47', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901471161722474107116', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:47', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901471611722474107161', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:47', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901471781722474107178', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:47', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901472201722474107220', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:47', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901472431722474107243', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:47', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901473331722474107333', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:47', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901473461722474107346', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:47', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901473921722474107392', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:47', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901474071722474107407', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:47', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901474501722474107450', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:47', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901474661722474107466', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:47', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901475111722474107511', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:48', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901475271722474107527', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:48', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901475871722474107587', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:48', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901477081722474107708', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:48', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901477091722474107709', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:48', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901477271722474107727', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:48', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901477701722474107770', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:48', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901477871722474107787', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:48', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901478301722474107830', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:48', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901478491722474107849', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:48', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901478911722474107891', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:48', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901479071722474107907', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:48', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901479901722474107990', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:48', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901480061722474108006', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:48', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901480481722474108048', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:48', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901480661722474108066', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:48', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901481121722474108112', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:48', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901481271722474108127', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:48', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901481731722474108173', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:48', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901481871722474108187', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:48', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901482471722474108247', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:48', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901483671722474108367', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:48', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901483711722474108371', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:48', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901483871722474108387', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:48', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901484301722474108430', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:48', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901484471722474108447', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:48', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901484901722474108490', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:48', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901485061722474108506', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:49', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901485511722474108551', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:49', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901485691722474108569', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:49', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901486871722474108687', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:49', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901486901722474108690', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:49', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901487071722474108707', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:49', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901487511722474108751', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:49', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901487661722474108766', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:49', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901488111722474108811', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:49', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901488261722474108826', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:49', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901488691722474108869', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:49', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901488861722474108886', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:49', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901489971722474108997', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:49', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901489991722474108999', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:49', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901490171722474109017', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:49', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901490611722474109061', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:49', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901490771722474109077', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:49', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901491181722474109118', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:49', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901491371722474109137', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:49', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901491811722474109181', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:49', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901492051722474109205', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:49', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901493191722474109319', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:49', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901493201722474109320', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:49', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901493371722474109337', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:49', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901493561722474109356', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:49', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901494401722474109440', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:49', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901494431722474109443', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:49', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901494561722474109456', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:49', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901495021722474109502', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:50', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901495171722474109517', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:50', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901496121722474109612', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:50', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901496281722474109628', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:50', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901496701722474109670', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:50', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901496871722474109687', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:50', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901497311722474109731', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:50', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901497461722474109746', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:50', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901497941722474109794', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:50', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901498061722474109806', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:50', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901498671722474109867', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:50', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901499501722474109950', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:50', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901499731722474109973', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:50', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901500101722474110010', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:50', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901500291722474110029', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:50', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901500791722474110079', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:50', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901501021722474110102', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:50', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901501261722474110126', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:50', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901501881722474110188', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:50', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901502071722474110207', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:50', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901503281722474110328', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:50', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901503301722474110330', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:50', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901503471722474110347', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:50', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901503921722474110392', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:50', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901504071722474110407', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:50', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901504491722474110449', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:50', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901504671722474110467', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:50', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901505121722474110512', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:51', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901505261722474110526', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:51', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901506471722474110647', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:51', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901506511722474110651', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:51', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901506661722474110666', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:51', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901507101722474110710', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:51', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901507261722474110726', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:51', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901507711722474110771', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:51', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901507871722474110787', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:51', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901508671722474110867', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:51', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901508871722474110887', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:51', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901509971722474110997', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:51', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901510011722474111001', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:51', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901510171722474111017', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:51', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901510981722474111098', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:51', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901510991722474111099', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:51', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901511171722474111117', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:51', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901511631722474111163', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:51', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901511761722474111176', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:51', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901512361722474111236', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:51', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901513491722474111349', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:51', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901513921722474111392', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:51', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901514091722474111409', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:51', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901514371722474111437', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:51', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901515161722474111516', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:52', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901515191722474111519', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:52', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901515481722474111548', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:52', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901515661722474111566', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:52', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901515861722474111586', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:52', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901517061722474111706', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:52', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901517101722474111710', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:52', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901517271722474111727', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:52', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901517711722474111771', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:52', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901517871722474111787', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:52', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901518301722474111830', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:52', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901518551722474111855', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:52', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901518801722474111880', 'Wcs请求载具入库', 'wcsVehicleIn', '[{\"point\": \"C3\", \"remark\": \"\", \"vehicleNo\": \"ASRS000185\", \"codeMessage\": \"ASRS000185\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求载具入库发生错误:当前载具没有入库或回库任务\\\"}\"', '192.168.8.62', '2024-08-01 09:01:52', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901518811722474111881', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:52', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901519361722474111936', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:52', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901520571722474112057', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:52', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901520611722474112061', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:52', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901520801722474112080', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:52', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901521481722474112148', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:52', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901521491722474112149', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:52', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901521671722474112167', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:52', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901521891722474112189', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:52', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901521911722474112191', 'Wcs请求载具入库', 'wcsVehicleIn', '[{\"point\": \"C3\", \"remark\": \"\", \"vehicleNo\": \"ASRS000185\", \"codeMessage\": \"ASRS000185\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求载具入库发生错误:当前载具没有入库或回库任务\\\"}\"', '192.168.8.62', '2024-08-01 09:01:52', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901522671722474112267', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:52', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901522891722474112289', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:52', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901523911722474112391', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:52', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901523921722474112392', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:52', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901524661722474112466', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:52', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901524691722474112469', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:52', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901524861722474112486', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:52', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901525301722474112530', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:53', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901525461722474112546', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:53', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901525911722474112591', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:53', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901526071722474112607', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:53', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901527271722474112727', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:53', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901527291722474112729', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:53', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901527471722474112747', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:53', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901527901722474112790', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:53', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901528061722474112806', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:53', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901528491722474112849', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:53', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901528671722474112867', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:53', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901529271722474112927', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:53', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901529461722474112946', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:53', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901530601722474113060', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:53', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901530631722474113063', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:53', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901531271722474113127', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:53', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901531301722474113130', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:53', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901531471722474113147', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:53', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901531911722474113191', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:53', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901532061722474113206', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:53', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901532501722474113250', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:53', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901532671722474113267', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:53', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901533881722474113388', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:53', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901533901722474113390', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:53', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901534071722474113407', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:53', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901534531722474113453', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:53', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901534661722474113466', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:53', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901535091722474113509', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:54', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901535271722474113527', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:54', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901535691722474113569', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:54', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901535861722474113586', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:54', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901536691722474113669', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:54', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901536871722474113687', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:54', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901537291722474113729', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:54', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901537471722474113747', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:54', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901537921722474113792', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:54', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901538061722474113806', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:54', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901538501722474113850', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:54', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901538661722474113866', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:54', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901539271722474113927', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:54', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901540241722474114024', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:54', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901540521722474114052', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:54', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901540761722474114076', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:54', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901541361722474114136', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:54', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901541381722474114138', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:54', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901541611722474114161', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:54', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901541971722474114197', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:54', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901542561722474114256', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:54', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901542771722474114277', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:54', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901544071722474114407', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:54', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901544091722474114409', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:54', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901544211722474114421', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:54', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901544611722474114461', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:54', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901544761722474114476', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:54', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901545511722474114551', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:55', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901545531722474114553', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:55', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901545761722474114576', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:55', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901546371722474114637', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:55', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901547571722474114757', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:55', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901547631722474114763', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:55', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901547761722474114776', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:55', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901548201722474114820', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:55', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901548361722474114836', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:55', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901548811722474114881', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:55', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901548971722474114897', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:55', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901549541722474114954', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:55', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901549801722474114980', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:55', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901550691722474115069', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:55', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901550871722474115087', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:55', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901551281722474115128', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:55', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901551461722474115146', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:55', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901551891722474115189', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:55', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901552121722474115212', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:55', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901552511722474115251', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:55', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901552711722474115271', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:55', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901553261722474115326', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:55', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901554271722474115427', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:55', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901554291722474115429', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:55', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901554501722474115450', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:55', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901554901722474115490', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:55', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901555061722474115506', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:56', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901555861722474115586', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:56', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901555941722474115594', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:56', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901556061722474115606', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:56', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901556681722474115668', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:56', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901557761722474115776', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:56', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901557801722474115780', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:56', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901557961722474115796', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:56', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901558771722474115877', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:56', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901558781722474115878', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:56', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901558961722474115896', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:56', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901559411722474115941', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:56', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901559601722474115960', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:56', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901560261722474116026', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:56', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901561471722474116147', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:56', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901561491722474116149', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:56', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901561661722474116166', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:56', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901562101722474116210', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:56', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901562261722474116226', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:56', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901562701722474116270', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:56', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901562871722474116287', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:56', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901563661722474116366', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:56', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901563861722474116386', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:56', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901564781722474116478', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:56', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901564971722474116497', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:56', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901565391722474116539', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:57', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901565561722474116556', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:57', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901566011722474116601', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:57', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901566161722474116616', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:57', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901566611722474116661', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:57', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901566761722474116676', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:57', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901567361722474116736', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:57', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901568601722474116860', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:57', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901568621722474116862', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:57', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901568761722474116876', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:57', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901569191722474116919', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:57', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901569381722474116938', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:57', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901569801722474116980', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:57', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901569981722474116998', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:57', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901570361722474117036', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:57', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901570961722474117096', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:57', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901571811722474117181', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:57', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901571961722474117196', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:57', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901572401722474117240', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:57', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901572561722474117256', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:57', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901573011722474117301', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:57', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901573161722474117316', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:57', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901573761722474117376', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:57', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901573781722474117378', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:57', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901573961722474117396', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:57', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901574891722474117489', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:57', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901575061722474117506', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:58', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901575501722474117550', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:58', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901575661722474117566', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:58', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901576111722474117611', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:58', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901576271722474117627', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:58', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901577081722474117708', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:58', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901577101722474117710', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:58', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901577261722474117726', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:58', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901578371722474117837', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:58', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901578381722474117838', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:58', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901578571722474117857', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:58', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901579371722474117937', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:58', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901579401722474117940', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:58', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901579581722474117958', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:58', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901580001722474118000', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:58', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901580151722474118015', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:58', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901580761722474118076', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:58', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901581961722474118196', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:58', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901581981722474118198', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:58', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901582181722474118218', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:58', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901582611722474118261', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:58', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901582761722474118276', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:58', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901583201722474118320', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:58', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901583361722474118336', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:58', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901583831722474118383', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:58', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901583981722474118398', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:58', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901585161722474118516', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:59', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901585201722474118520', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:59', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901585381722474118538', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:59', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901585801722474118580', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:59', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901585961722474118596', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:59', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901586401722474118640', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:59', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901586561722474118656', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:59', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901586991722474118699', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:59', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901587171722474118717', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:59', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901588301722474118830', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:59', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901588471722474118847', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:59', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901589171722474118917', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:59', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901589201722474118920', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:59', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901589371722474118937', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:59', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901589801722474118980', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:59', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901589961722474118996', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:59', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901590401722474119040', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:59', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901590561722474119056', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:59', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901591761722474119176', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:59', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901591791722474119179', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:59', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901591961722474119196', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:59', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901592391722474119239', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:59', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901592741722474119274', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:59', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901592961722474119296', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:59', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901593371722474119337', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:59', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901593561722474119356', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:59', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901594161722474119416', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:01:59', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901595001722474119500', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:00', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901595171722474119517', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:00', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901595971722474119597', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:00', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901596021722474119602', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:00', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901596171722474119617', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:00', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901596591722474119659', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:00', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901596761722474119676', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:00', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901597221722474119722', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:00', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901597361722474119736', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:00', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901598561722474119856', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:00', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901598611722474119861', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:00', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901598761722474119876', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:00', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901599231722474119923', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:00', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901599361722474119936', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:00', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901599801722474119980', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:00', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010901599961722474119996', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:00', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902000391722474120039', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:00', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902000551722474120055', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:00', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902001781722474120178', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:00', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902001791722474120179', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:00', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902002091722474120209', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:00', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902002671722474120267', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:00', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902002701722474120270', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:00', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902002881722474120288', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:00', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902003321722474120332', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:00', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902003481722474120348', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:00', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902004181722474120418', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:00', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902005481722474120548', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:01', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902005511722474120551', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:01', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902005671722474120567', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:01', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902006091722474120609', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:01', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902006271722474120627', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:01', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902006711722474120671', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:01', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902006871722474120687', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:01', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902007311722474120731', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:01', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902007491722474120749', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:01', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902008671722474120867', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:01', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902008701722474120870', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:01', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902008891722474120889', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:01', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902009701722474120970', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:01', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902009721722474120972', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:01', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902009961722474120996', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:01', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902010201722474121020', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:01', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902010621722474121062', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:01', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902010771722474121077', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:01', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902011691722474121169', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:01', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902011891722474121189', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:01', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902012381722474121238', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:01', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902012671722474121267', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:01', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902012931722474121293', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:01', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902013081722474121308', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:01', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902013661722474121366', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:01', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902013841722474121384', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:01', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902013871722474121387', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:01', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902015031722474121503', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:02', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902015061722474121506', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:02', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902015251722474121525', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:02', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902015711722474121571', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:02', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902016031722474121603', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:02', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902016171722474121617', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:02', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902016781722474121678', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:02', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902016831722474121683', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:02', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902016981722474121698', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:02', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902018191722474121819', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:02', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902018251722474121825', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:02', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902018401722474121840', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:02', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902019151722474121915', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:02', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902019171722474121917', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:02', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902019291722474121929', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:02', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902020191722474122019', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:02', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902020211722474122021', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:02', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902020511722474122051', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:02', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902021491722474122149', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:02', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902021671722474122167', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:02', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902022161722474122216', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:02', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902022441722474122244', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:02', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902022491722474122249', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:02', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902023281722474122328', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:02', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902023331722474122333', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:02', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902023491722474122349', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:02', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902024211722474122421', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:02', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902025391722474122539', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:03', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902025481722474122548', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:03', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902025571722474122557', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:03', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902026371722474122637', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:03', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902026411722474122641', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:03', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902026591722474122659', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:03', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902027041722474122704', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:03', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902027211722474122721', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:03', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902027891722474122789', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:03', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902028821722474122882', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:03', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902029001722474122900', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:03', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902029431722474122943', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:03', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902029621722474122962', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:03', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902030011722474123001', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:03', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902030201722474123020', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:03', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902030671722474123067', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:03', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902030871722474123087', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:03', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902031461722474123146', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:03', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902032431722474123243', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:03', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902032771722474123277', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:03', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902032951722474123295', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:03', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902033171722474123317', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:03', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902033591722474123359', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:03', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902033781722474123378', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:03', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902034201722474123420', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:03', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902034361722474123436', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:03', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902034961722474123496', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:03', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902035851722474123585', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:04', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902035881722474123588', 'Wcs请求载具入库', 'wcsVehicleIn', '[{\"point\": \"R1\", \"remark\": \"\", \"vehicleNo\": \"ASRS000143\", \"codeMessage\": \"ASRS000143\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求载具入库发生错误:当前载具没有入库或回库任务\\\"}\"', '192.168.8.62', '2024-08-01 09:02:04', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902035961722474123596', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:04', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902036841722474123684', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:04', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902036861722474123686', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:04', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902036981722474123698', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:04', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902037671722474123767', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:04', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902037721722474123772', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:04', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902037851722474123785', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:04', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902038471722474123847', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:04', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902039101722474123910', 'Wcs请求载具入库', 'wcsVehicleIn', '[{\"point\": \"R1\", \"remark\": \"\", \"vehicleNo\": \"ASRS000143\", \"codeMessage\": \"ASRS000143\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求载具入库发生错误:当前载具没有入库或回库任务\\\"}\"', '192.168.8.62', '2024-08-01 09:02:04', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902039281722474123928', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:04', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902039701722474123970', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:04', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902039861722474123986', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:04', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902040361722474124036', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:04', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902040461722474124046', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:04', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902041261722474124126', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:04', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902041351722474124135', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:04', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902041371722474124137', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:04', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902042051722474124205', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:04', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902043361722474124336', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:04', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902043391722474124339', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:04', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902043561722474124356', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:04', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902044261722474124426', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:04', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902044291722474124429', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:04', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902044461722474124446', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:04', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902044921722474124492', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:04', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902045081722474124508', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:05', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902045671722474124567', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:05', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902046881722474124688', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:05', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902046921722474124692', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:05', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902047071722474124707', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:05', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902047511722474124751', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:05', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902047661722474124766', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:05', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902048111722474124811', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:05', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902048261722474124826', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:05', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902049071722474124907', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:05', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902049281722474124928', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:05', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902050101722474125010', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:05', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902050271722474125027', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:05', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902050731722474125073', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:05', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902050881722474125088', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:05', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902051391722474125139', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:05', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902051571722474125157', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:05', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902052001722474125200', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:05', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902052191722474125219', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:05', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902052761722474125276', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:05', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902053701722474125370', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:05', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902053861722474125386', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:05', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902054371722474125437', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:05', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902054611722474125461', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:05', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902054871722474125487', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:05', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902055471722474125547', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:06', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902055501722474125550', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:06', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902055681722474125568', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:06', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902056371722474125637', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:06', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902057221722474125722', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:06', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902057571722474125757', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:06', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902058171722474125817', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:06', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902058201722474125820', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:06', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902058371722474125837', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:06', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902058781722474125878', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:06', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902058961722474125896', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:06', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902059391722474125939', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:06', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902059561722474125956', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:06', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902060401722474126040', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:06', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902060551722474126055', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:06', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902061371722474126137', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:06', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902061411722474126141', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:06', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902061561722474126156', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:06', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902062031722474126203', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:06', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902062311722474126231', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:06', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902062571722474126257', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:06', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902063171722474126317', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:06', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902064941722474126494', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:06', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902065051722474126505', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:07', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902065541722474126554', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:07', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902065661722474126566', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:07', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902066101722474126610', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:07', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902066271722474126627', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:07', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902066721722474126672', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:07', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902066861722474126686', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:07', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902067461722474126746', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:07', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902068661722474126866', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:07', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902068711722474126871', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:07', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902068871722474126887', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:07', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902069331722474126933', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:07', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902069461722474126946', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:07', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902070251722474127025', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:07', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902070351722474127035', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:07', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902070401722474127040', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:07', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902071161722474127116', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:07', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902072221722474127222', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:07', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902072361722474127236', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:07', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902073161722474127316', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:07', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902073191722474127319', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:07', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902073371722474127337', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:07', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902073821722474127382', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:07', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902073961722474127396', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:07', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902074401722474127440', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:07', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902074581722474127458', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:07', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902075761722474127576', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:08', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902075811722474127581', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:08', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902075961722474127596', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:08', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902076401722474127640', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:08', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902076571722474127657', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:08', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902076981722474127698', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:08', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902077151722474127715', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:08', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902077601722474127760', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:08', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902077761722474127776', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:08', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902078971722474127897', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:08', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902079011722474127901', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:08', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902079181722474127918', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:08', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902079871722474127987', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:08', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902079901722474127990', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:08', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902080061722474128006', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:08', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902080871722474128087', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:08', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902080961722474128096', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:08', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902081061722474128106', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:08', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902082271722474128227', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:08', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902082371722474128237', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:08', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902082471722474128247', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:08', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902082901722474128290', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:08', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902083051722474128305', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:08', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902083471722474128347', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:08', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902083651722474128365', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:08', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902084101722474128410', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:08', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902084251722474128425', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:08', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902085191722474128519', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:09', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902085371722474128537', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:09', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902085791722474128579', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:09', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902085961722474128596', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:09', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902086411722474128641', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:09', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902086561722474128656', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:09', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902087031722474128703', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:09', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902087331722474128733', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:09', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902087561722474128756', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:09', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902088661722474128866', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:09', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902088701722474128870', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:09', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902088861722474128886', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:09', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902089291722474128929', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:09', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902089451722474128945', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:09', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902089891722474128989', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:09', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902090071722474129007', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:09', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902090491722474129049', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:09', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902090661722474129066', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:09', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902091611722474129161', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:09', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902091761722474129176', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:09', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902092201722474129220', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:09', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902092341722474129234', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:09', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902092761722474129276', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:09', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902092961722474129296', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:09', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902093561722474129356', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:09', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902093591722474129359', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:09', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902093761722474129376', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:09', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902094961722474129496', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:09', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902094991722474129499', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:09', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902095171722474129517', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:10', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902095611722474129561', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:10', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902095761722474129576', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:10', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902096201722474129620', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:10', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902096361722474129636', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:10', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902096791722474129679', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:10', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902096961722474129696', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:10', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902097931722474129793', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:10', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902098081722474129808', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:10', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902098521722474129852', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:10', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902098661722474129866', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:10', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902099101722474129910', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:10', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902099261722474129926', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:10', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902099711722474129971', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:10', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902099851722474129985', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:10', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902100461722474130046', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:10', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902101571722474130157', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:10', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902101601722474130160', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:10', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902101771722474130177', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:10', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902102191722474130219', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:10', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902102361722474130236', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:10', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902102801722474130280', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:10', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902102941722474130294', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:10', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902103391722474130339', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:10', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902103561722474130356', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:10', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902104501722474130450', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:10', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902104661722474130466', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:10', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902105101722474130510', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:11', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902105271722474130527', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:11', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902106051722474130605', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:11', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902106151722474130615', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:11', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902106211722474130621', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:11', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902106671722474130667', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:11', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902106861722474130686', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:11', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902107701722474130770', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:11', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902107851722474130785', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:11', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902108671722474130867', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:11', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902108691722474130869', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:11', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902108881722474130888', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:11', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902109311722474130931', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:11', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902109451722474130945', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:11', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902109901722474130990', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:11', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902110071722474131007', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:11', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902111261722474131126', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:11', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902111321722474131132', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:11', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902111451722474131145', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:11', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902112161722474131216', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:11', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902112231722474131223', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:11', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902112361722474131236', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:11', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902112811722474131281', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:11', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902112971722474131297', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:11', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902113561722474131356', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:11', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902114961722474131496', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:11', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902115011722474131501', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:12', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902115161722474131516', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:12', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902115611722474131561', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:12', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902115761722474131576', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:12', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902116211722474131621', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:12', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902116351722474131635', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:12', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902117161722474131716', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:12', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902117381722474131738', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:12', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902118201722474131820', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:12', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902118351722474131835', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:12', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902118791722474131879', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:12', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902118951722474131895', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:12', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902119441722474131944', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:12', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902119551722474131955', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:12', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902119991722474131999', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:12', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902120181722474132018', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:12', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902120851722474132085', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:12', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902121711722474132171', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:12', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902121851722474132185', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:12', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902122301722474132230', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:12', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902122461722474132246', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:12', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902122891722474132289', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:12', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902123051722474132305', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:12', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902123671722474132367', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:12', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902123871722474132387', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:12', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902123891722474132389', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:12', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902124581722474132458', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:12', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902124751722474132475', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:12', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902125171722474132517', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:13', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902125361722474132536', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:13', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902126161722474132616', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:13', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902126201722474132620', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:13', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902126361722474132636', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:13', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902126811722474132681', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:13', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902126951722474132695', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:13', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902128151722474132815', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:13', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902128241722474132824', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:13', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902128391722474132839', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:13', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902129071722474132907', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:13', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902129081722474132908', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:13', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902129261722474132926', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:13', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902129731722474132973', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:13', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902129861722474132986', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:13', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902130551722474133055', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:13', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902131491722474133149', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:13', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902131651722474133165', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:13', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902132471722474133247', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:13', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902132501722474133250', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:13', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902132641722474133264', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:13', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902133331722474133333', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:13', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902133441722474133344', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:13', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902133661722474133366', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:13', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902134261722474133426', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:13', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902135281722474133528', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:14', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902135461722474133546', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:14', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902135991722474133599', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:14', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902136261722474133626', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:14', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902136871722474133687', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:14', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902136881722474133688', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:14', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902137061722474133706', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:14', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902137661722474133766', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:14', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902137861722474133786', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:14', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902139071722474133907', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:14', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902139091722474133909', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:14', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902139251722474133925', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:14', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902139711722474133971', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:14', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902139851722474133985', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:14', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902140491722474134049', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:14', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902140751722474134075', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:14', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902141121722474134112', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:14', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902141251722474134125', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:14', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902142271722474134227', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:14', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902142511722474134251', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:14', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902142661722474134266', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:14', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902143091722474134309', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:14', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902143251722474134325', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:14', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902143721722474134372', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:14', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902143851722474134385', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:14', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902144291722474134429', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:14', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902144451722474134445', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:14', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902145671722474134567', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:15', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902145681722474134568', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:15', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902145841722474134584', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:15', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902146321722474134632', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:15', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902146451722474134645', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:15', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902146901722474134690', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:15', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902147051722474134705', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:15', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902147631722474134763', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:15', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902147861722474134786', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:15', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902148831722474134883', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:15', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902149051722474134905', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:15', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902149671722474134967', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:15', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902149771722474134977', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:15', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902150071722474135007', 'Wcs上报箱子到达', 'boxArrive', '[{\"remark\": \"\", \"location\": \"\", \"taskGroup\": \"\", \"vehicleNo\": \"ASRS000185\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数不全,载具号和站台号不可缺少\\\"}\"', '192.168.8.62', '2024-08-01 09:02:15', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902150651722474135065', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:15', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902150701722474135070', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:15', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902150861722474135086', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:15', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902151661722474135166', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:15', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902151861722474135186', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:15', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902152721722474135272', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:15', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902152841722474135284', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:15', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902153301722474135330', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:15', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902153521722474135352', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:15', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902153891722474135389', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:15', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902154051722474135405', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:15', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902154871722474135487', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:15', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902155001722474135500', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:16', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902155051722474135505', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:16', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902155981722474135598', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:16', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902156261722474135626', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:16', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902156461722474135646', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:16', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902156871722474135687', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:16', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902157061722474135706', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:16', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902157521722474135752', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:16', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902157661722474135766', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:16', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902158081722474135808', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:16', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902158251722474135825', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:16', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902159471722474135947', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:16', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902159741722474135974', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:16', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902160341722474136034', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:16', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902160401722474136040', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:16', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902160561722474136056', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:16', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902161351722474136135', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:16', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902161361722474136136', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:16', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902161561722474136156', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:16', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902162161722474136216', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:16', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902163061722474136306', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:16', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902163381722474136338', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:16', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902163711722474136371', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:16', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902163961722474136396', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:16', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902164561722474136456', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:16', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902164571722474136457', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:16', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902164751722474136475', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:16', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902165191722474136519', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:17', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902165411722474136541', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:17', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902166471722474136647', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:17', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902166681722474136668', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:17', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902167101722474136710', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:17', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902167271722474136727', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:17', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902168121722474136812', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:17', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902168291722474136829', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:17', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902168311722474136831', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:17', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902168351722474136835', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:17', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902169161722474136916', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:17', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902170271722474137027', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:17', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902170451722474137045', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:17', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902170661722474137066', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:17', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902171081722474137108', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:17', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902171251722474137125', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:17', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902171711722474137171', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:17', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902171851722474137185', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:17', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902172291722474137229', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:17', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902172471722474137247', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:17', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902173391722474137339', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:17', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902173551722474137355', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:17', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902173991722474137399', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:17', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902174221722474137422', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:17', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902174881722474137488', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:17', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902174911722474137491', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:17', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902175061722474137506', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:18', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902175521722474137552', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:18', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902175751722474137575', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:18', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902176621722474137662', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:18', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902176751722474137675', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:18', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902177171722474137717', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:18', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902177351722474137735', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:18', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902177781722474137778', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:18', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902178011722474137801', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:18', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902178471722474137847', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:18', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902178661722474137866', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:18', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902179251722474137925', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:18', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902180181722474138018', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:18', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902180351722474138035', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:18', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902180771722474138077', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:18', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902180971722474138097', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:18', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902181371722474138137', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:18', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902181571722474138157', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:18', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902181981722474138198', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:18', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902182141722474138214', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:18', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902182751722474138275', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:18', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902183951722474138395', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:18', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902184011722474138401', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:18', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902184171722474138417', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:18', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902184701722474138470', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:18', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902184871722474138487', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:18', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902185461722474138546', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:19', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902185511722474138551', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:19', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902185681722474138568', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:19', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902186371722474138637', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:19', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902187211722474138721', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:19', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902187351722474138735', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:19', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902187781722474138778', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:19', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902187961722474138796', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:19', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902188761722474138876', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:19', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902188771722474138877', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:19', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902188951722474138895', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:19', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902189351722474138935', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:19', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902189951722474138995', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:19', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902191361722474139136', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:19', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902191391722474139139', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:19', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902191551722474139155', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:19', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902191971722474139197', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:19', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902192151722474139215', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:19', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902192591722474139259', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:19', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902192741722474139274', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:19', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902193671722474139367', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:19', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902193741722474139374', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:19', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902194581722474139458', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:19', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902194751722474139475', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:19', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902195371722474139537', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:20', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902195411722474139541', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:20', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902195601722474139560', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:20', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902196001722474139600', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:20', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902196151722474139615', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:20', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902196731722474139673', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:20', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902196971722474139697', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:20', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902198261722474139826', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:20', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902198271722474139827', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:20', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902198481722474139848', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:20', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902199071722474139907', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:20', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902199091722474139909', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:20', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902199251722474139925', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:20', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902199681722474139968', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:20', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902199851722474139985', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:20', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902200471722474140047', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:20', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902201781722474140178', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:20', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902201951722474140195', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:20', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902202711722474140271', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:20', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902202921722474140292', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:20', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902202941722474140294', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:20', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902203171722474140317', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:20', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902203811722474140381', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:20', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902203941722474140394', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:20', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902204561722474140456', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:20', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902205381722474140538', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:21', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902205551722474140555', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:21', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902206171722474140617', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:21', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902206431722474140643', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:21', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902206771722474140677', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:21', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902206951722474140695', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:21', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902207381722474140738', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:21', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902207551722474140755', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:21', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902208151722474140815', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:21', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902209351722474140935', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:21', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902209381722474140938', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:21', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902209551722474140955', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:21', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902210121722474141012', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:21', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902210351722474141035', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:21', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902210821722474141082', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:21', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902210931722474141093', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:21', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902211851722474141185', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:21', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902212151722474141215', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:21', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902213461722474141346', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:21', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902213601722474141360', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:21', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902213831722474141383', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:21', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902214291722474141429', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:21', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902214451722474141445', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:21', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902214881722474141488', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:21', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902215051722474141505', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:22', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902215491722474141549', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:22', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902215761722474141576', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:22', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902216851722474141685', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:22', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902216871722474141687', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:22', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902217051722474141705', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:22', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902217851722474141785', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:22', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902217971722474141797', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:22', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902218011722474141801', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:22', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902218671722474141867', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:22', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902218711722474141871', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:22', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902218851722474141885', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:22', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902219811722474141981', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:22', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902219951722474141995', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:22', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902220371722474142037', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:22', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902220541722474142054', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:22', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902220981722474142098', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:22', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902221151722474142115', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:22', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902221641722474142164', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:22', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902221731722474142173', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:22', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902222551722474142255', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:22', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902223771722474142377', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:22', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902223941722474142394', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:22', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902223951722474142395', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:22', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902224371722474142437', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:22', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902224541722474142454', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:22', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902224981722474142498', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:22', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902225141722474142514', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:23', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902225691722474142569', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:23', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902225961722474142596', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:23', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902227051722474142705', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:23', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902227061722474142706', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:23', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902227251722474142725', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:23', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902227671722474142767', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:23', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902227951722474142795', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:23', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902228461722474142846', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:23', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902228481722474142848', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:23', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902228641722474142864', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:23', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902229251722474142925', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:23', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902229971722474142997', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:23', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902230171722474143017', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:23', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902230761722474143076', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:23', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902230771722474143077', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:23', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902230961722474143096', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:23', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902231391722474143139', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:23', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902231551722474143155', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:23', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902232001722474143200', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:23', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902232151722474143215', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:23', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902233441722474143344', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:23', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902233561722474143356', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:23', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902233591722474143359', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:23', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902234051722474143405', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:23', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902234251722474143425', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:23', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902234671722474143467', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:23', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902234851722474143485', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:23', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902235281722474143528', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:24', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902235451722474143545', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:24', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902236651722474143665', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:24', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902236671722474143667', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:24', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902236881722474143688', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:24', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902237281722474143728', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:24', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902237451722474143745', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:24', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902237891722474143789', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:24', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902238061722474143806', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:24', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902238471722474143847', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:24', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902238651722474143865', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:24', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902239661722474143966', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:24', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902239681722474143968', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:24', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902239851722474143985', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:24', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902240471722474144047', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:24', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902240491722474144049', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:24', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902240651722474144065', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:24', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902241071722474144107', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:24', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902241251722474144125', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:24', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902241851722474144185', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:24', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902242961722474144296', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:24', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902243011722474144301', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:24', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902243141722474144314', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:24', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902243581722474144358', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:24', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902243761722474144376', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:24', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902244161722474144416', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:24', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902244391722474144439', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:24', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902244811722474144481', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:24', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902244951722474144495', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:24', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902246311722474144631', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:25', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902246441722474144644', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:25', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902246621722474144662', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:25', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902246761722474144676', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:25', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902247351722474144735', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:25', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902247361722474144736', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:25', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902247551722474144755', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:25', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902248031722474144803', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:25', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902248141722474144814', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:25', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902249091722474144909', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:25', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902249261722474144926', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:25', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902249721722474144972', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:25', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902249851722474144985', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:25', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902250281722474145028', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:25', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902250451722474145045', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:25', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902251251722474145125', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:25', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902251341722474145134', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:25', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902251441722474145144', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:25', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902252361722474145236', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:25', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902252561722474145256', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:25', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902252961722474145296', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:25', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902253151722474145315', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:25', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902253831722474145383', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:25', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902253871722474145387', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:25', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902254051722474145405', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:25', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902254471722474145447', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:25', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902254651722474145465', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:25', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902255811722474145581', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:26', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902256051722474145605', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:26', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902256561722474145656', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:26', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902256791722474145679', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:26', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902257061722474145706', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:26', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902257691722474145769', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:26', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902257701722474145770', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:26', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902257861722474145786', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:26', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902258671722474145867', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:26', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902259951722474145995', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:26', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902260021722474146002', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:26', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902260161722474146016', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:26', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902260861722474146086', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:26', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902261031722474146103', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:26', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902261051722474146105', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:26', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902261851722474146185', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:26', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902261991722474146199', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:26', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902262041722474146204', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:26', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902263051722474146305', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:26', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902263061722474146306', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:26', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902263251722474146325', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:26', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902263681722474146368', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:26', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902263851722474146385', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:26', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902264261722474146426', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:26', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902264851722474146485', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:26', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902264861722474146486', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:26', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902265051722474146505', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:27', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902266251722474146625', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:27', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902266351722474146635', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:27', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902266451722474146645', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:27', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902267061722474146706', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:27', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902267171722474146717', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:27', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902267451722474146745', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:27', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902267871722474146787', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:27', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902268111722474146811', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:27', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902268451722474146845', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:27', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902269651722474146965', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:27', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902269851722474146985', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:27', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902270461722474147046', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:27', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902270471722474147047', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:27', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902270661722474147066', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:27', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902271081722474147108', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:27', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902271241722474147124', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:27', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902271661722474147166', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:27', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902271841722474147184', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:27', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902273051722474147305', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:27', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902273081722474147308', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:27', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902273251722474147325', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:27', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902273681722474147368', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:27', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902273841722474147384', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:27', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902274271722474147427', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:27', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902274451722474147445', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:27', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902275061722474147506', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:28', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902275671722474147567', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:28', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902276751722474147675', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:28', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902276801722474147680', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:28', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902276941722474147694', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:28', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902277371722474147737', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:28', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902277571722474147757', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:28', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902277981722474147798', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:28', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902278151722474147815', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:28', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902278591722474147859', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:28', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902278761722474147876', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:28', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902279751722474147975', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:28', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902279761722474147976', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:28', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902279931722474147993', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:28', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902280551722474148055', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:28', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902280571722474148057', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:28', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902280741722474148074', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:28', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902281171722474148117', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:28', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902281361722474148136', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:28', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902281961722474148196', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:28', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902283051722474148305', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:28', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902283111722474148311', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:28', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902283241722474148324', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:28', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902284051722474148405', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:28', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902284071722474148407', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:28', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902284241722474148424', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:28', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902284851722474148485', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:28', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902285051722474148505', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:29', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902285641722474148564', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:29', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902286761722474148676', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:29', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902286951722474148695', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:29', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902287391722474148739', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:29', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902287551722474148755', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:29', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902287971722474148797', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:29', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902288151722474148815', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:29', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902288581722474148858', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:29', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902288741722474148874', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:29', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902289341722474148934', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:29', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902290551722474149055', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:29', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902290561722474149056', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:29', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902290751722474149075', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:29', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902291181722474149118', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:29', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902291341722474149134', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:29', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902291771722474149177', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:29', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902291941722474149194', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:29', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902292751722474149275', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:29', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902292951722474149295', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:29', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902293861722474149386', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:29', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902294051722474149405', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:29', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902294471722474149447', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:29', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902294671722474149467', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:29', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902295061722474149506', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:30', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902295251722474149525', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:30', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902295701722474149570', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:30', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902295841722474149584', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:30', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902296451722474149645', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:30', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902297651722474149765', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:30', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902297851722474149785', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:30', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902298471722474149847', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:30', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902299141722474149914', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:30', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902299241722474149924', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:30', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902299341722474149934', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:30', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902300161722474150016', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:30', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902300171722474150017', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:30', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902300351722474150035', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:30', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902301541722474150154', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:30', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902301561722474150156', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:30', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902301741722474150174', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:30', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902302171722474150217', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:30', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902302341722474150234', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:30', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902302821722474150282', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:30', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902302941722474150294', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:30', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902303381722474150338', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:30', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902303541722474150354', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:30', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902304751722474150475', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:30', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902305361722474150536', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:31', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902305441722474150544', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:31', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902305551722474150555', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:31', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902305981722474150598', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:31', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902306141722474150614', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:31', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902306671722474150667', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:31', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902306961722474150696', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:31', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902307551722474150755', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:31', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902308761722474150876', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:31', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902308771722474150877', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:31', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902308951722474150895', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:31', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902309371722474150937', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:31', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902309541722474150954', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:31', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902309971722474150997', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:31', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902310141722474151014', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:31', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902310561722474151056', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:31', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902310731722474151073', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:31', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902311841722474151184', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:31', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902311951722474151195', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:31', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902312031722474151203', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:31', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902312461722474151246', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:31', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902312641722474151264', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:31', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902313061722474151306', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:31', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902313251722474151325', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:31', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902313671722474151367', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:31', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902313931722474151393', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:31', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902314951722474151495', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:31', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902314971722474151497', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:31', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902315151722474151515', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:32', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902315951722474151595', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:32', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902316061722474151606', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:32', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902316141722474151614', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:32', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902316601722474151660', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:32', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902316741722474151674', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:32', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902317351722474151735', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:32', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902318381722474151838', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:32', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902318541722474151854', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:32', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902319361722474151936', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:32', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902319541722474151954', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:32', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902320091722474152009', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:32', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902320351722474152035', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:32', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902320951722474152095', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:32', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902321071722474152107', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:32', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902321131722474152113', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:32', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902322241722474152224', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:32', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902322441722474152244', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:32', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902322881722474152288', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:32', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902323041722474152304', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:32', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902323471722474152347', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:32', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902323641722474152364', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:32', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902324081722474152408', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:32', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902324251722474152425', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:32', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902324861722474152486', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:32', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902326341722474152634', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:33', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902326761722474152676', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:33', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902326931722474152693', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:33', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902327761722474152776', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:33', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902327831722474152783', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:33', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902327951722474152795', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:33', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902328381722474152838', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:33', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902328541722474152854', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:33', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902329151722474152915', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:33', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902330171722474153017', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:33', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902330441722474153044', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:33', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902331101722474153110', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:33', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902331221722474153122', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:33', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902331231722474153123', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:33', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902332051722474153205', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:33', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902332151722474153215', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:33', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902332251722474153225', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:33', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902332841722474153284', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:33', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902333861722474153386', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:33', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902334041722474153404', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:33', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902334661722474153466', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:33', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902334681722474153468', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:33', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902334841722474153484', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:33', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902335661722474153566', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:34', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902335681722474153568', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:34', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902335841722474153584', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:34', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902336441722474153644', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:34', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902337641722474153764', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:34', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902337691722474153769', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:34', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902337841722474153784', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:34', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902338271722474153827', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:34', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902338431722474153843', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:34', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902338911722474153891', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:34', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902339031722474153903', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:34', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902339801722474153980', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:34', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902340051722474154005', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:34', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902341241722474154124', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:34', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902341331722474154133', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:34', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902341441722474154144', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:34', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902341861722474154186', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:34', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902342041722474154204', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:34', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902342461722474154246', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:34', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902342651722474154265', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:34', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902343251722474154325', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:34', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902343441722474154344', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:34', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902344491722474154449', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:34', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902344641722474154464', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:34', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902345251722474154525', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:35', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902345331722474154533', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:35', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902345451722474154545', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:35', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902346241722474154624', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:35', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902346401722474154640', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:35', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902346651722474154665', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:35', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902347451722474154745', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:35', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902348461722474154846', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:35', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902348471722474154847', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:35', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902348651722474154865', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:35', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902349551722474154955', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:35', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902349561722474154956', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:35', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902349741722474154974', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:35', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902350251722474155025', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:35', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902350561722474155056', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:35', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902351141722474155114', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:35', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902352091722474155209', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:35', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902352241722474155224', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:35', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902353041722474155304', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:35', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902353061722474155306', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:35', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902353241722474155324', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:35', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902353661722474155366', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:35', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902353841722474155384', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:35', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902354251722474155425', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:35', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902354441722474155444', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:35', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902355361722474155536', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:36', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902355541722474155554', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:36', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902356081722474155608', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:36', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902356341722474155634', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:36', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902356961722474155696', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:36', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902357041722474155704', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:36', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902357131722474155713', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:36', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902357741722474155774', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:36', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902357951722474155795', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:36', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902359151722474155915', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:36', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902359331722474155933', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:36', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902359551722474155955', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:36', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902359971722474155997', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:36', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902360141722474156014', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:36', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902360581722474156058', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:36', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902360741722474156074', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:36', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902361161722474156116', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:36', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902361331722474156133', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:36', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902362281722474156228', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:36', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902362441722474156244', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:36', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902362961722474156296', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:36', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902363191722474156319', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:36', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902363441722474156344', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:36', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902364081722474156408', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:36', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902364091722474156409', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:36', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902364241722474156424', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:36', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902364871722474156487', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:36', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902365781722474156578', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:37', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902365911722474156591', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:37', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902366141722474156614', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:37', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902366561722474156656', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:37', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902366741722474156674', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:37', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902367161722474156716', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:37', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902367331722474156733', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:37', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902367771722474156777', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:37', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902367941722474156794', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:37', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902369031722474156903', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:37', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902369161722474156916', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:37', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902369371722474156937', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:37', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902369431722474156943', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:37', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902370251722474157025', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:37', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902370291722474157029', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:37', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902370441722474157044', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:37', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902370871722474157087', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:37', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902371041722474157104', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:37', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902372121722474157212', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:37', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902372261722474157226', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:37', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902373051722474157305', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:37', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902373081722474157308', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:37', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902373171722474157317', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:37', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902374041722474157404', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:37', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902374071722474157407', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:37', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902374241722474157424', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:37', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902374841722474157484', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:37', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902375681722474157568', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:38', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902375841722474157584', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:38', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902376271722474157627', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:38', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902376441722474157644', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:38', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902376881722474157688', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:38', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902377041722474157704', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:38', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902377481722474157748', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:38', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902377661722474157766', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:38', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902378341722474157834', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:38', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902379441722474157944', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:38', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902379471722474157947', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:38', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902379651722474157965', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:38', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902380441722474158044', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:38', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902380531722474158053', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:38', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902380631722474158063', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:38', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902381071722474158107', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:38', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902381241722474158124', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:38', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902381841722474158184', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:38', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902382941722474158294', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:38', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902383251722474158325', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:38', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902383681722474158368', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:38', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902383841722474158384', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:38', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902384341722474158434', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:38', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902384441722474158444', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:38', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902384871722474158487', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:38', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902385041722474158504', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:39', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902385651722474158565', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:39', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902386851722474158685', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:39', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902386881722474158688', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:39', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902387041722474158704', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:39', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902387851722474158785', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:39', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902387861722474158786', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:39', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902388041722474158804', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:39', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902388651722474158865', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:39', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902388661722474158866', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:39', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902388841722474158884', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:39', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902390051722474159005', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:39', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902390061722474159006', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:39', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902390241722474159024', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:39', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902390661722474159066', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:39', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902390841722474159084', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:39', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902391441722474159144', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:39', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902391471722474159147', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:39', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902391551722474159155', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:39', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902392241722474159224', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:39', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902393451722474159345', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:39', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902393531722474159353', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:39', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902393641722474159364', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:39', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902394071722474159407', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:39', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902394241722474159424', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:39', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902394851722474159485', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:39', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902394861722474159486', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:39', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902395041722474159504', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:40', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902395631722474159563', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:40', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902396551722474159655', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:40', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902396781722474159678', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:40', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902396831722474159683', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:40', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902397651722474159765', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:40', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902397741722474159774', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:40', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902397831722474159783', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:40', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902398281722474159828', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:40', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902398431722474159843', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:40', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902399041722474159904', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:40', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902400141722474160014', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:40', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902400181722474160018', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:40', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902400341722474160034', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:40', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902400811722474160081', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:40', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902400991722474160099', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:40', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902401381722474160138', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:40', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902401561722474160156', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:40', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902402061722474160206', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:40', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902402181722474160218', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:40', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902403351722474160335', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:40', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902403541722474160354', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:40', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902404441722474160444', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:40', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902404451722474160445', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:40', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902404631722474160463', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:40', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902405061722474160506', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:41', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902405251722474160525', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:41', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902405691722474160569', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:41', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902405851722474160585', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:41', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902406981722474160698', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:41', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902407131722474160713', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:41', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902407591722474160759', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:41', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902407741722474160774', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:41', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902408191722474160819', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:41', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902408331722474160833', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:41', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902409151722474160915', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:41', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902409181722474160918', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:41', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902409341722474160934', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:41', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902410441722474161044', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:41', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902410451722474161045', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:41', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902410651722474161065', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:41', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902411061722474161106', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:41', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902411241722474161124', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:41', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902411701722474161170', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:41', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902411831722474161183', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:41', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902412381722474161238', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:41', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902412541722474161254', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:41', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902413651722474161365', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:41', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902413661722474161366', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:41', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902413831722474161383', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:41', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902414271722474161427', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:41', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902414431722474161443', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:41', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902414871722474161487', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:41', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902415041722474161504', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:42', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902415841722474161584', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:42', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902416041722474161604', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:42', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902417341722474161734', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:42', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902417371722474161737', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:42', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902417551722474161755', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:42', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902418001722474161800', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:42', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902418131722474161813', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:42', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902418771722474161877', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:42', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902418941722474161894', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:42', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902419401722474161940', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:42', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902419741722474161974', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:42', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902420681722474162068', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:42', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902420831722474162083', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:42', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902421291722474162129', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:42', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902421441722474162144', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:42', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902421851722474162185', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:42', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902422031722474162203', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:42', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902422511722474162251', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:42', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902422641722474162264', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:42', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902423241722474162324', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:42', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902424151722474162415', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:42', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902424331722474162433', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:42', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902424791722474162479', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:42', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902424941722474162494', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:42', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902425371722474162537', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:43', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902425541722474162554', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:43', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902425961722474162596', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:43', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902426141722474162614', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:43', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902426741722474162674', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:43', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902427851722474162785', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:43', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902427871722474162787', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:43', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902428041722474162804', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:43', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902428441722474162844', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:43', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902429041722474162904', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:43', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902429061722474162906', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:43', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902429231722474162923', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:43', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902429661722474162966', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:43', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902429831722474162983', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:43', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902430761722474163076', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:43', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902430921722474163092', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:43', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902432051722474163205', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:43', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902432081722474163208', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:43', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902432241722474163224', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:43', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902432441722474163244', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:43', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902433041722474163304', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:43', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902433061722474163306', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:43', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902433241722474163324', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:43', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902434161722474163416', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:43', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902434331722474163433', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:43', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902434911722474163491', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:43', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902435141722474163514', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:44', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902435751722474163575', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:44', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902435811722474163581', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:44', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902435941722474163594', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:44', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902436761722474163676', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:44', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902436931722474163693', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:44', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902438241722474163824', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:44', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902438261722474163826', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:44', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902438441722474163844', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:44', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902438901722474163890', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:44', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902439031722474163903', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:44', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902439481722474163948', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:44', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902439641722474163964', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:44', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902440071722474164007', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:44', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902440231722474164023', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:44', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902441211722474164121', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:44', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902441491722474164149', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:44', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902441741722474164174', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:44', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902442381722474164238', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:44', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902442741722474164274', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:44', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902443211722474164321', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:44', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902443351722474164335', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:44', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902443541722474164354', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:44', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902444131722474164413', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:44', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902445101722474164510', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:45', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902445411722474164541', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:45', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902445651722474164565', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:45', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902446231722474164623', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:45', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902446341722474164634', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:45', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902446581722474164658', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:45', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902446831722474164683', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:45', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902447321722474164732', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:45', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902447631722474164763', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:45', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902448841722474164884', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:45', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902449441722474164944', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:45', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902449481722474164948', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:45', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902449641722474164964', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:45', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902450081722474165008', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:45', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902450231722474165023', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:45', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902450671722474165067', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:45', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902450831722474165083', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:45', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902451431722474165143', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:45', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902452391722474165239', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:45', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902452531722474165253', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:45', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902453141722474165314', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:45', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902453741722474165374', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:45', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902453771722474165377', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:45', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902453941722474165394', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:45', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902454411722474165441', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:45', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902454711722474165471', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:45', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902454931722474165493', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:45', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902456021722474165602', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:46', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902456341722474165634', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:46', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902456941722474165694', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:46', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902456971722474165697', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:46', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902457141722474165714', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:46', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902457601722474165760', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:46', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902457781722474165778', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:46', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902457931722474165793', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:46', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902458551722474165855', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:46', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902459581722474165958', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:46', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902459831722474165983', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:46', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902460271722474166027', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:46', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902460491722474166049', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:46', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902461191722474166119', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:46', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902461231722474166123', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:46', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902461331722474166133', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:46', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902462051722474166205', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:46', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902462231722474166223', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:46', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902463251722474166325', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:46', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902463381722474166338', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:46', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902463641722474166364', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:46', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902463941722474166394', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:46', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902464561722474166456', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:46', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902464731722474166473', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:46', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902464851722474166485', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:46', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902464931722474166493', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:46', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902465751722474166575', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:47', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902466671722474166667', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:47', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902466831722474166683', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:47', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902467271722474166727', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:47', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902467431722474166743', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:47', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902467861722474166786', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:47', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902468041722474166804', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:47', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902468471722474166847', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:47', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902468651722474166865', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:47', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902469261722474166926', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:47', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902470451722474167045', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:47', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902470461722474167046', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:47', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902470631722474167063', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:47', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902471061722474167106', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:47', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902471241722474167124', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:47', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902471661722474167166', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:47', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902471831722474167183', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:47', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902472291722474167229', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:47', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902472431722474167243', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:47', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902473271722474167327', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:47', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902473441722474167344', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:47', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902473871722474167387', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:47', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902474031722474167403', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:47', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902474491722474167449', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:47', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902474631722474167463', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:47', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902475071722474167507', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:48', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902475231722474167523', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:48', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902475841722474167584', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:48', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902476661722474167666', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:48', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902476831722474167683', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:48', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902477331722474167733', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:48', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902477571722474167757', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:48', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902477831722474167783', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:48', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902478441722474167844', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:48', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902478521722474167852', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:48', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902478841722474167884', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:48', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902479431722474167943', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:48', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902480641722474168064', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:48', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902480741722474168074', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:48', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902481081722474168108', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:48', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902481261722474168126', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:48', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902481421722474168142', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:48', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902481921722474168192', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:48', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902482181722474168218', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:48', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902482431722474168243', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:48', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902483031722474168303', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:48', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902484251722474168425', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:48', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902484291722474168429', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:48', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902484431722474168443', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:48', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902485031722474168503', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:49', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902485051722474168505', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:49', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902485231722474168523', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:49', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902485661722474168566', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:49', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902485861722474168586', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:49', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902486431722474168643', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:49', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902487711722474168771', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:49', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902487851722474168785', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:49', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902488011722474168801', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:49', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902488241722474168824', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:49', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902488651722474168865', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:49', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902488831722474168883', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:49', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902489251722474168925', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:49', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902489421722474168942', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:49', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902490051722474169005', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:49', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902491271722474169127', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:49', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902491281722474169128', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:49', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902491431722474169143', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:49', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902491851722474169185', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:49', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902492031722474169203', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:49', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902492461722474169246', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:49', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902492631722474169263', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:49', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902493061722474169306', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:49', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902493231722474169323', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:49', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902494441722474169444', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:49', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902494531722474169453', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:49', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902494631722474169463', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:49', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902495061722474169506', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:50', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902495231722474169523', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:50', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902495661722474169566', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:50', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902495831722474169583', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:50', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902496271722474169627', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:50', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902496441722474169644', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:50', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902497241722474169724', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:50', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902497421722474169742', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:50', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902497851722474169785', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:50', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902498081722474169808', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:50', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902498491722474169849', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:50', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902498631722474169863', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:50', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902499061722474169906', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:50', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902499221722474169922', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:50', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902499831722474169983', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:50', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902500651722474170065', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:50', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902500831722474170083', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:50', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902501261722474170126', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:50', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902501431722474170143', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:50', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902501861722474170186', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:50', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902502031722474170203', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:50', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902502451722474170245', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:50', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902502631722474170263', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:50', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902503241722474170324', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:50', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902504441722474170444', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:50', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902504451722474170445', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:50', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902504641722474170464', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:50', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902505061722474170506', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:51', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902505231722474170523', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:51', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902505681722474170568', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:51', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902505831722474170583', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:51', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902506251722474170625', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:51', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902506421722474170642', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:51', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902507251722474170725', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:51', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902507431722474170743', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:51', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902507851722474170785', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:51', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902508031722474170803', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:51', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902508461722474170846', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:51', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902508631722474170863', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:51', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902509081722474170908', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:51', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902509231722474170923', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:51', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902509831722474170983', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:51', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902511031722474171103', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:51', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902511061722474171106', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:51', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902511231722474171123', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:51', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902511671722474171167', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:51', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902511831722474171183', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:51', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902512251722474171225', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:51', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902512431722474171243', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:51', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902512861722474171286', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:51', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902513031722474171303', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:51', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902514161722474171416', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:51', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902514451722474171445', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:51', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902515031722474171503', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:52', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902515071722474171507', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:52', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902515231722474171523', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:52', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902516021722474171602', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:52', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902516121722474171612', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:52', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902516181722474171618', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:52', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902516841722474171684', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:52', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902517671722474171767', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:52', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902517831722474171783', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:52', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902518481722474171848', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:52', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902518631722474171863', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:52', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902519081722474171908', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:52', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902519221722474171922', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:52', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902519691722474171969', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:52', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902520021722474172002', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:52', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902520231722474172023', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:52', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902521441722474172144', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:52', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902521521722474172152', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:52', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902521621722474172162', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:52', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902522421722474172242', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:52', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902522541722474172254', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:52', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902522561722474172256', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:52', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902523441722474172344', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:52', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902523471722474172347', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:52', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902523671722474172367', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:52', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902524611722474172461', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:52', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902524741722474172474', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:52', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902525351722474172535', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:53', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902525521722474172552', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:53', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902525931722474172593', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:53', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902526541722474172654', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:53', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902526561722474172656', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:53', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902526731722474172673', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:53', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902527341722474172734', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:53', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902528191722474172819', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:53', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902528331722474172833', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:53', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902528771722474172877', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:53', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902528941722474172894', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:53', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902529361722474172936', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:53', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902529531722474172953', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:53', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902530341722474173034', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:53', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902530471722474173047', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:53', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902530521722474173052', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:53', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902531551722474173155', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:53', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902531561722474173156', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:53', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902531731722474173173', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:53', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902532171722474173217', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:53', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902532321722474173232', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:53', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902532791722474173279', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:53', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902532921722474173292', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:53', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902533361722474173336', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:53', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902533531722474173353', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:53', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902534331722474173433', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:53', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902534931722474173493', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:53', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902534961722474173496', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:53', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902535131722474173513', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:54', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902535581722474173558', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:54', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902535731722474173573', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:54', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902536171722474173617', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:54', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902536321722474173632', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:54', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902536931722474173693', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:54', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902537981722474173798', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:54', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902538121722474173812', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:54', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902538731722474173873', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:54', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902538791722474173879', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:54', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902539131722474173913', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:54', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902539561722474173956', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:54', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902539731722474173973', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:54', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902540141722474174014', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:54', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902540731722474174073', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:54', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902541841722474174184', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:54', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902541861722474174186', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:54', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902542041722474174204', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:54', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902542461722474174246', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:54', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902542621722474174262', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:54', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902543071722474174307', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:54', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902543221722474174322', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:54', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902543671722474174367', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:54', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902543921722474174392', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:54', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902544781722474174478', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:54', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902544921722474174492', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:54', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902545361722474174536', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:55', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902545521722474174552', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:55', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902545981722474174598', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:55', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902546131722474174613', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:55', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902546561722474174656', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:55', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902546731722474174673', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:55', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902547531722474174753', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:55', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902548471722474174847', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:55', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902548621722474174862', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:55', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902549061722474174906', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:55', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902549231722474174923', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:55', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902549691722474174969', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:55', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902549871722474174987', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:55', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902550261722474175026', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:55', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902550431722474175043', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:55', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902551031722474175103', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:55', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902552241722474175224', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:55', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902552261722474175226', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:55', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902552431722474175243', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:55', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902552861722474175286', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:55', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902553041722474175304', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:55', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902553471722474175347', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:55', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902553631722474175363', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:55', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902554101722474175410', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:55', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902554231722474175423', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:55', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902555431722474175543', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:56', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902555441722474175544', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:56', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902555631722474175563', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:56', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902556061722474175606', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:56', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902556231722474175623', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:56', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902557031722474175703', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:56', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902557041722474175704', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:56', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902557231722474175723', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:56', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902557831722474175783', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:56', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902558661722474175866', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:56', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902558831722474175883', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:56', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902559251722474175925', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:56', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902559441722474175944', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:56', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902560231722474176023', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:56', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902560251722474176025', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:56', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902560421722474176042', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:56', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902560871722474176087', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:56', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902561021722474176102', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:56', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902562231722474176223', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:56', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902562241722474176224', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:56', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902562421722474176242', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:56', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902562891722474176289', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:56', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902563031722474176303', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:56', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902563471722474176347', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:56', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902563631722474176363', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:56', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902564051722474176405', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:56', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902564221722474176422', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:56', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902565441722474176544', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:57', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902565451722474176545', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:57', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902565621722474176562', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:57', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902566071722474176607', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:57', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902566231722474176623', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:57', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902566711722474176671', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:57', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902566821722474176682', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:57', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902567301722474176730', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:57', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902567421722474176742', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:57', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902568261722474176826', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:57', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902568451722474176845', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:57', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902568891722474176889', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:57', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902569021722474176902', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:57', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902569461722474176946', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:57', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902569641722474176964', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:57', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902570071722474177007', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:57', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902570221722474177022', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:57', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902570831722474177083', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:57', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902572031722474177203', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:57', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902572071722474177207', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:57', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902572221722474177222', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:57', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902572651722474177265', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:57', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902572821722474177282', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:57', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902573631722474177363', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:57', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902573641722474177364', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:57', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902573831722474177383', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:57', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902574431722474177443', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:57', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902575631722474177563', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:58', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902575641722474177564', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:58', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902575821722474177582', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:58', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902576251722474177625', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:58', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902576421722474177642', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:58', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902576861722474177686', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:58', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902577021722474177702', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:58', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902577461722474177746', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:58', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902577631722474177763', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:58', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902578561722474177856', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:58', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902578731722474177873', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:58', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902579151722474177915', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:58', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902579331722474177933', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:58', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902579941722474177994', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:58', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902580531722474178053', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:58', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902580561722474178056', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:58', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902580721722474178072', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:58', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902581331722474178133', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:58', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902582521722474178252', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:58', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902582551722474178255', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:58', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902582771722474178277', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:58', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902583431722474178343', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:58', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902583461722474178346', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:58', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902583631722474178363', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:58', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902584061722474178406', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:58', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902584221722474178422', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:58', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902584831722474178483', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:58', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902586041722474178604', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:59', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902586051722474178605', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:59', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902586221722474178622', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:59', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902587041722474178704', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:59', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902587051722474178705', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:59', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902587231722474178723', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:59', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902587661722474178766', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:59', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902587821722474178782', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:59', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902588451722474178845', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:59', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902589841722474178984', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:59', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902589971722474178997', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:59', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902590021722474179002', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:59', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902590851722474179085', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:59', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902590881722474179088', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:59', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902591031722474179103', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:59', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902591831722474179183', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:59', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902591931722474179193', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:59', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902592011722474179201', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:59', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902592851722474179285', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:59', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902593031722474179303', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:59', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902593471722474179347', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:59', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902593621722474179362', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:59', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902594431722474179443', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:59', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902594521722474179452', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:59', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902594651722474179465', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:02:59', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902595051722474179505', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:00', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902595291722474179529', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:00', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902596531722474179653', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:00', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902596541722474179654', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:00', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902596721722474179672', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:00', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902597181722474179718', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:00', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902597331722474179733', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:00', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902597751722474179775', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:00', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902597921722474179792', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:00', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902598361722474179836', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:00', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902598521722474179852', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:00', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010902599611722474179961', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:00', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903000081722474180008', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:00', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903000331722474180033', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:00', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903001021722474180102', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:00', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903001111722474180111', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:00', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903001181722474180118', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:00', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903001841722474180184', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:00', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903001851722474180185', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:00', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903002021722474180202', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:00', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903003001722474180300', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:00', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903003311722474180331', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:00', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903003521722474180352', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:00', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903004131722474180413', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:00', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903004141722474180414', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:00', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903004331722474180433', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:00', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903004941722474180494', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:00', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903004991722474180499', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:00', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903005121722474180512', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:01', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903006061722474180606', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:01', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903006221722474180622', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:01', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903006691722474180669', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:01', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903006821722474180682', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:01', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903007281722474180728', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:01', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903007431722474180743', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:01', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903008231722474180823', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:01', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903008271722474180827', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:01', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903008431722474180843', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:01', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903009631722474180963', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:01', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903009721722474180972', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:01', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903009731722474180973', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:01', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903010301722474181030', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:01', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903010421722474181042', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:01', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903010891722474181089', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:01', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903011111722474181111', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:01', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903011471722474181147', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:01', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903011631722474181163', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:01', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903012841722474181284', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:01', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903012851722474181285', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:01', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903013031722474181303', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:01', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903013441722474181344', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:01', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903013631722474181363', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:01', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903014221722474181422', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:01', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903014831722474181483', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:01', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903014841722474181484', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:01', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903015031722474181503', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:02', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903015861722474181586', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:02', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903016021722474181602', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:02', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903016631722474181663', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:02', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903017271722474181727', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:02', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903017421722474181742', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:02', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903018031722474181803', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:02', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903018051722474181805', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:02', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903018221722474181822', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:02', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903018821722474181882', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:02', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903020031722474182003', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:02', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903020091722474182009', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:02', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903020221722474182022', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:02', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903020671722474182067', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:02', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903020841722474182084', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:02', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903021251722474182125', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:02', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903021421722474182142', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:02', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903022231722474182223', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:02', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903022461722474182246', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:02', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903023531722474182353', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:02', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903023571722474182357', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:02', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903023721722474182372', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:02', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903024521722474182452', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:02', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903024551722474182455', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:02', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903024711722474182471', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:02', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903025211722474182521', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:03', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903025391722474182539', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:03', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903025931722474182593', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:03', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903027121722474182712', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:03', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903027171722474182717', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:03', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903027311722474182731', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:03', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903027771722474182777', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:03', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903027921722474182792', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:03', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903028371722474182837', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:03', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903028521722474182852', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:03', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903029001722474182900', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:03', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903029121722474182912', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:03', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903030331722474183033', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:03', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903030351722474183035', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:03', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903030521722474183052', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:03', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903031141722474183114', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:03', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903031321722474183132', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:03', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903031781722474183178', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:03', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903031921722474183192', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:03', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903032371722474183237', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:03', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903032601722474183260', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:03', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903033731722474183373', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:03', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903033761722474183376', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:03', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903033931722474183393', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:03', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903034361722474183436', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:03', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903034531722474183453', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:03', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903034951722474183495', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:03', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903035121722474183512', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:04', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903035551722474183555', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:04', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903035721722474183572', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:04', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903036721722474183672', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:04', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903036931722474183693', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:04', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903037261722474183726', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:04', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903037421722474183742', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:04', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903037931722474183793', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:04', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903038231722474183823', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:04', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903038831722474183883', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:04', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903038871722474183887', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:04', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903039021722474183902', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:04', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903040141722474184014', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:04', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903040151722474184015', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:04', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903040331722474184033', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:04', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903041121722474184112', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:04', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903041151722474184115', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:04', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903041321722474184132', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:04', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903041811722474184181', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:04', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903041921722474184192', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:04', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903042521722474184252', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:04', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903043741722474184374', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:04', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903043781722474184378', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:04', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903043921722474184392', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:04', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903044351722474184435', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:04', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903044531722474184453', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:04', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903044961722474184496', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:04', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903045131722474184513', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:05', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903045591722474184559', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:05', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903045721722474184572', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:05', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903046761722474184676', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:05', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903046921722474184692', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:05', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903047341722474184734', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:05', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903047521722474184752', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:05', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903047941722474184794', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:05', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903048121722474184812', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:05', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903048541722474184854', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:05', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903048721722474184872', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:05', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903049321722474184932', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:05', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903050251722474185025', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:05', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903050431722474185043', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:05', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903050861722474185086', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:05', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903051021722474185102', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:05', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903051471722474185147', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:05', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903051611722474185161', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:05', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903052071722474185207', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:05', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903052211722474185221', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:05', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903052831722474185283', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:05', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903054021722474185402', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:05', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903054051722474185405', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:05', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903054221722474185422', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:05', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903054661722474185466', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:05', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903054821722474185482', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:05', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903055621722474185562', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:06', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903055631722474185563', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:06', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903055831722474185583', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:06', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903056431722474185643', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:06', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903057491722474185749', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:06', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903057621722474185762', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:06', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903058071722474185807', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:06', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903058231722474185823', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:06', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903059031722474185903', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:06', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903059141722474185914', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:06', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903059221722474185922', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:06', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903060021722474186002', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:06', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903060231722474186023', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:06', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903061051722474186105', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:06', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903061221722474186122', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:06', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903061681722474186168', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:06', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903061871722474186187', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:06', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903062261722474186226', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:06', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903062411722474186241', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:06', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903062851722474186285', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:06', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903063011722474186301', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:06', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903063821722474186382', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:06', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903064841722474186484', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:06', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903065021722474186502', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:07', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903065521722474186552', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:07', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903065791722474186579', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:07', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903066021722474186602', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:07', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903066631722474186663', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:07', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903066671722474186667', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:07', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903066821722474186682', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:07', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903067621722474186762', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:07', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903068821722474186882', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:07', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903069001722474186900', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:07', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903069221722474186922', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:07', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903069641722474186964', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:07', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903069821722474186982', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:07', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903070231722474187023', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:07', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903070421722474187042', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:07', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903070841722474187084', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:07', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903071021722474187102', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:07', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903071971722474187197', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:07', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903072121722474187212', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:07', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903072551722474187255', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:07', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903072721722474187272', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:07', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903073161722474187316', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:07', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903073311722474187331', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:07', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903073751722474187375', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:07', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903073991722474187399', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:07', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903074511722474187451', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:07', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903075351722474187535', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:08', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903075511722474187551', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:08', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903075951722474187595', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:08', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903076201722474187620', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:08', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903076581722474187658', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:08', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903076721722474187672', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:08', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903077171722474187717', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:08', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903077321722474187732', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:08', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903077931722474187793', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:08', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903079441722474187944', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:08', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903079491722474187949', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:08', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903079611722474187961', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:08', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903080441722474188044', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:08', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903080461722474188046', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:08', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903080621722474188062', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:08', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903081051722474188105', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:08', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903081221722474188122', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:08', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903081831722474188183', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:08', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903083021722474188302', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:08', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903083031722474188303', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:08', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903083211722474188321', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:08', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903083661722474188366', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:08', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903083821722474188382', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:08', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903084271722474188427', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:08', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903084491722474188449', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:08', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903084871722474188487', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:08', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903085011722474188501', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:09', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903086231722474188623', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:09', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903086261722474188626', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:09', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903086421722474188642', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:09', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903086881722474188688', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:09', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903087031722474188703', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:09', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903087461722474188746', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:09', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903087611722474188761', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:09', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903088041722474188804', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:09', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903088221722474188822', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:09', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903089211722474188921', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:09', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903089421722474188942', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:09', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903089841722474188984', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:09', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903090011722474189001', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:09', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903090461722474189046', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:09', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903090641722474189064', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:09', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903091341722474189134', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:09', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903091381722474189138', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:09', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903091571722474189157', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:09', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903092731722474189273', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:09', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903092751722474189275', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:09', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903092921722474189292', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:09', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903093351722474189335', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:09', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903093541722474189354', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:09', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903093981722474189398', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:09', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903094111722474189411', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:09', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903094931722474189493', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:09', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903095121722474189512', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:10', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903096051722474189605', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:10', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903096221722474189622', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:10', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903096821722474189682', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:10', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903096851722474189685', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:10', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903097021722474189702', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:10', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903097641722474189764', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:10', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903097671722474189767', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:10', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903097831722474189783', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:10', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903098411722474189841', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:10', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903305111722474210511', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:31', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903305131722474210513', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:31', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903305291722474210529', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:31', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903305301722474210530', 'Wcs请求载具入库', 'wcsVehicleIn', '[{\"point\": \"R1\", \"remark\": \"\", \"vehicleNo\": \"ASRS000143\", \"codeMessage\": \"ASRS000143\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求载具入库发生错误:当前载具没有入库或回库任务\\\"}\"', '192.168.8.62', '2024-08-01 09:03:31', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903305451722474210545', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:31', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903305601722474210560', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:31', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903305751722474210575', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:31', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903305901722474210590', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:31', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903306041722474210604', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:31', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903306711722474210671', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:31', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903307791722474210779', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:31', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903307891722474210789', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:31', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903308101722474210810', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:31', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903308651722474210865', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:31', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903308741722474210874', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:31', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903308831722474210883', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:31', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903309311722474210931', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:31', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903309451722474210945', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:31', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903310011722474211001', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:31', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903311111722474211111', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:31', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903311511722474211151', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:31', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903311611722474211161', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:31', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903311931722474211193', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:31', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903312111722474211211', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:31', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903312681722474211268', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:31', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903312771722474211277', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:31', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903312861722474211286', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:31', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903314211722474211421', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:31', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903315421722474211542', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:32', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903315501722474211550', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:32', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903316121722474211612', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:32', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903316271722474211627', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:32', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903316781722474211678', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:32', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903316831722474211683', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:32', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903317011722474211701', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:32', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903317541722474211754', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:32', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903317671722474211767', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:32', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903318951722474211895', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:32', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903319081722474211908', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:32', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903319541722474211954', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:32', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903319701722474211970', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:32', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903320391722474212039', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:32', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903320481722474212048', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:32', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903320901722474212090', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:32', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903321011722474212101', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:32', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903321211722474212121', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:32', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903322311722474212231', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:32', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903322331722474212233', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:32', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903322971722474212297', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:32', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903323101722474212310', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:32', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903323661722474212366', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:32', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903323741722474212374', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:32', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903324321722474212432', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:32', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903324441722474212444', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:32', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903324601722474212460', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:32', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903325731722474212573', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:33', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903325761722474212576', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:33', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903326411722474212641', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:33', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903326551722474212655', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:33', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903326931722474212693', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:33', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903327101722474212710', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:33', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903327681722474212768', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:33', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903327791722474212779', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:33', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903328021722474212802', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:33', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903329101722474212910', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:33', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903329181722474212918', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:33', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903329751722474212975', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:33', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903329821722474212982', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:33', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903330451722474213045', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:33', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903330591722474213059', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:33', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903331111722474213111', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:33', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903331121722474213112', 'Wcs上报箱子到达', 'boxArrive', '[{\"remark\": \"\", \"location\": \"\", \"taskGroup\": \"\", \"vehicleNo\": \"ASRS000150\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数不全,载具号和站台号不可缺少\\\"}\"', '192.168.8.62', '2024-08-01 09:03:33', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903331161722474213116', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:33', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903331211722474213121', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:33', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903331291722474213129', 'Wcs上报箱子到达', 'boxArrive', '[{\"remark\": \"\", \"location\": \"\", \"taskGroup\": \"\", \"vehicleNo\": \"ASRS000138\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数不全,载具号和站台号不可缺少\\\"}\"', '192.168.8.62', '2024-08-01 09:03:33', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903332511722474213251', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:33', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903332521722474213252', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:33', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903332561722474213256', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:33', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903332621722474213262', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:33', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903333221722474213322', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:33', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903333241722474213324', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:33', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903333881722474213388', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:33', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903333961722474213396', 'Wcs上报箱子到达', 'boxArrive', '[{\"remark\": \"\", \"location\": \"\", \"taskGroup\": \"\", \"vehicleNo\": \"ASRS000178\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数不全,载具号和站台号不可缺少\\\"}\"', '192.168.8.62', '2024-08-01 09:03:33', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903334001722474213400', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:33', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903334211722474213421', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:33', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903335251722474213525', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:34', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903335411722474213541', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:34', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903335961722474213596', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:34', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903336031722474213603', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:34', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903336611722474213661', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:34', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903336831722474213683', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:34', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903337291722474213729', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:34', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903337321722474213732', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:34', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903337421722474213742', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:34', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903338681722474213868', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:34', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903338841722474213884', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:34', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903339341722474213934', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:34', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903339421722474213942', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:34', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903339611722474213961', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:34', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903340011722474214001', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:34', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903340081722474214008', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:34', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903340581722474214058', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:34', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903340711722474214071', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:34', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903342681722474214268', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:34', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903342771722474214277', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:34', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903342791722474214279', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:34', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903343431722474214343', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:34', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903343441722474214344', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:34', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903343591722474214359', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:34', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903344401722474214440', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:34', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903344491722474214449', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:34', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903344601722474214460', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:34', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903345441722474214544', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:35', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903345601722474214560', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:35', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903346091722474214609', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:35', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903346201722474214620', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:35', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903346811722474214681', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:35', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903346841722474214684', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:35', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903347011722474214701', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:35', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903347431722474214743', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:35', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903347601722474214760', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:35', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903348621722474214862', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:35', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903348691722474214869', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:35', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903348811722474214881', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:35', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903349421722474214942', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:35', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903349461722474214946', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:35', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903349601722474214960', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:35', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903350041722474215004', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:35', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903350201722474215020', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:35', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903350801722474215080', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:35', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903351811722474215181', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:35', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903351941722474215194', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:35', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903352001722474215200', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:35', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903352611722474215261', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:35', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903352631722474215263', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:35', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903352811722474215281', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:35', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903353231722474215323', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:35', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903353401722474215340', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:35', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903354011722474215401', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:35', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903355211722474215521', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:36', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903355231722474215523', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:36', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903355401722474215540', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:36', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903356011722474215601', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:36', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903356171722474215617', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:36', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903356201722474215620', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:36', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903356631722474215663', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:36', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903356801722474215680', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:36', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903357401722474215740', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:36', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903358621722474215862', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:36', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903358791722474215879', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:36', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903358801722474215880', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:36', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903359231722474215923', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:36', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903359401722474215940', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:36', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903359841722474215984', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:36', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903360001722474216000', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:36', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903360431722474216043', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:36', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903360601722474216060', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:36', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903361191722474216119', 'Wcs上报箱子到达', 'boxArrive', '[{\"remark\": \"\", \"location\": \"\", \"taskGroup\": \"\", \"vehicleNo\": \"ASRS000001\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数不全,载具号和站台号不可缺少\\\"}\"', '192.168.8.62', '2024-08-01 09:03:36', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903361221722474216122', 'Wcs上报箱子到达', 'boxArrive', '[{\"remark\": \"\", \"location\": \"\", \"taskGroup\": \"\", \"vehicleNo\": \"ASRS000172\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数不全,载具号和站台号不可缺少\\\"}\"', '192.168.8.62', '2024-08-01 09:03:36', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903361401722474216140', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:36', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903361841722474216184', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:36', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903362001722474216200', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:36', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903362431722474216243', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:36', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903362601722474216260', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:36', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903363221722474216322', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:36', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903363291722474216329', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:36', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903363401722474216340', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:36', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903364001722474216400', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:36', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903365221722474216522', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:37', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903365231722474216523', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:37', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903365401722474216540', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:37', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903365831722474216583', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:37', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903366001722474216600', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:37', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903366441722474216644', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:37', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903366601722474216660', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:37', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903367031722474216703', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:37', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903367201722474216720', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:37', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903368031722474216803', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:37', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903368201722474216820', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:37', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903368631722474216863', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:37', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903368801722474216880', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:37', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903369211722474216921', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:37', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903369401722474216940', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:37', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903369861722474216986', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:37', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903370001722474217000', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:37', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903370601722474217060', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:37', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903371811722474217181', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:37', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903371881722474217188', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:37', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903372001722474217200', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:37', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903372431722474217243', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:37', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903372591722474217259', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:37', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903373031722474217303', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:37', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903373201722474217320', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:37', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903373631722474217363', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:37', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903373821722474217382', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:37', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903374711722474217471', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:37', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903374901722474217490', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:37', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903375351722474217535', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:38', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903375501722474217550', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:38', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903375931722474217593', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:38', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903376101722474217610', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:38', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903376701722474217670', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:38', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903376731722474217673', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:38', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903376911722474217691', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:38', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903377911722474217791', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:38', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903377921722474217792', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:38', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903378101722474217810', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:38', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903378611722474217861', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:38', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903378751722474217875', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:38', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903379301722474217930', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:38', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903379331722474217933', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:38', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903379491722474217949', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:38', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903380311722474218031', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:38', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903381511722474218151', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:38', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903381531722474218153', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:38', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903381701722474218170', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:38', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903382121722474218212', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:38', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903382301722474218230', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:38', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903382751722474218275', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:38', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903382901722474218290', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:38', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903383331722474218333', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:38', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903383501722474218350', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:38', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903384721722474218472', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:38', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903384761722474218476', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:38', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903384891722474218489', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:38', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903385331722474218533', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:39', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903385501722474218550', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:39', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903385921722474218592', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:39', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903386091722474218609', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:39', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903386531722474218653', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:39', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903386701722474218670', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:39', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903387551722474218755', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:39', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903387701722474218770', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:39', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903388111722474218811', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:39', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903388301722474218830', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:39', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903388731722474218873', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:39', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903388911722474218891', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:39', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903389331722474218933', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:39', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903389481722474218948', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:39', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903390111722474219011', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:39', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903391311722474219131', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:39', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903391371722474219137', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:39', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903391511722474219151', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:39', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903391931722474219193', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:39', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903392101722474219210', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:39', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903392541722474219254', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:39', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903392701722474219270', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:39', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903393141722474219314', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:39', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903393301722474219330', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:39', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903394501722474219450', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:39', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903394541722474219454', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:39', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903394711722474219471', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:39', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903395301722474219530', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:40', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903395331722474219533', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:40', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903395501722474219550', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:40', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903395911722474219591', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:40', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903396101722474219610', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:40', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903396711722474219671', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:40', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903397911722474219791', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:40', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903397941722474219794', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:40', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903398121722474219812', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:40', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903398711722474219871', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:40', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903398731722474219873', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:40', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903398901722474219890', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:40', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903399601722474219960', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:40', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903399621722474219962', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:40', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903399801722474219980', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:40', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903400631722474220063', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:40', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903400801722474220080', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:40', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903401211722474220121', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:40', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903401381722474220138', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:40', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903401811722474220181', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:40', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903401981722474220198', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:40', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903402471722474220247', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:40', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903402591722474220259', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:40', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903403211722474220321', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:40', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903404201722474220420', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:40', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903404211722474220421', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:40', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903404391722474220439', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:40', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903405001722474220500', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:41', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903405141722474220514', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:41', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903405181722474220518', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:41', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903405621722474220562', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:41', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903405801722474220580', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:41', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903406401722474220640', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:41', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903407221722474220722', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:41', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903407401722474220740', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:41', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903407821722474220782', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:41', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903408001722474220800', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:41', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903408431722474220843', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:41', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903408591722474220859', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:41', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903409021722474220902', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:41', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903409201722474220920', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:41', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903409801722474220980', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:41', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903411021722474221102', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:41', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903411071722474221107', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:41', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903411201722474221120', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:41', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903411611722474221161', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:41', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903411901722474221190', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:41', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903412381722474221238', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:41', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903412511722474221251', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:41', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903412591722474221259', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:41', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903412801722474221280', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:41', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903413891722474221389', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:41', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903413921722474221392', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:41', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903414101722474221410', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:41', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903414521722474221452', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:41', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903414701722474221470', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:41', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903415301722474221530', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:42', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903415311722474221531', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:42', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903415511722474221551', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:42', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903416111722474221611', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:42', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903417111722474221711', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:42', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903417121722474221712', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:42', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903417301722474221730', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:42', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903417911722474221791', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:42', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903417921722474221792', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:42', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903418091722474221809', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:42', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903418541722474221854', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:42', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903418701722474221870', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:42', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903419291722474221929', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:42', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903420241722474222024', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:42', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903420401722474222040', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:42', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903420801722474222080', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:42', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903421011722474222101', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:42', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903421621722474222162', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:42', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903421631722474222163', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:42', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903421791722474222179', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:42', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903422241722474222224', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:42', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903422391722474222239', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:42', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903423201722474222320', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:42', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903423381722474222338', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:42', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903423821722474222382', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:42', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903423991722474222399', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:42', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903424431722474222443', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:42', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903424591722474222459', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:42', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903425021722474222502', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:43', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903425201722474222520', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:43', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903425821722474222582', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:43', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903426711722474222671', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:43', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903426891722474222689', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:43', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903427321722474222732', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:43', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903427521722474222752', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:43', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903427921722474222792', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:43', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903428091722474222809', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:43', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903428571722474222857', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:43', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903428721722474222872', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:43', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903429501722474222950', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:43', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903430701722474223070', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:43', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903430791722474223079', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:43', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903430881722474223088', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:43', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903431321722474223132', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:43', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903431491722474223149', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:43', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903431931722474223193', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:43', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903432091722474223209', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:43', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903432531722474223253', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:43', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903432691722474223269', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:43', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903433901722474223390', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:43', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903433951722474223395', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:43', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903434101722474223410', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:43', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903434531722474223453', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:43', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903434691722474223469', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:43', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903435121722474223512', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:44', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903435301722474223530', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:44', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903435921722474223592', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:44', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903436101722474223610', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:44', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903437021722474223702', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:44', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903437201722474223720', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:44', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903437621722474223762', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:44', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903437801722474223780', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:44', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903438221722474223822', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:44', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903438401722474223840', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:44', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903438821722474223882', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:44', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903439001722474223900', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:44', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903439601722474223960', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:44', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903440421722474224042', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:44', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903440591722474224059', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:44', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903441021722474224102', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:44', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903441191722474224119', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:44', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903441611722474224161', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:44', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903441791722474224179', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:44', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903442221722474224222', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:44', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903442391722474224239', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:44', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903443001722474224300', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:44', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903444201722474224420', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:44', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903444211722474224421', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:44', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903444401722474224440', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:44', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903444821722474224482', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:44', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903445001722474224500', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:45', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903445421722474224542', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:45', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903445591722474224559', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:45', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903446201722474224620', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:45', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903446391722474224639', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:45', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903447351722474224735', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:45', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903447491722474224749', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:45', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903447921722474224792', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:45', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903448091722474224809', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:45', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903448521722474224852', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:45', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903448691722474224869', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:45', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903449301722474224930', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:45', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903449501722474224950', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:45', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903449521722474224952', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:45', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903450501722474225050', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:45', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903450511722474225051', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:45', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903450701722474225070', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:45', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903451501722474225150', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:45', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903451521722474225152', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:45', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903451691722474225169', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:45', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903452111722474225211', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:45', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903452301722474225230', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:45', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903452991722474225299', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:45', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903454051722474225405', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:45', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903454091722474225409', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:45', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903454101722474225410', 'Wcs请求载具入库', 'wcsVehicleIn', '[{\"point\": \"C4\", \"remark\": \"\", \"vehicleNo\": \"ASRS000140\", \"codeMessage\": \"ASRS000140\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求载具入库发生错误:当前载具没有入库或回库任务\\\"}\"', '192.168.8.62', '2024-08-01 09:03:45', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903454811722474225481', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:45', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903454821722474225482', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:45', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903455001722474225500', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:46', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903455601722474225560', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:46', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903455621722474225562', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:46', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903455871722474225587', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:46', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903456391722474225639', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:46', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903457601722474225760', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:46', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903457621722474225762', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:46', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903457801722474225780', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:46', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903458211722474225821', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:46', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903458391722474225839', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:46', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903458831722474225883', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:46', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903458991722474225899', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:46', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903459411722474225941', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:46', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903459591722474225959', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:46', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903460421722474226042', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:46', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903460591722474226059', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:46', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903461031722474226103', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:46', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903461201722474226120', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:46', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903461651722474226165', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:46', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903461801722474226180', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:46', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903462201722474226220', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:46', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903462521722474226252', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:46', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903462801722474226280', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:46', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903463831722474226383', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:46', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903464041722474226404', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:46', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903464201722474226420', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:46', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903464821722474226482', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:46', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903464951722474226495', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:46', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903465051722474226505', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:47', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903465421722474226542', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:47', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903465611722474226561', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:47', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903466201722474226620', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:47', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903467131722474226713', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:47', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903467321722474226732', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:47', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903467711722474226771', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:47', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903467891722474226789', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:47', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903468221722474226822', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:47', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903468291722474226829', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:47', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903469101722474226910', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:47', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903469171722474226917', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:47', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903469301722474226930', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:47', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903470231722474227023', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:47', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903470391722474227039', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:47', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903470831722474227083', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:47', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903470991722474227099', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:47', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903471421722474227142', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:47', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903471591722474227159', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:47', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903472011722474227201', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:47', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903472181722474227218', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:47', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903472801722474227280', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:47', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903473901722474227390', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:47', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903473931722474227393', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:47', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903474101722474227410', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:47', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903474521722474227452', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:47', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903474691722474227469', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:47', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903475121722474227512', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:48', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903475291722474227529', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:48', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903475721722474227572', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:48', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903475891722474227589', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:48', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903477001722474227700', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:48', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903477021722474227702', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:48', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903477191722474227719', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:48', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903477621722474227762', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:48', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903477791722474227779', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:48', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903478221722474227822', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:48', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903478411722474227841', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:48', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903478821722474227882', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:48', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903479001722474227900', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:48', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903479931722474227993', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:48', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903480091722474228009', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:48', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903480531722474228053', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:48', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903480691722474228069', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:48', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903481141722474228114', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:48', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903481291722474228129', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:48', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903481731722474228173', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:48', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903481891722474228189', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:48', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903482511722474228251', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:48', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903483331722474228333', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:48', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903483491722474228349', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:48', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903483921722474228392', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:48', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903484091722474228409', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:48', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903484521722474228452', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:48', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903484681722474228468', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:48', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903485121722474228512', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:49', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903485291722474228529', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:49', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903485901722474228590', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:49', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903487121722474228712', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:49', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903487171722474228717', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:49', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903487391722474228739', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:49', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903488091722474228809', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:49', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903488201722474228820', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:49', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903488361722474228836', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:49', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903488731722474228873', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:49', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903488891722474228889', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:49', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903489491722474228949', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:49', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903490341722474229034', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:49', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903490501722474229050', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:49', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903491101722474229110', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:49', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903491111722474229111', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:49', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903491301722474229130', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:49', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903491711722474229171', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:49', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903491891722474229189', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:49', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903492351722474229235', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:49', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903492491722474229249', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:49', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903493441722474229344', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:49', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903493591722474229359', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:49', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903494391722474229439', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:49', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903494421722474229442', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:49', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903494591722474229459', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:49', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903495011722474229501', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:50', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903495191722474229519', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:50', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903495641722474229564', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:50', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903495791722474229579', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:50', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903496411722474229641', 'Wcs请求载具入库', 'wcsVehicleIn', '[{\"point\": \"C4\", \"remark\": \"\", \"vehicleNo\": \"ASRS000179\", \"codeMessage\": \"ASRS000179\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求载具入库发生错误:当前载具没有入库或回库任务\\\"}\"', '192.168.8.62', '2024-08-01 09:03:50', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903497001722474229700', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:50', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903497011722474229701', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:50', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903497191722474229719', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:50', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903497621722474229762', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:50', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903497791722474229779', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:50', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903498221722474229822', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:50', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903498391722474229839', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:50', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903498841722474229884', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:50', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903498991722474229899', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:50', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903499601722474229960', 'Wcs请求载具入库', 'wcsVehicleIn', '[{\"point\": \"C4\", \"remark\": \"\", \"vehicleNo\": \"ASRS000179\", \"codeMessage\": \"ASRS000179\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求载具入库发生错误:当前载具没有入库或回库任务\\\"}\"', '192.168.8.62', '2024-08-01 09:03:50', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903500201722474230020', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:50', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903500211722474230021', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:50', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903500421722474230042', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:50', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903501191722474230119', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:50', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903501281722474230128', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:50', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903501501722474230150', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:50', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903502111722474230211', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:50', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903502121722474230212', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:50', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903502291722474230229', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:50', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903503601722474230360', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:50', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903503641722474230364', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:50', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903503791722474230379', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:50', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903504221722474230422', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:50', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903504381722474230438', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:50', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903504821722474230482', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:50', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903504981722474230498', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:50', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903505421722474230542', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:51', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903505591722474230559', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:51', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903506781722474230678', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:51', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903506811722474230681', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:51', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903506991722474230699', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:51', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903507431722474230743', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:51', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903507601722474230760', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:51', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903508031722474230803', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:51', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903508191722474230819', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:51', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903509001722474230900', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:51', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903509191722474230919', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:51', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903510251722474231025', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:51', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903510491722474231049', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:51', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903511091722474231109', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:51', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903511121722474231112', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:51', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903511311722474231131', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:51', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903511721722474231172', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:51', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903511891722474231189', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:51', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903512341722474231234', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:51', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903512511722474231251', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:51', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903513701722474231370', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:51', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903513731722474231373', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:51', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903513891722474231389', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:51', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903514351722474231435', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:51', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903514491722474231449', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:51', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903514931722474231493', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:51', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903515091722474231509', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:52', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903515631722474231563', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:52', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903515891722474231589', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:52', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903516731722474231673', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:52', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903516891722474231689', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:52', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903517701722474231770', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:52', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903517721722474231772', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:52', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903517891722474231789', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:52', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903518321722474231832', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:52', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903518491722474231849', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:52', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903519291722474231929', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:52', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903519511722474231951', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:52', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903520321722474232032', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:52', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903520491722474232049', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:52', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903520931722474232093', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:52', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903521081722474232108', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:52', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903521891722474232189', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:52', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903522001722474232200', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:52', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903522151722474232215', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:52', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903522551722474232255', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:52', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903522681722474232268', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:52', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903523541722474232354', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:52', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903523671722474232367', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:52', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903524491722474232449', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:52', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903524531722474232453', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:52', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903524691722474232469', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:52', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903525131722474232513', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:53', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903525281722474232528', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:53', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903525781722474232578', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:53', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903525891722474232589', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:53', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903527101722474232710', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:53', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903527281722474232728', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:53', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903527291722474232729', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:53', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903527731722474232773', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:53', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903527881722474232788', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:53', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903528311722474232831', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:53', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903528481722474232848', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:53', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903528921722474232892', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:53', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903529091722474232909', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:53', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903530301722474233030', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:53', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903530311722474233031', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:53', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903530531722474233053', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:53', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903530951722474233095', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:53', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903531091722474233109', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:53', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903531521722474233152', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:53', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903531681722474233168', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:53', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903532191722474233219', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:53', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903532291722474233229', 'Wcs请求载具入库', 'wcsVehicleIn', '[{\"point\": \"C4\", \"remark\": \"\", \"vehicleNo\": \"ASRS000180\", \"codeMessage\": \"ASRS000180\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求载具入库发生错误:当前载具没有入库或回库任务\\\"}\"', '192.168.8.62', '2024-08-01 09:03:53', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903532501722474233250', 'Wcs请求载具入库', 'wcsVehicleIn', '[{\"point\": \"C3\", \"remark\": \"\", \"vehicleNo\": \"ASRS000148\", \"codeMessage\": \"ASRS000148\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求载具入库发生错误:当前载具没有入库或回库任务\\\"}\"', '192.168.8.62', '2024-08-01 09:03:53', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903532651722474233265', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:53', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903533601722474233360', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:53', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903533611722474233361', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:53', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903533791722474233379', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:53', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903534601722474233460', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:53', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903534791722474233479', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:53', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903534951722474233495', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:53', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903535081722474233508', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:54', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903535111722474233511', 'Wcs请求载具入库', 'wcsVehicleIn', '[{\"point\": \"C3\", \"remark\": \"\", \"vehicleNo\": \"ASRS000148\", \"codeMessage\": \"ASRS000148\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求载具入库发生错误:当前载具没有入库或回库任务\\\"}\"', '192.168.8.62', '2024-08-01 09:03:54', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903535531722474233553', 'Wcs请求载具入库', 'wcsVehicleIn', '[{\"point\": \"C4\", \"remark\": \"\", \"vehicleNo\": \"ASRS000180\", \"codeMessage\": \"ASRS000180\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求载具入库发生错误:当前载具没有入库或回库任务\\\"}\"', '192.168.8.62', '2024-08-01 09:03:54', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903535561722474233556', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:54', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903535591722474233559', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:54', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903536431722474233643', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:54', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903536591722474233659', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:54', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903537021722474233702', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:54', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903537191722474233719', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:54', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903537621722474233762', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:54', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903537791722474233779', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:54', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903538221722474233822', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:54', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903538391722474233839', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:54', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903539191722474233919', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:54', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903540111722474234011', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:54', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903540281722474234028', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:54', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903540711722474234071', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:54', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903540891722474234089', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:54', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903541341722474234134', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:54', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903541481722474234148', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:54', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903541921722474234192', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:54', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903542081722474234208', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:54', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903542701722474234270', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:54', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903543811722474234381', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:54', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903544061722474234406', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:54', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903544411722474234441', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:54', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903544601722474234460', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:54', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903545011722474234501', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:55', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903545181722474234518', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:55', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903545621722474234562', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:55', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010903545791722474234579', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"\", \"vehicleId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '192.168.8.62', '2024-08-01 09:03:55', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010904043971722474244397', 'Wcs请求载具入库', 'wcsVehicleIn', '[{\"point\": \"C3\", \"remark\": \"\", \"vehicleNo\": \"ASRS000136\", \"codeMessage\": \"ASRS000136\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求载具入库发生错误:当前载具没有入库或回库任务\\\"}\"', '192.168.8.62', '2024-08-01 09:04:04', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010904044001722474244400', 'Wcs请求载具入库', 'wcsVehicleIn', '[{\"point\": \"C4\", \"remark\": \"\", \"vehicleNo\": \"ASRS000184\", \"codeMessage\": \"ASRS000184\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求载具入库发生错误:当前载具没有入库或回库任务\\\"}\"', '192.168.8.62', '2024-08-01 09:04:04', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010904064381722474246438', 'Wcs请求载具入库', 'wcsVehicleIn', '[{\"point\": \"C4\", \"remark\": \"\", \"vehicleNo\": \"ASRS000144\", \"codeMessage\": \"ASRS000144\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求载具入库发生错误:当前载具没有入库或回库任务\\\"}\"', '192.168.8.62', '2024-08-01 09:04:06', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010904067161722474246716', 'Wcs请求载具入库', 'wcsVehicleIn', '[{\"point\": \"C4\", \"remark\": \"\", \"vehicleNo\": \"ASRS000144\", \"codeMessage\": \"ASRS000144\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求载具入库发生错误:当前载具没有入库或回库任务\\\"}\"', '192.168.8.62', '2024-08-01 09:04:07', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010904067271722474246727', 'Wcs请求载具入库', 'wcsVehicleIn', '[{\"point\": \"C3\", \"remark\": \"\", \"vehicleNo\": \"ASRS000176\", \"codeMessage\": \"ASRS000176\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求载具入库发生错误:当前载具没有入库或回库任务\\\"}\"', '192.168.8.62', '2024-08-01 09:04:07', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010904070481722474247048', 'Wcs请求载具入库', 'wcsVehicleIn', '[{\"point\": \"C3\", \"remark\": \"\", \"vehicleNo\": \"ASRS000176\", \"codeMessage\": \"ASRS000176\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求载具入库发生错误:当前载具没有入库或回库任务\\\"}\"', '192.168.8.62', '2024-08-01 09:04:07', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010904085481722474248548', 'Wcs请求载具入库', 'wcsVehicleIn', '[{\"point\": \"C4\", \"remark\": \"\", \"vehicleNo\": \"ASRS000150\", \"codeMessage\": \"ASRS000150\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求载具入库发生错误:当前载具没有入库或回库任务\\\"}\"', '192.168.8.62', '2024-08-01 09:04:09', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010904088041722474248804', 'Wcs请求载具入库', 'wcsVehicleIn', '[{\"point\": \"C3\", \"remark\": \"\", \"vehicleNo\": \"ASRS000117\", \"codeMessage\": \"ASRS000117\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求载具入库发生错误:当前载具没有入库或回库任务\\\"}\"', '192.168.8.62', '2024-08-01 09:04:09', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010904088051722474248805', 'Wcs请求载具入库', 'wcsVehicleIn', '[{\"point\": \"C4\", \"remark\": \"\", \"vehicleNo\": \"ASRS000150\", \"codeMessage\": \"ASRS000150\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求载具入库发生错误:当前载具没有入库或回库任务\\\"}\"', '192.168.8.62', '2024-08-01 09:04:09', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010904091611722474249161', 'Wcs请求载具入库', 'wcsVehicleIn', '[{\"point\": \"C3\", \"remark\": \"\", \"vehicleNo\": \"ASRS000117\", \"codeMessage\": \"ASRS000117\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求载具入库发生错误:当前载具没有入库或回库任务\\\"}\"', '192.168.8.62', '2024-08-01 09:04:09', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010904106491722474250649', 'Wcs请求载具入库', 'wcsVehicleIn', '[{\"point\": \"C4\", \"remark\": \"\", \"vehicleNo\": \"ASRS000172\", \"codeMessage\": \"ASRS000172\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求载具入库发生错误:当前载具没有入库或回库任务\\\"}\"', '192.168.8.62', '2024-08-01 09:04:11', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010904109421722474250942', 'Wcs请求载具入库', 'wcsVehicleIn', '[{\"point\": \"C4\", \"remark\": \"\", \"vehicleNo\": \"ASRS000172\", \"codeMessage\": \"ASRS000172\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求载具入库发生错误:当前载具没有入库或回库任务\\\"}\"', '192.168.8.62', '2024-08-01 09:04:11', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010904115401722474251540', 'Wcs请求载具入库', 'wcsVehicleIn', '[{\"point\": \"C3\", \"remark\": \"\", \"vehicleNo\": \"ASRS000138\", \"codeMessage\": \"ASRS000138\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求载具入库发生错误:当前载具没有入库或回库任务\\\"}\"', '192.168.8.62', '2024-08-01 09:04:12', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010904118471722474251847', 'Wcs请求载具入库', 'wcsVehicleIn', '[{\"point\": \"C3\", \"remark\": \"\", \"vehicleNo\": \"ASRS000138\", \"codeMessage\": \"ASRS000138\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求载具入库发生错误:当前载具没有入库或回库任务\\\"}\"', '192.168.8.62', '2024-08-01 09:04:12', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010904151381722474255138', 'Wcs请求载具入库', 'wcsVehicleIn', '[{\"point\": \"C3\", \"remark\": \"\", \"vehicleNo\": \"ASRS000001\", \"codeMessage\": \"ASRS000001\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求载具入库发生错误:当前载具没有入库或回库任务\\\"}\"', '192.168.8.62', '2024-08-01 09:04:15', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010904151571722474255157', 'Wcs请求载具入库', 'wcsVehicleIn', '[{\"point\": \"C4\", \"remark\": \"\", \"vehicleNo\": \"ASRS000185\", \"codeMessage\": \"ASRS000185\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求载具入库发生错误:当前载具没有入库或回库任务\\\"}\"', '192.168.8.62', '2024-08-01 09:04:15', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010904154581722474255458', 'Wcs请求载具入库', 'wcsVehicleIn', '[{\"point\": \"C3\", \"remark\": \"\", \"vehicleNo\": \"ASRS000001\", \"codeMessage\": \"ASRS000001\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求载具入库发生错误:当前载具没有入库或回库任务\\\"}\"', '192.168.8.62', '2024-08-01 09:04:15', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010904154781722474255478', 'Wcs请求载具入库', 'wcsVehicleIn', '[{\"point\": \"C4\", \"remark\": \"\", \"vehicleNo\": \"ASRS000185\", \"codeMessage\": \"ASRS000185\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求载具入库发生错误:当前载具没有入库或回库任务\\\"}\"', '192.168.8.62', '2024-08-01 09:04:15', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010904286381722474268638', 'Wcs请求载具入库', 'wcsVehicleIn', '[{\"point\": \"C3\", \"remark\": \"\", \"vehicleNo\": \"ASRS000144\", \"codeMessage\": \"ASRS000144\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求载具入库发生错误:当前载具没有入库或回库任务\\\"}\"', '192.168.8.62', '2024-08-01 09:04:29', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010904289381722474268938', 'Wcs请求载具入库', 'wcsVehicleIn', '[{\"point\": \"C3\", \"remark\": \"\", \"vehicleNo\": \"ASRS000144\", \"codeMessage\": \"ASRS000144\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求载具入库发生错误:当前载具没有入库或回库任务\\\"}\"', '192.168.8.62', '2024-08-01 09:04:29', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010904292471722474269247', 'Wcs请求载具入库', 'wcsVehicleIn', '[{\"point\": \"C3\", \"remark\": \"\", \"vehicleNo\": \"ASRS000144\", \"codeMessage\": \"ASRS000144\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求载具入库发生错误:当前载具没有入库或回库任务\\\"}\"', '192.168.8.62', '2024-08-01 09:04:29', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010904292761722474269276', 'Wcs请求载具入库', 'wcsVehicleIn', '[{\"point\": \"C4\", \"remark\": \"\", \"vehicleNo\": \"ASRS000154\", \"codeMessage\": \"ASRS000154\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求载具入库发生错误:当前载具没有入库或回库任务\\\"}\"', '192.168.8.62', '2024-08-01 09:04:29', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010904295581722474269558', 'Wcs请求载具入库', 'wcsVehicleIn', '[{\"point\": \"C4\", \"remark\": \"\", \"vehicleNo\": \"ASRS000154\", \"codeMessage\": \"ASRS000154\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求载具入库发生错误:当前载具没有入库或回库任务\\\"}\"', '192.168.8.62', '2024-08-01 09:04:30', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010904361581722474276158', 'Wcs请求载具入库', 'wcsVehicleIn', '[{\"point\": \"C3\", \"remark\": \"\", \"vehicleNo\": \"ASRS000178\", \"codeMessage\": \"ASRS000178\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求载具入库发生错误:当前载具没有入库或回库任务\\\"}\"', '192.168.8.62', '2024-08-01 09:04:36', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010904364451722474276445', 'Wcs请求载具入库', 'wcsVehicleIn', '[{\"point\": \"C3\", \"remark\": \"\", \"vehicleNo\": \"ASRS000178\", \"codeMessage\": \"ASRS000178\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求载具入库发生错误:当前载具没有入库或回库任务\\\"}\"', '192.168.8.62', '2024-08-01 09:04:36', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010904425361722474282536', 'Wcs上报箱子到达', 'boxArrive', '[{\"remark\": \"\", \"location\": \"\", \"taskGroup\": \"\", \"vehicleNo\": \"ASRS000144\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数不全,载具号和站台号不可缺少\\\"}\"', '192.168.8.62', '2024-08-01 09:04:43', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010904499761722474289976', 'Wcs请求载具入库', 'wcsVehicleIn', '[{\"point\": \"C3\", \"remark\": \"\", \"vehicleNo\": \"ASRS000154\", \"codeMessage\": \"ASRS000154\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求载具入库发生错误:当前载具没有入库或回库任务\\\"}\"', '192.168.8.62', '2024-08-01 09:04:50', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010904502571722474290257', 'Wcs请求载具入库', 'wcsVehicleIn', '[{\"point\": \"C3\", \"remark\": \"\", \"vehicleNo\": \"ASRS000154\", \"codeMessage\": \"ASRS000154\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求载具入库发生错误:当前载具没有入库或回库任务\\\"}\"', '192.168.8.62', '2024-08-01 09:04:50', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010904517451722474291745', 'Wcs请求载具入库', 'wcsVehicleIn', '[{\"point\": \"R1\", \"remark\": \"\", \"vehicleNo\": \"ASRS000143\", \"codeMessage\": \"ASRS000143\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求载具入库发生错误:当前载具没有入库或回库任务\\\"}\"', '192.168.8.62', '2024-08-01 09:04:52', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010904520561722474292056', 'Wcs请求载具入库', 'wcsVehicleIn', '[{\"point\": \"R1\", \"remark\": \"\", \"vehicleNo\": \"ASRS000143\", \"codeMessage\": \"ASRS000143\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求载具入库发生错误:当前载具没有入库或回库任务\\\"}\"', '192.168.8.62', '2024-08-01 09:04:52', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010905055441722474305544', 'Wcs上报箱子到达', 'boxArrive', '[{\"remark\": \"\", \"location\": \"\", \"taskGroup\": \"\", \"vehicleNo\": \"ASRS000154\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数不全,载具号和站台号不可缺少\\\"}\"', '192.168.8.62', '2024-08-01 09:05:06', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010907343551722474454355', 'Wcs请求载具入库', 'wcsVehicleIn', '[{\"point\": \"R1\", \"remark\": \"\", \"vehicleNo\": \"ASRS000143\", \"codeMessage\": \"ASRS000143\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求载具入库发生错误:当前载具没有入库或回库任务\\\"}\"', '192.168.8.62', '2024-08-01 09:07:34', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010907346571722474454657', 'Wcs请求载具入库', 'wcsVehicleIn', '[{\"point\": \"R1\", \"remark\": \"\", \"vehicleNo\": \"ASRS000143\", \"codeMessage\": \"ASRS000143\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求载具入库发生错误:当前载具没有入库或回库任务\\\"}\"', '192.168.8.62', '2024-08-01 09:07:35', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010913508301722474830830', 'Wcs上报箱子到达', 'boxArrive', '[{\"remark\": \"\", \"location\": \"\", \"taskGroup\": \"\", \"vehicleNo\": \"ASRS000143\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数不全,载具号和站台号不可缺少\\\"}\"', '192.168.8.62', '2024-08-01 09:13:51', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010926439671722475603967', '向WCS发送释放箱子请求', 'URL_WCS_DISPOSE_VEHICLE', '\"{\\\"location\\\":\\\"ASRS-#2\\\"}\"', '\"{\\\"code\\\":0,\\\"message\\\":\\\"操作成功\\\"}\"', 'http://192.168.8.62:18990/api/wms/convey/disposeVehicle', '2024-08-01 09:26:44', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010926439811722475603981', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"ASRS-#2\", \"vehicleNo\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"确认成功,放行\\\"}\"', '192.168.8.62', '2024-08-01 09:26:44', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010927143031722475634303', 'Wcs请求载具入库', 'wcsVehicleIn', '[{\"point\": \"C3\", \"remark\": \"\", \"vehicleNo\": \"ASRS000144\", \"codeMessage\": \"ASRS000144\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求载具入库发生错误:当前载具没有入库或回库任务\\\"}\"', '192.168.8.62', '2024-08-01 09:27:14', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010927145581722475634558', 'Wcs请求载具入库', 'wcsVehicleIn', '[{\"point\": \"C3\", \"remark\": \"\", \"vehicleNo\": \"ASRS000144\", \"codeMessage\": \"ASRS000144\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求载具入库发生错误:当前载具没有入库或回库任务\\\"}\"', '192.168.8.62', '2024-08-01 09:27:15', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010928390361722475719036', '入库请求', 'requestIn', '[{\"userName\": \"管理员\", \"goodsList\": [], \"vehicleId\": \"ASRS000148\", \"originPoint\": \"\", \"totalWeight\": null}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"接收入库请求成功!\\\"}\"', '127.0.0.1', '2024-08-01 09:28:39', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010928515311722475731531', 'Wcs请求载具入库', 'wcsVehicleIn', '[{\"point\": \"R1\", \"remark\": \"\", \"vehicleNo\": \"ASRS000148\", \"codeMessage\": \"ASRS000148\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理载具入库请求成功!\\\"}\"', '192.168.8.62', '2024-08-01 09:28:52', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010928517551722475731755', 'Wcs请求载具入库', 'wcsVehicleIn', '[{\"point\": \"R1\", \"remark\": \"\", \"vehicleNo\": \"ASRS000148\", \"codeMessage\": \"ASRS000148\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求载具入库发生错误:当前载具没有入库或回库任务\\\"}\"', '192.168.8.62', '2024-08-01 09:28:52', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010928530511722475733051', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"03-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408010928390301722475719030\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000148\\\",\\\"vehicleSize\\\":1}]\"', '\"{\\\"code\\\":0,\\\"message\\\":\\\"任务创建成功,任务号:202408010928390301722475719030\\\",\\\"returnData\\\":[]}\"', 'http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-01 09:28:53', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408010929119861722475751986', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408010928390301722475719030\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000148\", \"taskStatus\": 2, \"destination\": \"03-01-01-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-01 09:29:12', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408011112578801722481977880', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408010928390301722475719030\", \"message\": \"任务被PLC取消\", \"vehicleNo\": \"ASRS000148\", \"taskStatus\": 999, \"destination\": \"03-01-01-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-01 11:12:58', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408011112583991722481978399', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408010928390301722475719030\", \"message\": \"任务被PLC取消\", \"vehicleNo\": \"ASRS000148\", \"taskStatus\": 999, \"destination\": \"03-01-01-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-01 11:12:58', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408011242204601722487340460', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408010928390301722475719030\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000148\", \"taskStatus\": 100, \"destination\": \"03-01-01-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-01 12:42:20', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408011243061251722487386125', '呼叫空箱', 'callEmptyVehicle', '[{\"goodsId\": \"\", \"needNum\": 1, \"userName\": \"管理员\", \"vehicleType1\": \"\", \"vehicleType2\": \"CLC一箱一料\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"呼叫空箱成功,请等待箱子出库。\\\"}\"', '127.0.0.1', '2024-08-01 12:43:06', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408011243069361722487386936', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408011243061031722487386103\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000148\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":0,\\\"message\\\":\\\"任务创建成功,任务号:202408011243061031722487386103\\\",\\\"returnData\\\":[]}\"', 'http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-01 12:43:07', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408011243079321722487387932', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408011243061031722487386103\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000148\", \"taskStatus\": 2, \"destination\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-01 12:43:08', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408011243341311722487414131', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408011243061031722487386103\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000148\", \"taskStatus\": 100, \"destination\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-01 12:43:34', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408011254288571722488068857', '入库请求', 'requestIn', '[{\"userName\": \"管理员\", \"goodsList\": [{\"weight\": null, \"goodsId\": \"123456789/CS\", \"goodsNum\": 2, \"goodsDesc\": \"\", \"goodsName\": \"\", \"goodsType\": \"\", \"goodsUnit\": \"\", \"singleWeight\": null}], \"vehicleId\": \"ASRS000136\", \"originPoint\": \"\", \"totalWeight\": null}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"接收入库请求成功!\\\"}\"', '127.0.0.1', '2024-08-01 12:54:29', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408011254415981722488081598', 'Wcs请求载具入库', 'wcsVehicleIn', '[{\"point\": \"R1\", \"remark\": \"\", \"vehicleNo\": \"ASRS000136\", \"codeMessage\": \"ASRS000136\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理载具入库请求成功!\\\"}\"', '192.168.8.62', '2024-08-01 12:54:42', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408011254418251722488081825', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"01-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408011254288511722488068851\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000136\\\",\\\"vehicleSize\\\":1}]\"', '\"{\\\"code\\\":0,\\\"message\\\":\\\"任务创建成功,任务号:202408011254288511722488068851\\\",\\\"returnData\\\":[]}\"', 'http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-01 12:54:42', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408011254418461722488081846', 'Wcs请求载具入库', 'wcsVehicleIn', '[{\"point\": \"R1\", \"remark\": \"\", \"vehicleNo\": \"ASRS000136\", \"codeMessage\": \"ASRS000136\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求载具入库发生错误:当前载具没有入库或回库任务\\\"}\"', '192.168.8.62', '2024-08-01 12:54:42', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408011255042701722488104270', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408011254288511722488068851\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000136\", \"taskStatus\": 2, \"destination\": \"01-01-01-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-01 12:55:04', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408011256057951722488165795', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408011254288511722488068851\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000136\", \"taskStatus\": 100, \"destination\": \"01-01-01-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-01 12:56:06', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408011319149401722489554940', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408011319128841722489552884\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000136\\\"}]\"', '\"{\\\"code\\\":0,\\\"message\\\":\\\"任务创建成功,任务号:202408011319128841722489552884\\\",\\\"returnData\\\":[]}\"', 'http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-01 13:19:15', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408011319159711722489555971', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408011319128841722489552884\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000136\", \"taskStatus\": 2, \"destination\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-01 13:19:16', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408011319420381722489582038', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408011319128841722489552884\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000136\", \"taskStatus\": 100, \"destination\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-01 13:19:42', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408011322456591722489765659', '向WCS发送拣选任务', 'setConveyTask', '\"[{\\\"location\\\":[\\\"ASRS-#1\\\"],\\\"remark\\\":\\\"站台拣选任务\\\",\\\"taskGroup\\\":\\\"ASRS000136202408011322452881722489765288\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000136\\\"}]\"', '\"{\\\"code\\\":0,\\\"message\\\":\\\"操作成功\\\"}\"', 'http://192.168.8.62:18990/api/wms/convey/conveyTask', '2024-08-01 13:22:46', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408011323338801722489813880', 'Wcs上报箱子到达', 'boxArrive', '[{\"remark\": \"\", \"location\": \"ASRS-#1\", \"taskGroup\": \"\", \"vehicleNo\": \"ASRS000136\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"上报成功\\\"}\"', '192.168.8.62', '2024-08-01 13:23:34', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408011324082371722489848237', '获取备料工作信息', 'getWorkByStandAndGoods', '[{\"goodsId\": \"123456789/CS\", \"standId\": \"# 1\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"当前站台查不到正在拣选的箱子\\\"}\"', '127.0.0.1', '2024-08-01 13:24:08', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408011324590201722489899020', '获取备料工作信息', 'getWorkByStandAndGoods', '[{\"goodsId\": \"123456789/CS\", \"standId\": \"# 1\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"当前站台查不到正在拣选的箱子\\\"}\"', '127.0.0.1', '2024-08-01 13:24:59', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408011328085491722490088549', '获取备料工作信息', 'getWorkByStandAndGoods', '[{\"goodsId\": \"123456789/CS\\\\\", \"standId\": \"ASRS-#1\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求料号:123456789/CS\\\\\\\\与正在拣选的箱子:ASRS000136无对应关系\\\"}\"', '127.0.0.1', '2024-08-01 13:28:09', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408011333510971722490431097', '获取备料工作信息', 'getWorkByStandAndGoods', '[{\"goodsId\": \"123456789/CS\", \"standId\": \"ASRS-#1\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"获取工作信息成功\\\",\\\"returnData\\\":{\\\"finishedCounts\\\":2,\\\"finishedRows\\\":0,\\\"goodsId\\\":\\\"123456789/CS\\\",\\\"planPickNum\\\":2,\\\"remainNumOrigin\\\":0,\\\"remainNumReal\\\":0,\\\"remark\\\":\\\"套袋子\\\",\\\"standId\\\":\\\"ASRS-#1\\\",\\\"totalCounts\\\":2.0000,\\\"totalRows\\\":1}}\"', '127.0.0.1', '2024-08-01 13:33:51', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408011334238291722490463829', '确认当前拣货完成(wms界面触发)', 'confirmFinishWork', '[{\"goodsId\": \"123456789/CS\", \"standId\": \"ASRS-#1\", \"planPickNum\": null, \"remainNumReal\": 0, \"remainNumOrigin\": 0}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"站台灯光未全部拍灭,请检查。\\\"}\"', '127.0.0.1', '2024-08-01 13:34:24', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408011339170501722490757050', '获取电子标签反馈', 'getETaskFeedBack', '[{\"taskId\": \"WORKFLOW_202408011305075231722488707523\", \"goodsId\": \"123456789/CS\", \"needNum\": 2, \"orderId\": \"123456789/CS_202408011333508631722490430863\", \"location\": \"1-101\", \"taskType\": 1, \"goodsName\": \"测试物料\", \"taskGroup\": \"ASRS000136_202408011333508621722490430862\", \"vehicleNo\": \"ASRS000136\", \"confirmNum\": 2}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理反馈成功\\\"}\"', '127.0.0.1', '2024-08-01 13:39:17', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408011340442451722490844245', '向WCS发送释放箱子请求', 'URL_WCS_DISPOSE_VEHICLE', '\"{\\\"location\\\":\\\"ASRS-#1\\\",\\\"vehicleNo\\\":\\\"ASRS000136\\\"}\"', '\"{\\\"code\\\":0,\\\"message\\\":\\\"操作成功\\\"}\"', 'http://192.168.8.62:18990/api/wms/convey/disposeVehicle', '2024-08-01 13:40:44', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408011340442561722490844256', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"ASRS-#1\", \"vehicleNo\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"当前工作已经全部完成,请至完成界面进行后续工作。\\\"}\"', '192.168.8.62', '2024-08-01 13:40:44', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408011341173941722490877394', 'Wcs请求载具入库', 'wcsVehicleIn', '[{\"point\": \"C3\", \"remark\": \"\", \"vehicleNo\": \"ASRS000136\", \"codeMessage\": \"ASRS000136\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求载具入库发生错误:当前载具没有入库或回库任务\\\"}\"', '192.168.8.62', '2024-08-01 13:41:17', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408011341176701722490877670', 'Wcs请求载具入库', 'wcsVehicleIn', '[{\"point\": \"C3\", \"remark\": \"\", \"vehicleNo\": \"ASRS000136\", \"codeMessage\": \"ASRS000136\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求载具入库发生错误:当前载具没有入库或回库任务\\\"}\"', '192.168.8.62', '2024-08-01 13:41:18', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408011351569811722491516981', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000136\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-01 13:51:57', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408011351572111722491517211', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000136\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-01 13:51:57', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408011351574321722491517432', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000136\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-01 13:51:57', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408011351575741722491517574', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"01-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408011351569761722491516976\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000136\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408011351572091722491517209\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000136\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":0,\\\"message\\\":\\\"任务创建成功,任务号:202408011351569761722491516976,202408011351572091722491517209\\\",\\\"returnData\\\":[]}\"', 'http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-01 13:51:58', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408011351593991722491519399', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"01-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408011351574301722491517430\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000136\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":0,\\\"message\\\":\\\"任务创建成功,任务号:202408011351574301722491517430\\\",\\\"returnData\\\":[]}\"', 'http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-01 13:51:59', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408011352288721722491548872', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408011351574301722491517430\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000136\", \"taskStatus\": 2, \"destination\": \"01-01-02-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-01 13:52:29', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408011352533461722491573346', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408011351574301722491517430\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000136\", \"taskStatus\": 100, \"destination\": \"01-01-02-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-01 13:52:53', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408011356384481722491798448', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000136\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '127.0.0.1', '2024-08-01 13:56:38', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408011359445281722491984528', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000136\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '127.0.0.1', '2024-08-01 13:59:45', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408011402593741722492179374', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408011402574091722492177409\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000136\\\"}]\"', '\"{\\\"code\\\":0,\\\"message\\\":\\\"任务创建成功,任务号:202408011402574091722492177409\\\",\\\"returnData\\\":[]}\"', 'http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-01 14:02:59', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408011403006131722492180613', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408011402574091722492177409\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000136\", \"taskStatus\": 2, \"destination\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-01 14:03:01', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408011404122391722492252239', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408011402574091722492177409\", \"message\": \"任务被PLC取消\", \"vehicleNo\": \"ASRS000136\", \"taskStatus\": 999, \"destination\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-01 14:04:12', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408011407313061722492451306', '入库请求', 'requestIn', '[{\"userName\": \"管理员\", \"goodsList\": [{\"weight\": null, \"goodsId\": \"123456789/CS\", \"goodsNum\": 2, \"goodsDesc\": \"\", \"goodsName\": \"\", \"goodsType\": \"\", \"goodsUnit\": \"\", \"singleWeight\": null}], \"vehicleId\": \"ASRS000140\", \"originPoint\": \"\", \"totalWeight\": null}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"接收入库请求成功!\\\"}\"', '127.0.0.1', '2024-08-01 14:07:31', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408011407499931722492469993', 'Wcs请求载具入库', 'wcsVehicleIn', '[{\"point\": \"R1\", \"remark\": \"\", \"vehicleNo\": \"ASRS000140\", \"codeMessage\": \"ASRS000140\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理载具入库请求成功!\\\"}\"', '192.168.8.62', '2024-08-01 14:07:50', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408011407501381722492470138', 'Wcs请求载具入库', 'wcsVehicleIn', '[{\"point\": \"R1\", \"remark\": \"\", \"vehicleNo\": \"ASRS000140\", \"codeMessage\": \"ASRS000140\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求载具入库发生错误:当前载具没有入库或回库任务\\\"}\"', '192.168.8.62', '2024-08-01 14:07:50', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408011407517661722492471766', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"01-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408011407312741722492451274\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000140\\\",\\\"vehicleSize\\\":1}]\"', '\"{\\\"code\\\":0,\\\"message\\\":\\\"任务创建成功,任务号:202408011407312741722492451274\\\",\\\"returnData\\\":[]}\"', 'http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-01 14:07:52', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408011408119961722492491996', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408011407312741722492451274\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000140\", \"taskStatus\": 2, \"destination\": \"01-01-01-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-01 14:08:12', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408011408384601722492518460', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408011407312741722492451274\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000140\", \"taskStatus\": 100, \"destination\": \"01-01-01-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-01 14:08:38', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408011411299481722492689947', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408011411280031722492688003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000140\\\"}]\"', '\"{\\\"code\\\":0,\\\"message\\\":\\\"任务创建成功,任务号:202408011411280031722492688003\\\",\\\"returnData\\\":[]}\"', 'http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-01 14:11:30', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408011411311141722492691114', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408011411280031722492688003\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000140\", \"taskStatus\": 2, \"destination\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-01 14:11:31', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408011411573761722492717376', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408011411280031722492688003\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000140\", \"taskStatus\": 100, \"destination\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-01 14:11:57', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408011411578341722492717834', '向WCS发送拣选任务', 'setConveyTask', '\"[{\\\"location\\\":[\\\"ASRS-#1\\\"],\\\"remark\\\":\\\"站台拣选任务\\\",\\\"taskGroup\\\":\\\"ASRS000140202408011411577351722492717735\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000140\\\"}]\"', '\"{\\\"code\\\":0,\\\"message\\\":\\\"操作成功\\\"}\"', 'http://192.168.8.62:18990/api/wms/convey/conveyTask', '2024-08-01 14:11:58', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408011412312871722492751287', 'Wcs上报箱子到达', 'boxArrive', '[{\"remark\": \"\", \"location\": \"ASRS-#1\", \"taskGroup\": \"\", \"vehicleNo\": \"ASRS000140\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"上报成功\\\"}\"', '192.168.8.62', '2024-08-01 14:12:31', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408011412426841722492762684', '获取备料工作信息', 'getWorkByStandAndGoods', '[{\"goodsId\": \"123456789/CS\", \"standId\": \"ASRS-#1\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"获取工作信息成功\\\",\\\"returnData\\\":{\\\"finishedCounts\\\":2,\\\"finishedRows\\\":0,\\\"goodsId\\\":\\\"123456789/CS\\\",\\\"planPickNum\\\":2,\\\"remainNumOrigin\\\":0,\\\"remainNumReal\\\":0,\\\"remark\\\":\\\"套袋子\\\",\\\"standId\\\":\\\"ASRS-#1\\\",\\\"totalCounts\\\":2.0000,\\\"totalRows\\\":1}}\"', '127.0.0.1', '2024-08-01 14:12:43', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408011412473771722492767377', '确认当前拣货完成(wms界面触发)', 'confirmFinishWork', '[{\"goodsId\": \"123456789/CS\", \"standId\": \"ASRS-#1\", \"planPickNum\": null, \"remainNumReal\": 0, \"remainNumOrigin\": 0}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"站台灯光未全部拍灭,请检查。\\\"}\"', '127.0.0.1', '2024-08-01 14:12:47', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408011415133921722492913392', '获取电子标签反馈', 'getETaskFeedBack', '[{\"taskId\": \"WORKFLOW_202408011411277971722492687797\", \"goodsId\": \"123456789/CS\", \"needNum\": 2, \"orderId\": \"123456789/CS_202408011412425181722492762518\", \"location\": \"1-101\", \"taskType\": 1, \"goodsName\": \"测试物料\", \"taskGroup\": \"ASRS000140_202408011412425161722492762516\", \"vehicleNo\": \"ASRS000136\", \"confirmNum\": 2}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理反馈成功\\\"}\"', '127.0.0.1', '2024-08-01 14:15:13', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408011415184201722492918420', '向WCS发送释放箱子请求', 'URL_WCS_DISPOSE_VEHICLE', '\"{\\\"location\\\":\\\"ASRS-#1\\\",\\\"vehicleNo\\\":\\\"ASRS000140\\\"}\"', '\"{\\\"code\\\":0,\\\"message\\\":\\\"操作成功\\\"}\"', 'http://192.168.8.62:18990/api/wms/convey/disposeVehicle', '2024-08-01 14:15:18', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408011415184241722492918424', '确认当前拣货完成(wms界面触发)', 'confirmFinishWork', '[{\"goodsId\": \"123456789/CS\", \"standId\": \"ASRS-#1\", \"planPickNum\": null, \"remainNumReal\": 0, \"remainNumOrigin\": 0}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"当前工作已经全部完成,请至完成界面进行后续工作。\\\"}\"', '127.0.0.1', '2024-08-01 14:15:18', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408011415516921722492951692', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000140\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-01 14:15:52', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408011415521801722492952180', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"01-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408011415516911722492951691\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000140\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":0,\\\"message\\\":\\\"任务创建成功,任务号:202408011415516911722492951691\\\",\\\"returnData\\\":[]}\"', 'http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-01 14:15:52', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408011416239101722492983910', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408011415516911722492951691\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000140\", \"taskStatus\": 2, \"destination\": \"01-01-01-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-01 14:16:24', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408011416482791722493008279', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408011415516911722492951691\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000140\", \"taskStatus\": 100, \"destination\": \"01-01-01-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-01 14:16:48', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408011417348951722493054895', '获取当前站台任务完成信息', 'getFinishedWorkInfo', '[{\"goodsId\": \"\", \"standId\": \"ASRS-#1\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"获取工作信息成功\\\",\\\"returnData\\\":{\\\"actualCounts\\\":2,\\\"actualRows\\\":1,\\\"planCounts\\\":2.0000,\\\"planRows\\\":1,\\\"remark\\\":\\\"正常\\\",\\\"standId\\\":\\\"ASRS-#1\\\",\\\"tip\\\":\\\"工作已经完成,请打印标签\\\"}}\"', '127.0.0.1', '2024-08-01 14:17:35', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408011417376831722493057683', '获取当前站台任务完成信息', 'getFinishedWorkInfo', '[{\"goodsId\": \"\", \"standId\": \"ASRS-#1\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"获取工作信息成功\\\",\\\"returnData\\\":{\\\"actualCounts\\\":2,\\\"actualRows\\\":1,\\\"planCounts\\\":2.0000,\\\"planRows\\\":1,\\\"remark\\\":\\\"正常\\\",\\\"standId\\\":\\\"ASRS-#1\\\",\\\"tip\\\":\\\"工作已经完成,请打印标签\\\"}}\"', '127.0.0.1', '2024-08-01 14:17:38', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408011418525041722493132504', '获取当前站台任务完成信息', 'getFinishedWorkInfo', '[{\"goodsId\": \"\", \"standId\": \"ASRS-#1\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"获取工作信息成功\\\",\\\"returnData\\\":{\\\"actualCounts\\\":2,\\\"actualRows\\\":1,\\\"planCounts\\\":2.0000,\\\"planRows\\\":1,\\\"remark\\\":\\\"正常\\\",\\\"standId\\\":\\\"ASRS-#1\\\",\\\"tip\\\":\\\"工作已经完成,请打印标签\\\"}}\"', '127.0.0.1', '2024-08-01 14:18:53', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408011418552021722493135202', '获取当前站台任务完成信息', 'getFinishedWorkInfo', '[{\"goodsId\": \"\", \"standId\": \"ASRS-#1\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"获取工作信息成功\\\",\\\"returnData\\\":{\\\"actualCounts\\\":2,\\\"actualRows\\\":1,\\\"planCounts\\\":2.0000,\\\"planRows\\\":1,\\\"remark\\\":\\\"正常\\\",\\\"standId\\\":\\\"ASRS-#1\\\",\\\"tip\\\":\\\"工作已经完成,请打印标签\\\"}}\"', '127.0.0.1', '2024-08-01 14:18:55', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408011419530621722493193062', '获取当前站台任务完成信息', 'getFinishedWorkInfo', '[{\"goodsId\": \"\", \"standId\": \"ASRS-#1\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"获取工作信息成功\\\",\\\"returnData\\\":{\\\"actualCounts\\\":2,\\\"actualRows\\\":1,\\\"planCounts\\\":2.0000,\\\"planRows\\\":1,\\\"remark\\\":\\\"正常\\\",\\\"standId\\\":\\\"ASRS-#1\\\",\\\"tip\\\":\\\"工作已经完成,请打印标签\\\"}}\"', '127.0.0.1', '2024-08-01 14:19:53', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408011420570651722493257065', '获取当前站台任务完成信息', 'getFinishedWorkInfo', '[{\"goodsId\": \"\", \"standId\": \"ASRS-#1\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"获取工作信息成功\\\",\\\"returnData\\\":{\\\"actualCounts\\\":2,\\\"actualRows\\\":1,\\\"planCounts\\\":2.0000,\\\"planRows\\\":1,\\\"remark\\\":\\\"正常\\\",\\\"standId\\\":\\\"ASRS-#1\\\",\\\"tip\\\":\\\"工作已经完成,请打印标签\\\"}}\"', '127.0.0.1', '2024-08-01 14:20:57', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408011421095981722493269598', '获取当前站台任务完成信息', 'getFinishedWorkInfo', '[{\"goodsId\": \"\", \"standId\": \"ASRS-#1\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"获取工作信息成功\\\",\\\"returnData\\\":{\\\"actualCounts\\\":2,\\\"actualRows\\\":1,\\\"planCounts\\\":2.0000,\\\"planRows\\\":1,\\\"remark\\\":\\\"正常\\\",\\\"standId\\\":\\\"ASRS-#1\\\",\\\"tip\\\":\\\"工作已经完成,请打印标签\\\"}}\"', '127.0.0.1', '2024-08-01 14:21:10', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408011421116691722493271669', '工作完成确认', 'confirmFinishedWork', '[{\"goodsId\": \"\", \"standId\": \"ASRS-#1\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"确认失败:有标签未打印\\\"}\"', '127.0.0.1', '2024-08-01 14:21:12', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408011421478941722493307894', '工作完成确认', 'confirmFinishedWork', '[{\"goodsId\": \"\", \"standId\": \"ASRS-#1\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"确认成功,请至收盒子界面完成后续操作。\\\"}\"', '127.0.0.1', '2024-08-01 14:21:48', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408011454478521722495287852', '获取当前站台任务完成信息', 'getFinishedWorkInfo', '[{\"goodsId\": \"\", \"standId\": \"ASRS-#1\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"获取工作信息成功\\\",\\\"returnData\\\":{\\\"actualCounts\\\":0,\\\"actualRows\\\":0,\\\"planCounts\\\":0,\\\"planRows\\\":0,\\\"remark\\\":\\\"正常\\\",\\\"standId\\\":\\\"ASRS-#1\\\",\\\"tip\\\":\\\"工作已经完成,请打印标签\\\"}}\"', '127.0.0.1', '2024-08-01 14:54:48', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408011455129041722495312904', '获取当前站台任务完成信息', 'getFinishedWorkInfo', '[{\"goodsId\": \"\", \"standId\": \"ASRS-#1\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"获取工作信息成功\\\",\\\"returnData\\\":{\\\"actualCounts\\\":0,\\\"actualRows\\\":0,\\\"planCounts\\\":0,\\\"planRows\\\":0,\\\"remark\\\":\\\"正常\\\",\\\"standId\\\":\\\"ASRS-#1\\\",\\\"tip\\\":\\\"工作已经完成,请打印标签\\\"}}\"', '127.0.0.1', '2024-08-01 14:55:13', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408011456035721722495363572', '获取当前站台任务完成信息', 'getFinishedWorkInfo', '[{\"goodsId\": \"\", \"standId\": \"ASRS-#1\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"获取工作信息成功\\\",\\\"returnData\\\":{\\\"actualCounts\\\":0,\\\"actualRows\\\":0,\\\"planCounts\\\":0,\\\"planRows\\\":0,\\\"remark\\\":\\\"正常\\\",\\\"standId\\\":\\\"ASRS-#1\\\",\\\"tip\\\":\\\"工作已经完成,请打印标签\\\"}}\"', '127.0.0.1', '2024-08-01 14:56:04', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408011504366451722495876645', '获取当前站台任务完成信息', 'getFinishedWorkInfo', '[{\"goodsId\": \"\", \"standId\": \"ASRS-#1\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"获取工作信息成功\\\",\\\"returnData\\\":{\\\"actualCounts\\\":0,\\\"actualRows\\\":0,\\\"planCounts\\\":0,\\\"planRows\\\":0,\\\"remark\\\":\\\"正常\\\",\\\"standId\\\":\\\"ASRS-#1\\\",\\\"tip\\\":\\\"工作已经完成,请打印标签\\\"}}\"', '127.0.0.1', '2024-08-01 15:04:37', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408011504393111722495879311', '获取当前站台任务完成信息', 'getFinishedWorkInfo', '[{\"goodsId\": \"\", \"standId\": \"ASRS-#1\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"获取工作信息成功\\\",\\\"returnData\\\":{\\\"actualCounts\\\":0,\\\"actualRows\\\":0,\\\"planCounts\\\":0,\\\"planRows\\\":0,\\\"remark\\\":\\\"正常\\\",\\\"standId\\\":\\\"ASRS-#1\\\",\\\"tip\\\":\\\"工作已经完成,请打印标签\\\"}}\"', '127.0.0.1', '2024-08-01 15:04:39', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408011515438791722496543879', '获取当前站台任务完成信息', 'getFinishedWorkInfo', '[{\"goodsId\": \"\", \"standId\": \"ASRS-#1\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"获取工作信息成功\\\",\\\"returnData\\\":{\\\"standId\\\":\\\"ASRS-#1\\\",\\\"tip\\\":\\\"当前站台没有工作\\\"}}\"', '127.0.0.1', '2024-08-01 15:15:44', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408011515460281722496546028', '获取当前站台任务完成信息', 'getFinishedWorkInfo', '[{\"goodsId\": \"\", \"standId\": \"ASRS-#1\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"获取工作信息成功\\\",\\\"returnData\\\":{\\\"standId\\\":\\\"ASRS-#1\\\",\\\"tip\\\":\\\"当前站台没有工作\\\"}}\"', '127.0.0.1', '2024-08-01 15:15:46', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408011515479221722496547922', '获取当前站台任务完成信息', 'getFinishedWorkInfo', '[{\"goodsId\": \"\", \"standId\": \"ASRS-#1\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"获取工作信息成功\\\",\\\"returnData\\\":{\\\"standId\\\":\\\"ASRS-#1\\\",\\\"tip\\\":\\\"当前站台没有工作\\\"}}\"', '127.0.0.1', '2024-08-01 15:15:48', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408011515494651722496549465', '获取当前站台任务完成信息', 'getFinishedWorkInfo', '[{\"goodsId\": \"\", \"standId\": \"ASRS-#1\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"获取工作信息成功\\\",\\\"returnData\\\":{\\\"standId\\\":\\\"ASRS-#1\\\",\\\"tip\\\":\\\"当前站台没有工作\\\"}}\"', '127.0.0.1', '2024-08-01 15:15:49', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408011515503991722496550399', '获取当前站台任务完成信息', 'getFinishedWorkInfo', '[{\"goodsId\": \"\", \"standId\": \"ASRS-#1\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"获取工作信息成功\\\",\\\"returnData\\\":{\\\"standId\\\":\\\"ASRS-#1\\\",\\\"tip\\\":\\\"当前站台没有工作\\\"}}\"', '127.0.0.1', '2024-08-01 15:15:50', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408011544148041722498254804', '带密码登录', 'loginWithAuth', '[{\"isAsc\": true, \"pageNo\": 1, \"roleId\": null, \"sortBy\": \"\", \"userId\": null, \"addTime\": null, \"addUser\": \"\", \"pageSize\": 10, \"userName\": \"\", \"updateTime\": null, \"loginAccount\": \"admin\", \"loginPassword\": \"admin\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"登录成功\\\",\\\"returnData\\\":{\\\"menuList\\\":[{\\\"children\\\":[{\\\"children\\\":[],\\\"id\\\":\\\"11\\\",\\\"labelName\\\":\\\"入库\\\",\\\"path\\\":\\\"/goodsIn\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"12\\\",\\\"labelName\\\":\\\"出库\\\",\\\"path\\\":\\\"/goodsOut\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"13\\\",\\\"labelName\\\":\\\"盘点\\\",\\\"path\\\":\\\"/inventory\\\"}],\\\"iconValue\\\":\\\"Operation\\\",\\\"id\\\":\\\"1\\\",\\\"labelName\\\":\\\"操作\\\",\\\"path\\\":\\\"\\\"},{\\\"children\\\":[{\\\"children\\\":[],\\\"id\\\":\\\"21\\\",\\\"labelName\\\":\\\"库存信息\\\",\\\"path\\\":\\\"/stock\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"22\\\",\\\"labelName\\\":\\\"物料信息\\\",\\\"path\\\":\\\"/goods\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"23\\\",\\\"labelName\\\":\\\"入库记录\\\",\\\"path\\\":\\\"/inTaskRecord\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"24\\\",\\\"labelName\\\":\\\"出库记录\\\",\\\"path\\\":\\\"/outTaskRecord\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"241\\\",\\\"labelName\\\":\\\"盘点记录\\\",\\\"path\\\":\\\"/inventoryRecord\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"25\\\",\\\"labelName\\\":\\\"任务监控\\\",\\\"path\\\":\\\"/taskMonitor\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"26\\\",\\\"labelName\\\":\\\"库位监控\\\",\\\"path\\\":\\\"/location\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"28\\\",\\\"labelName\\\":\\\"接口日志\\\",\\\"path\\\":\\\"/wmsLog\\\"}],\\\"iconValue\\\":\\\"Histogram\\\",\\\"id\\\":\\\"2\\\",\\\"labelName\\\":\\\"数据\\\",\\\"path\\\":\\\"\\\"},{\\\"children\\\":[{\\\"children\\\":[],\\\"id\\\":\\\"35\\\",\\\"labelName\\\":\\\"系统配置\\\",\\\"path\\\":\\\"/config\\\"}],\\\"iconValue\\\":\\\"Setting\\\",\\\"id\\\":\\\"3\\\",\\\"labelName\\\":\\\"系统\\\"},{\\\"children\\\":[{\\\"children\\\":[],\\\"id\\\":\\\"41\\\",\\\"labelName\\\":\\\"备料执行\\\",\\\"path\\\":\\\"/testDoKitting\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"42\\\",\\\"labelName\\\":\\\"备料完成\\\",\\\"path\\\":\\\"/testFinishKitting\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"43\\\",\\\"labelName\\\":\\\"呼叫空箱\\\",\\\"path\\\":\\\"/testCallEmptyVehicle\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"44\\\",\\\"labelName\\\":\\\"整理盒子\\\",\\\"path\\\":\\\"/testSortBoxs\\\"}],\\\"iconValue\\\":\\\"Lock\\\",\\\"id\\\":\\\"4\\\",\\\"labelName\\\":\\\"测试\\\"}],\\\"standId\\\":\\\"ASRS-#1\\\",\\\"user\\\":{\\\"addTime\\\":\\\"2023-03-23 11:17:06\\\",\\\"addUser\\\":\\\"系统\\\",\\\"loginAccount\\\":\\\"admin\\\",\\\"loginPassword\\\":\\\"812C0C84E2970FA98456DDC5B0B59594\\\",\\\"roleId\\\":1,\\\"updateTime\\\":\\\"2023-03-23 11:17:10\\\",\\\"userId\\\":1,\\\"userName\\\":\\\"管理员\\\"}}}\"', '127.0.0.1', '2024-08-01 15:44:15', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408011546012021722498361202', '带密码登录', 'loginWithAuth', '[{\"isAsc\": true, \"pageNo\": 1, \"roleId\": null, \"sortBy\": \"\", \"userId\": null, \"addTime\": null, \"addUser\": \"\", \"pageSize\": 10, \"userName\": \"\", \"updateTime\": null, \"loginAccount\": \"admin\", \"loginPassword\": \"admin\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"登录成功\\\",\\\"returnData\\\":{\\\"menuList\\\":[{\\\"children\\\":[{\\\"children\\\":[],\\\"id\\\":\\\"11\\\",\\\"labelName\\\":\\\"入库\\\",\\\"path\\\":\\\"/goodsIn\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"12\\\",\\\"labelName\\\":\\\"出库\\\",\\\"path\\\":\\\"/goodsOut\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"13\\\",\\\"labelName\\\":\\\"盘点\\\",\\\"path\\\":\\\"/inventory\\\"}],\\\"iconValue\\\":\\\"Operation\\\",\\\"id\\\":\\\"1\\\",\\\"labelName\\\":\\\"操作\\\",\\\"path\\\":\\\"\\\"},{\\\"children\\\":[{\\\"children\\\":[],\\\"id\\\":\\\"21\\\",\\\"labelName\\\":\\\"库存信息\\\",\\\"path\\\":\\\"/stock\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"22\\\",\\\"labelName\\\":\\\"物料信息\\\",\\\"path\\\":\\\"/goods\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"23\\\",\\\"labelName\\\":\\\"入库记录\\\",\\\"path\\\":\\\"/inTaskRecord\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"24\\\",\\\"labelName\\\":\\\"出库记录\\\",\\\"path\\\":\\\"/outTaskRecord\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"241\\\",\\\"labelName\\\":\\\"盘点记录\\\",\\\"path\\\":\\\"/inventoryRecord\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"25\\\",\\\"labelName\\\":\\\"任务监控\\\",\\\"path\\\":\\\"/taskMonitor\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"26\\\",\\\"labelName\\\":\\\"库位监控\\\",\\\"path\\\":\\\"/location\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"28\\\",\\\"labelName\\\":\\\"接口日志\\\",\\\"path\\\":\\\"/wmsLog\\\"}],\\\"iconValue\\\":\\\"Histogram\\\",\\\"id\\\":\\\"2\\\",\\\"labelName\\\":\\\"数据\\\",\\\"path\\\":\\\"\\\"},{\\\"children\\\":[{\\\"children\\\":[],\\\"id\\\":\\\"35\\\",\\\"labelName\\\":\\\"系统配置\\\",\\\"path\\\":\\\"/config\\\"}],\\\"iconValue\\\":\\\"Setting\\\",\\\"id\\\":\\\"3\\\",\\\"labelName\\\":\\\"系统\\\"},{\\\"children\\\":[{\\\"children\\\":[],\\\"id\\\":\\\"41\\\",\\\"labelName\\\":\\\"备料执行\\\",\\\"path\\\":\\\"/testDoKitting\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"42\\\",\\\"labelName\\\":\\\"备料完成\\\",\\\"path\\\":\\\"/testFinishKitting\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"43\\\",\\\"labelName\\\":\\\"呼叫空箱\\\",\\\"path\\\":\\\"/testCallEmptyVehicle\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"44\\\",\\\"labelName\\\":\\\"整理盒子\\\",\\\"path\\\":\\\"/testSortBoxs\\\"}],\\\"iconValue\\\":\\\"Lock\\\",\\\"id\\\":\\\"4\\\",\\\"labelName\\\":\\\"测试\\\"}],\\\"standId\\\":\\\"ASRS-#1\\\",\\\"user\\\":{\\\"addTime\\\":\\\"2023-03-23 11:17:06\\\",\\\"addUser\\\":\\\"系统\\\",\\\"loginAccount\\\":\\\"admin\\\",\\\"loginPassword\\\":\\\"812C0C84E2970FA98456DDC5B0B59594\\\",\\\"roleId\\\":1,\\\"updateTime\\\":\\\"2023-03-23 11:17:10\\\",\\\"userId\\\":1,\\\"userName\\\":\\\"管理员\\\"}}}\"', '127.0.0.1', '2024-08-01 15:46:01', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408011546291191722498389119', '带密码登录', 'loginWithAuth', '[{\"isAsc\": true, \"pageNo\": 1, \"roleId\": null, \"sortBy\": \"\", \"userId\": null, \"addTime\": null, \"addUser\": \"\", \"pageSize\": 10, \"userName\": \"\", \"updateTime\": null, \"loginAccount\": \"admin\", \"loginPassword\": \"admin\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"登录成功\\\",\\\"returnData\\\":{\\\"menuList\\\":[{\\\"children\\\":[{\\\"children\\\":[],\\\"id\\\":\\\"11\\\",\\\"labelName\\\":\\\"入库\\\",\\\"path\\\":\\\"/goodsIn\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"12\\\",\\\"labelName\\\":\\\"出库\\\",\\\"path\\\":\\\"/goodsOut\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"13\\\",\\\"labelName\\\":\\\"盘点\\\",\\\"path\\\":\\\"/inventory\\\"}],\\\"iconValue\\\":\\\"Operation\\\",\\\"id\\\":\\\"1\\\",\\\"labelName\\\":\\\"操作\\\",\\\"path\\\":\\\"\\\"},{\\\"children\\\":[{\\\"children\\\":[],\\\"id\\\":\\\"21\\\",\\\"labelName\\\":\\\"库存信息\\\",\\\"path\\\":\\\"/stock\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"22\\\",\\\"labelName\\\":\\\"物料信息\\\",\\\"path\\\":\\\"/goods\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"23\\\",\\\"labelName\\\":\\\"入库记录\\\",\\\"path\\\":\\\"/inTaskRecord\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"24\\\",\\\"labelName\\\":\\\"出库记录\\\",\\\"path\\\":\\\"/outTaskRecord\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"241\\\",\\\"labelName\\\":\\\"盘点记录\\\",\\\"path\\\":\\\"/inventoryRecord\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"25\\\",\\\"labelName\\\":\\\"任务监控\\\",\\\"path\\\":\\\"/taskMonitor\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"26\\\",\\\"labelName\\\":\\\"库位监控\\\",\\\"path\\\":\\\"/location\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"28\\\",\\\"labelName\\\":\\\"接口日志\\\",\\\"path\\\":\\\"/wmsLog\\\"}],\\\"iconValue\\\":\\\"Histogram\\\",\\\"id\\\":\\\"2\\\",\\\"labelName\\\":\\\"数据\\\",\\\"path\\\":\\\"\\\"},{\\\"children\\\":[{\\\"children\\\":[],\\\"id\\\":\\\"35\\\",\\\"labelName\\\":\\\"系统配置\\\",\\\"path\\\":\\\"/config\\\"}],\\\"iconValue\\\":\\\"Setting\\\",\\\"id\\\":\\\"3\\\",\\\"labelName\\\":\\\"系统\\\"},{\\\"children\\\":[{\\\"children\\\":[],\\\"id\\\":\\\"41\\\",\\\"labelName\\\":\\\"备料执行\\\",\\\"path\\\":\\\"/testDoKitting\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"42\\\",\\\"labelName\\\":\\\"备料完成\\\",\\\"path\\\":\\\"/testFinishKitting\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"43\\\",\\\"labelName\\\":\\\"呼叫空箱\\\",\\\"path\\\":\\\"/testCallEmptyVehicle\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"44\\\",\\\"labelName\\\":\\\"整理盒子\\\",\\\"path\\\":\\\"/testSortBoxs\\\"}],\\\"iconValue\\\":\\\"Lock\\\",\\\"id\\\":\\\"4\\\",\\\"labelName\\\":\\\"测试\\\"}],\\\"standId\\\":\\\"ASRS-#2\\\",\\\"user\\\":{\\\"addTime\\\":\\\"2023-03-23 11:17:06\\\",\\\"addUser\\\":\\\"系统\\\",\\\"loginAccount\\\":\\\"admin\\\",\\\"loginPassword\\\":\\\"812C0C84E2970FA98456DDC5B0B59594\\\",\\\"roleId\\\":1,\\\"updateTime\\\":\\\"2023-03-23 11:17:10\\\",\\\"userId\\\":1,\\\"userName\\\":\\\"管理员\\\"}}}\"', '127.0.0.1', '2024-08-01 15:46:29', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408011546436011722498403601', '带密码登录', 'loginWithAuth', '[{\"isAsc\": true, \"pageNo\": 1, \"roleId\": null, \"sortBy\": \"\", \"userId\": null, \"addTime\": null, \"addUser\": \"\", \"pageSize\": 10, \"userName\": \"\", \"updateTime\": null, \"loginAccount\": \"admin\", \"loginPassword\": \"admin\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"登录成功\\\",\\\"returnData\\\":{\\\"menuList\\\":[{\\\"children\\\":[{\\\"children\\\":[],\\\"id\\\":\\\"11\\\",\\\"labelName\\\":\\\"入库\\\",\\\"path\\\":\\\"/goodsIn\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"12\\\",\\\"labelName\\\":\\\"出库\\\",\\\"path\\\":\\\"/goodsOut\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"13\\\",\\\"labelName\\\":\\\"盘点\\\",\\\"path\\\":\\\"/inventory\\\"}],\\\"iconValue\\\":\\\"Operation\\\",\\\"id\\\":\\\"1\\\",\\\"labelName\\\":\\\"操作\\\",\\\"path\\\":\\\"\\\"},{\\\"children\\\":[{\\\"children\\\":[],\\\"id\\\":\\\"21\\\",\\\"labelName\\\":\\\"库存信息\\\",\\\"path\\\":\\\"/stock\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"22\\\",\\\"labelName\\\":\\\"物料信息\\\",\\\"path\\\":\\\"/goods\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"23\\\",\\\"labelName\\\":\\\"入库记录\\\",\\\"path\\\":\\\"/inTaskRecord\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"24\\\",\\\"labelName\\\":\\\"出库记录\\\",\\\"path\\\":\\\"/outTaskRecord\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"241\\\",\\\"labelName\\\":\\\"盘点记录\\\",\\\"path\\\":\\\"/inventoryRecord\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"25\\\",\\\"labelName\\\":\\\"任务监控\\\",\\\"path\\\":\\\"/taskMonitor\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"26\\\",\\\"labelName\\\":\\\"库位监控\\\",\\\"path\\\":\\\"/location\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"28\\\",\\\"labelName\\\":\\\"接口日志\\\",\\\"path\\\":\\\"/wmsLog\\\"}],\\\"iconValue\\\":\\\"Histogram\\\",\\\"id\\\":\\\"2\\\",\\\"labelName\\\":\\\"数据\\\",\\\"path\\\":\\\"\\\"},{\\\"children\\\":[{\\\"children\\\":[],\\\"id\\\":\\\"35\\\",\\\"labelName\\\":\\\"系统配置\\\",\\\"path\\\":\\\"/config\\\"}],\\\"iconValue\\\":\\\"Setting\\\",\\\"id\\\":\\\"3\\\",\\\"labelName\\\":\\\"系统\\\"},{\\\"children\\\":[{\\\"children\\\":[],\\\"id\\\":\\\"41\\\",\\\"labelName\\\":\\\"备料执行\\\",\\\"path\\\":\\\"/testDoKitting\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"42\\\",\\\"labelName\\\":\\\"备料完成\\\",\\\"path\\\":\\\"/testFinishKitting\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"43\\\",\\\"labelName\\\":\\\"呼叫空箱\\\",\\\"path\\\":\\\"/testCallEmptyVehicle\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"44\\\",\\\"labelName\\\":\\\"整理盒子\\\",\\\"path\\\":\\\"/testSortBoxs\\\"}],\\\"iconValue\\\":\\\"Lock\\\",\\\"id\\\":\\\"4\\\",\\\"labelName\\\":\\\"测试\\\"}],\\\"standId\\\":\\\"ASRS-#1\\\",\\\"user\\\":{\\\"addTime\\\":\\\"2023-03-23 11:17:06\\\",\\\"addUser\\\":\\\"系统\\\",\\\"loginAccount\\\":\\\"admin\\\",\\\"loginPassword\\\":\\\"812C0C84E2970FA98456DDC5B0B59594\\\",\\\"roleId\\\":1,\\\"updateTime\\\":\\\"2023-03-23 11:17:10\\\",\\\"userId\\\":1,\\\"userName\\\":\\\"管理员\\\"}}}\"', '127.0.0.1', '2024-08-01 15:46:44', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408011552160981722498736098', '获取当前站台任务完成信息', 'getFinishedWorkInfo', '[{\"goodsId\": \"\", \"standId\": \"ASRS-#1\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"获取工作信息成功\\\",\\\"returnData\\\":{\\\"actualCounts\\\":0,\\\"actualRows\\\":0,\\\"planCounts\\\":0,\\\"planRows\\\":0,\\\"standId\\\":\\\"ASRS-#1\\\",\\\"tip\\\":\\\"当前站台没有工作\\\"}}\"', '127.0.0.1', '2024-08-01 15:52:16', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408011606266081722499586608', '入库请求', 'requestIn', '[{\"userName\": \"管理员\", \"goodsList\": [{\"weight\": null, \"goodsId\": \"123456789/CS\", \"goodsNum\": 2, \"goodsDesc\": \"\", \"goodsName\": \"\", \"goodsType\": \"\", \"goodsUnit\": \"\", \"singleWeight\": null}], \"vehicleId\": \"ASRS000176\", \"originPoint\": \"\", \"totalWeight\": null}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"接收入库请求成功!\\\"}\"', '127.0.0.1', '2024-08-01 16:06:27', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408011608474501722499727450', 'Wcs请求载具入库', 'wcsVehicleIn', '[{\"point\": \"R1\", \"remark\": \"\", \"vehicleNo\": \"ASRS000176\", \"codeMessage\": \"ASRS000176\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理载具入库请求成功!\\\"}\"', '192.168.8.62', '2024-08-01 16:08:47', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408011608475981722499727598', 'Wcs请求载具入库', 'wcsVehicleIn', '[{\"point\": \"R1\", \"remark\": \"\", \"vehicleNo\": \"ASRS000176\", \"codeMessage\": \"ASRS000176\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求载具入库发生错误:当前载具没有入库或回库任务\\\"}\"', '192.168.8.62', '2024-08-01 16:08:48', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408011608486631722499728663', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"01-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408011606265581722499586558\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000176\\\",\\\"vehicleSize\\\":1}]\"', '\"{\\\"code\\\":0,\\\"message\\\":\\\"任务创建成功,任务号:202408011606265581722499586558\\\",\\\"returnData\\\":[]}\"', 'http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-01 16:08:49', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408011609095281722499749528', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408011606265581722499586558\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000176\", \"taskStatus\": 2, \"destination\": \"01-01-01-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-01 16:09:10', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408011609347441722499774744', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408011606265581722499586558\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000176\", \"taskStatus\": 100, \"destination\": \"01-01-01-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-01 16:09:35', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408011610466121722499846612', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408011610445301722499844530\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000176\\\"}]\"', '\"{\\\"code\\\":0,\\\"message\\\":\\\"任务创建成功,任务号:202408011610445301722499844530\\\",\\\"returnData\\\":[]}\"', 'http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-01 16:10:47', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408011610469221722499846922', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408011610445301722499844530\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000176\", \"taskStatus\": 2, \"destination\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-01 16:10:47', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408011611136441722499873644', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408011610445301722499844530\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000176\", \"taskStatus\": 100, \"destination\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-01 16:11:14', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408011611146411722499874641', '向WCS发送拣选任务', 'setConveyTask', '\"[{\\\"location\\\":[\\\"ASRS-#1\\\"],\\\"remark\\\":\\\"站台拣选任务\\\",\\\"taskGroup\\\":\\\"ASRS000176202408011611145381722499874538\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000176\\\"}]\"', '\"{\\\"code\\\":0,\\\"message\\\":\\\"操作成功\\\"}\"', 'http://192.168.8.62:18990/api/wms/convey/conveyTask', '2024-08-01 16:11:15', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408011611469461722499906946', 'Wcs上报箱子到达', 'boxArrive', '[{\"remark\": \"\", \"location\": \"ASRS-#1\", \"taskGroup\": \"\", \"vehicleNo\": \"ASRS000176\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"上报成功\\\"}\"', '192.168.8.62', '2024-08-01 16:11:47', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408011612139761722499933976', '获取备料工作信息', 'getWorkByStandAndGoods', '[{\"goodsId\": \"123456789/CS\", \"standId\": \"ASRS-#1\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"获取工作信息成功\\\",\\\"returnData\\\":{\\\"finishedCounts\\\":2,\\\"finishedRows\\\":0,\\\"goodsId\\\":\\\"123456789/CS\\\",\\\"planPickNum\\\":2,\\\"remainNumOrigin\\\":0,\\\"remainNumReal\\\":0,\\\"remark\\\":\\\"套袋子\\\",\\\"standId\\\":\\\"ASRS-#1\\\",\\\"totalCounts\\\":2.0000,\\\"totalRows\\\":1}}\"', '127.0.0.1', '2024-08-01 16:12:14', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408011612376971722499957697', '获取电子标签反馈', 'getETaskFeedBack', '[{\"taskId\": \"WORKFLOW_202408011610444701722499844470\", \"goodsId\": \"123456789/CS\", \"needNum\": 2, \"orderId\": \"123456789/CS_202408011612138511722499933851\", \"location\": \"1-101\", \"taskType\": 1, \"goodsName\": \"测试物料\", \"taskGroup\": \"ASRS000176_202408011612138421722499933842\", \"vehicleNo\": \"ASRS000176\", \"confirmNum\": 2}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理反馈成功\\\"}\"', '192.168.8.62', '2024-08-01 16:12:38', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408011612550261722499975026', '向WCS发送释放箱子请求', 'URL_WCS_DISPOSE_VEHICLE', '\"{\\\"location\\\":\\\"ASRS-#1\\\",\\\"vehicleNo\\\":\\\"ASRS000176\\\"}\"', '\"{\\\"code\\\":0,\\\"message\\\":\\\"操作成功\\\"}\"', 'http://192.168.8.62:18990/api/wms/convey/disposeVehicle', '2024-08-01 16:12:55', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408011612550321722499975032', '确认当前拣货完成(wms界面触发)', 'confirmFinishWork', '[{\"goodsId\": \"123456789/CS\", \"standId\": \"ASRS-#1\", \"planPickNum\": null, \"remainNumReal\": 0, \"remainNumOrigin\": 0}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"当前工作已经全部完成,请至完成界面进行后续工作。\\\"}\"', '127.0.0.1', '2024-08-01 16:12:55', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408011613074371722499987437', '获取当前站台任务完成信息', 'getFinishedWorkInfo', '[{\"goodsId\": \"\", \"standId\": \"ASRS-#1\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"获取工作信息成功\\\",\\\"returnData\\\":{\\\"actualCounts\\\":2,\\\"actualRows\\\":1,\\\"planCounts\\\":2.0000,\\\"planRows\\\":1,\\\"remark\\\":\\\"正常\\\",\\\"standId\\\":\\\"ASRS-#1\\\",\\\"tip\\\":\\\"工作已经完成,请打印标签\\\"}}\"', '127.0.0.1', '2024-08-01 16:13:07', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408011613287271722500008727', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000176\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-01 16:13:29', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408011613290021722500009002', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"01-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408011613287251722500008725\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000176\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":0,\\\"message\\\":\\\"任务创建成功,任务号:202408011613287251722500008725\\\",\\\"returnData\\\":[]}\"', 'http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-01 16:13:29', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408011614014461722500041446', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408011613287251722500008725\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000176\", \"taskStatus\": 2, \"destination\": \"01-01-01-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-01 16:14:01', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408011614264351722500066435', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408011613287251722500008725\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000176\", \"taskStatus\": 100, \"destination\": \"01-01-01-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-01 16:14:26', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408020920164061722561616406', '更新库位信息', 'genELocations', '[{\"isAsc\": false, \"areaId\": \"\", \"pageNo\": 0, \"sortBy\": \"\", \"goodsId\": \"\", \"pageSize\": 0, \"quantity\": null, \"orderBoxNo\": \"\", \"pickStatus\": 0, \"sequenceId\": 0, \"eLocationId\": \"\", \"workStation\": \"\", \"eLocationStatus\": 0}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"生成电子标签库位成功。\\\"}\"', '127.0.0.1', '2024-08-02 09:20:16', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408020920426571722561642657', '带密码登录', 'loginWithAuth', '[{\"isAsc\": true, \"pageNo\": 1, \"roleId\": null, \"sortBy\": \"\", \"userId\": null, \"addTime\": null, \"addUser\": \"\", \"pageSize\": 10, \"userName\": \"\", \"updateTime\": null, \"loginAccount\": \"admin\", \"loginPassword\": \"admin\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"登录成功\\\",\\\"returnData\\\":{\\\"menuList\\\":[{\\\"children\\\":[{\\\"children\\\":[],\\\"id\\\":\\\"11\\\",\\\"labelName\\\":\\\"入库\\\",\\\"path\\\":\\\"/goodsIn\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"12\\\",\\\"labelName\\\":\\\"出库\\\",\\\"path\\\":\\\"/goodsOut\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"13\\\",\\\"labelName\\\":\\\"盘点\\\",\\\"path\\\":\\\"/inventory\\\"}],\\\"iconValue\\\":\\\"Operation\\\",\\\"id\\\":\\\"1\\\",\\\"labelName\\\":\\\"操作\\\",\\\"path\\\":\\\"\\\"},{\\\"children\\\":[{\\\"children\\\":[],\\\"id\\\":\\\"21\\\",\\\"labelName\\\":\\\"库存信息\\\",\\\"path\\\":\\\"/stock\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"22\\\",\\\"labelName\\\":\\\"物料信息\\\",\\\"path\\\":\\\"/goods\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"23\\\",\\\"labelName\\\":\\\"入库记录\\\",\\\"path\\\":\\\"/inTaskRecord\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"24\\\",\\\"labelName\\\":\\\"出库记录\\\",\\\"path\\\":\\\"/outTaskRecord\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"241\\\",\\\"labelName\\\":\\\"盘点记录\\\",\\\"path\\\":\\\"/inventoryRecord\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"25\\\",\\\"labelName\\\":\\\"任务监控\\\",\\\"path\\\":\\\"/taskMonitor\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"26\\\",\\\"labelName\\\":\\\"库位监控\\\",\\\"path\\\":\\\"/location\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"28\\\",\\\"labelName\\\":\\\"接口日志\\\",\\\"path\\\":\\\"/wmsLog\\\"}],\\\"iconValue\\\":\\\"Histogram\\\",\\\"id\\\":\\\"2\\\",\\\"labelName\\\":\\\"数据\\\",\\\"path\\\":\\\"\\\"},{\\\"children\\\":[{\\\"children\\\":[],\\\"id\\\":\\\"35\\\",\\\"labelName\\\":\\\"系统配置\\\",\\\"path\\\":\\\"/config\\\"}],\\\"iconValue\\\":\\\"Setting\\\",\\\"id\\\":\\\"3\\\",\\\"labelName\\\":\\\"系统\\\"},{\\\"children\\\":[{\\\"children\\\":[],\\\"id\\\":\\\"41\\\",\\\"labelName\\\":\\\"备料执行\\\",\\\"path\\\":\\\"/testDoKitting\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"42\\\",\\\"labelName\\\":\\\"备料完成\\\",\\\"path\\\":\\\"/testFinishKitting\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"43\\\",\\\"labelName\\\":\\\"呼叫空箱\\\",\\\"path\\\":\\\"/testCallEmptyVehicle\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"44\\\",\\\"labelName\\\":\\\"整理盒子\\\",\\\"path\\\":\\\"/testSortBoxs\\\"}],\\\"iconValue\\\":\\\"Lock\\\",\\\"id\\\":\\\"4\\\",\\\"labelName\\\":\\\"测试\\\"}],\\\"standId\\\":\\\"ASRS-#1\\\",\\\"user\\\":{\\\"addTime\\\":\\\"2023-03-23 11:17:06\\\",\\\"addUser\\\":\\\"系统\\\",\\\"loginAccount\\\":\\\"admin\\\",\\\"loginPassword\\\":\\\"812C0C84E2970FA98456DDC5B0B59594\\\",\\\"roleId\\\":1,\\\"updateTime\\\":\\\"2023-03-23 11:17:10\\\",\\\"userId\\\":1,\\\"userName\\\":\\\"管理员\\\"}}}\"', '127.0.0.1', '2024-08-02 09:20:43', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408020926295381722561989538', '入库请求', 'requestIn', '[{\"userName\": \"管理员\", \"goodsList\": [{\"weight\": null, \"goodsId\": \"123456789/CS\", \"goodsNum\": 20, \"goodsDesc\": \"\", \"goodsName\": \"\", \"goodsType\": \"\", \"goodsUnit\": \"\", \"singleWeight\": null}], \"vehicleId\": \"ASRS000179\", \"originPoint\": \"\", \"totalWeight\": null}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"接收入库请求成功!\\\"}\"', '127.0.0.1', '2024-08-02 09:26:30', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408020927271431722562047143', 'Wcs请求载具入库', 'wcsVehicleIn', '[{\"point\": \"R1\", \"remark\": \"\", \"vehicleNo\": \"ASRS000179\", \"codeMessage\": \"ASRS000179\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理载具入库请求成功!\\\"}\"', '192.168.8.62', '2024-08-02 09:27:27', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408020927273071722562047307', 'Wcs请求载具入库', 'wcsVehicleIn', '[{\"point\": \"R1\", \"remark\": \"\", \"vehicleNo\": \"ASRS000179\", \"codeMessage\": \"ASRS000179\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求载具入库发生错误:当前载具没有入库或回库任务\\\"}\"', '192.168.8.62', '2024-08-02 09:27:27', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408020927283421722562048342', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"02-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408020926295301722561989530\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000179\\\",\\\"vehicleSize\\\":1}]\"', '\"{\\\"code\\\":0,\\\"message\\\":\\\"任务创建成功,任务号:202408020926295301722561989530\\\",\\\"returnData\\\":[]}\"', 'http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-02 09:27:28', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408020927495591722562069559', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408020926295301722561989530\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000179\", \"taskStatus\": 2, \"destination\": \"02-01-01-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 09:27:50', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408020928025441722562082544', '入库请求', 'requestIn', '[{\"userName\": \"管理员\", \"goodsList\": [{\"weight\": null, \"goodsId\": \"222222222/CS\", \"goodsNum\": 20, \"goodsDesc\": \"\", \"goodsName\": \"\", \"goodsType\": \"\", \"goodsUnit\": \"\", \"singleWeight\": null}], \"vehicleId\": \"ASRS000117\", \"originPoint\": \"\", \"totalWeight\": null}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"接收入库请求成功!\\\"}\"', '127.0.0.1', '2024-08-02 09:28:03', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408020928140001722562094000', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408020926295301722561989530\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000179\", \"taskStatus\": 100, \"destination\": \"02-01-01-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 09:28:14', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408020928213201722562101320', 'Wcs请求载具入库', 'wcsVehicleIn', '[{\"point\": \"R1\", \"remark\": \"\", \"vehicleNo\": \"ASRS000117\", \"codeMessage\": \"ASRS000117\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理载具入库请求成功!\\\"}\"', '192.168.8.62', '2024-08-02 09:28:21', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408020928215681722562101568', 'Wcs请求载具入库', 'wcsVehicleIn', '[{\"point\": \"R1\", \"remark\": \"\", \"vehicleNo\": \"ASRS000117\", \"codeMessage\": \"ASRS000117\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求载具入库发生错误:当前载具没有入库或回库任务\\\"}\"', '192.168.8.62', '2024-08-02 09:28:22', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408020928221951722562102195', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"01-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408020928025391722562082539\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000117\\\",\\\"vehicleSize\\\":1}]\"', '\"{\\\"code\\\":0,\\\"message\\\":\\\"任务创建成功,任务号:202408020928025391722562082539\\\",\\\"returnData\\\":[]}\"', 'http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-02 09:28:22', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408020928435581722562123558', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408020928025391722562082539\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000117\", \"taskStatus\": 2, \"destination\": \"01-01-02-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 09:28:44', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408020929089861722562148986', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408020928025391722562082539\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000117\", \"taskStatus\": 100, \"destination\": \"01-01-02-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 09:29:09', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408020929325821722562172582', '入库请求', 'requestIn', '[{\"userName\": \"管理员\", \"goodsList\": [{\"weight\": null, \"goodsId\": \"333333333/CS\", \"goodsNum\": 30, \"goodsDesc\": \"\", \"goodsName\": \"\", \"goodsType\": \"\", \"goodsUnit\": \"\", \"singleWeight\": null}], \"vehicleId\": \"ASRS000180\", \"originPoint\": \"\", \"totalWeight\": null}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"接收入库请求成功!\\\"}\"', '127.0.0.1', '2024-08-02 09:29:33', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408020929510081722562191008', 'Wcs请求载具入库', 'wcsVehicleIn', '[{\"point\": \"R1\", \"remark\": \"\", \"vehicleNo\": \"ASRS000180\", \"codeMessage\": \"ASRS000180\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理载具入库请求成功!\\\"}\"', '192.168.8.62', '2024-08-02 09:29:51', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408020929512711722562191271', 'Wcs请求载具入库', 'wcsVehicleIn', '[{\"point\": \"R1\", \"remark\": \"\", \"vehicleNo\": \"ASRS000180\", \"codeMessage\": \"ASRS000180\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求载具入库发生错误:当前载具没有入库或回库任务\\\"}\"', '192.168.8.62', '2024-08-02 09:29:51', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408020929524111722562192411', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"01-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408020929325751722562172575\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000180\\\",\\\"vehicleSize\\\":1}]\"', '\"{\\\"code\\\":0,\\\"message\\\":\\\"任务创建成功,任务号:202408020929325751722562172575\\\",\\\"returnData\\\":[]}\"', 'http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-02 09:29:52', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408020930135141722562213514', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408020929325751722562172575\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000180\", \"taskStatus\": 2, \"destination\": \"01-01-03-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 09:30:14', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408020930390021722562239002', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408020929325751722562172575\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000180\", \"taskStatus\": 100, \"destination\": \"01-01-03-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 09:30:39', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408020937534071722562673407', '入库请求', 'requestIn', '[{\"userName\": \"管理员\", \"goodsList\": [{\"weight\": null, \"goodsId\": \"123456789/CS\", \"goodsNum\": 20, \"goodsDesc\": \"\", \"goodsName\": \"\", \"goodsType\": \"\", \"goodsUnit\": \"\", \"singleWeight\": null}], \"vehicleId\": \"ASRS000138\", \"originPoint\": \"\", \"totalWeight\": null}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"接收入库请求成功!\\\"}\"', '127.0.0.1', '2024-08-02 09:37:53', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408020938079351722562687935', 'Wcs请求载具入库', 'wcsVehicleIn', '[{\"point\": \"R1\", \"remark\": \"\", \"vehicleNo\": \"ASRS000138\", \"codeMessage\": \"ASRS000138\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理载具入库请求成功!\\\"}\"', '192.168.8.62', '2024-08-02 09:38:08', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408020938081991722562688199', 'Wcs请求载具入库', 'wcsVehicleIn', '[{\"point\": \"R1\", \"remark\": \"\", \"vehicleNo\": \"ASRS000138\", \"codeMessage\": \"ASRS000138\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求载具入库发生错误:当前载具没有入库或回库任务\\\"}\"', '192.168.8.62', '2024-08-02 09:38:08', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408020938099761722562689976', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"02-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408020937533871722562673387\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000138\\\",\\\"vehicleSize\\\":1}]\"', '\"{\\\"code\\\":0,\\\"message\\\":\\\"任务创建成功,任务号:202408020937533871722562673387\\\",\\\"returnData\\\":[]}\"', 'http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-02 09:38:10', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408020938262961722562706296', '入库请求', 'requestIn', '[{\"userName\": \"管理员\", \"goodsList\": [{\"weight\": null, \"goodsId\": \"444444444/CS\", \"goodsNum\": 10, \"goodsDesc\": \"\", \"goodsName\": \"\", \"goodsType\": \"\", \"goodsUnit\": \"\", \"singleWeight\": null}], \"vehicleId\": \"ASRS000184\", \"originPoint\": \"\", \"totalWeight\": null}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"接收入库请求成功!\\\"}\"', '127.0.0.1', '2024-08-02 09:38:26', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408020938305221722562710522', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408020937533871722562673387\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000138\", \"taskStatus\": 2, \"destination\": \"02-01-03-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 09:38:31', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408020938367101722562716710', 'Wcs请求载具入库', 'wcsVehicleIn', '[{\"point\": \"R1\", \"remark\": \"\", \"vehicleNo\": \"ASRS000184\", \"codeMessage\": \"ASRS000184\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理载具入库请求成功!\\\"}\"', '192.168.8.62', '2024-08-02 09:38:37', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408020938378831722562717883', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"03-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408020938262921722562706292\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000184\\\",\\\"vehicleSize\\\":1}]\"', '\"{\\\"code\\\":0,\\\"message\\\":\\\"任务创建成功,任务号:202408020938262921722562706292\\\",\\\"returnData\\\":[]}\"', 'http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-02 09:38:38', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408020938560881722562736088', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408020937533871722562673387\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000138\", \"taskStatus\": 100, \"destination\": \"02-01-03-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 09:38:56', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408020938570051722562737005', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408020938262921722562706292\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000184\", \"taskStatus\": 2, \"destination\": \"03-01-01-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 09:38:57', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408020938585891722562738589', '入库请求', 'requestIn', '[{\"userName\": \"管理员\", \"goodsList\": [{\"weight\": null, \"goodsId\": \"555555555/CS\", \"goodsNum\": 25, \"goodsDesc\": \"\", \"goodsName\": \"\", \"goodsType\": \"\", \"goodsUnit\": \"\", \"singleWeight\": null}], \"vehicleId\": \"ASRS000001\", \"originPoint\": \"\", \"totalWeight\": null}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"接收入库请求成功!\\\"}\"', '127.0.0.1', '2024-08-02 09:38:59', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408020939067181722562746718', 'Wcs请求载具入库', 'wcsVehicleIn', '[{\"point\": \"R1\", \"remark\": \"\", \"vehicleNo\": \"ASRS000001\", \"codeMessage\": \"ASRS000001\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理载具入库请求成功!\\\"}\"', '192.168.8.62', '2024-08-02 09:39:07', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408020939078921722562747892', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"04-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408020938585741722562738574\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000001\\\",\\\"vehicleSize\\\":1}]\"', '\"{\\\"code\\\":0,\\\"message\\\":\\\"任务创建成功,任务号:202408020938585741722562738574\\\",\\\"returnData\\\":[]}\"', 'http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-02 09:39:08', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408020939210301722562761030', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408020938262921722562706292\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000184\", \"taskStatus\": 100, \"destination\": \"03-01-01-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 09:39:21', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408020939245541722562764554', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408020938585741722562738574\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000001\", \"taskStatus\": 2, \"destination\": \"04-01-01-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 09:39:25', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408020939490111722562789011', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408020938585741722562738574\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000001\", \"taskStatus\": 100, \"destination\": \"04-01-01-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 09:39:49', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408020942343131722562954313', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408020942320511722562952051\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000180\\\"},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408020942320751722562952075\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000117\\\"},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408020942321291722562952129\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000179\\\"},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408020942321611722562952161\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000184\\\"}]\"', '\"{\\\"code\\\":0,\\\"message\\\":\\\"任务创建成功,任务号:202408020942320511722562952051,202408020942320751722562952075,202408020942321291722562952129,202408020942321611722562952161\\\",\\\"returnData\\\":[]}\"', 'http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-02 09:42:34', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408020942344191722562954419', '向WCS发送拣选任务', 'setConveyTask', '\"[{\\\"location\\\":[\\\"ASRS-#2\\\"],\\\"remark\\\":\\\"站台拣选任务\\\",\\\"taskGroup\\\":\\\"ASRS000117202408020942343241722562954324\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000117\\\"}]\"', '\"{\\\"code\\\":0,\\\"message\\\":\\\"操作成功\\\"}\"', 'http://192.168.8.62:18990/api/wms/convey/conveyTask', '2024-08-02 09:42:34', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408020942353761722562955376', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408020942320751722562952075\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000117\", \"taskStatus\": 2, \"destination\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 09:42:35', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408020942353791722562955379', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408020942320511722562952051\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000180\", \"taskStatus\": 2, \"destination\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 09:42:35', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408020942363091722562956309', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408020942321611722562952161\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000184\", \"taskStatus\": 2, \"destination\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 09:42:36', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408020943022651722562982265', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408020942321611722562952161\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000184\", \"taskStatus\": 100, \"destination\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 09:43:02', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408020943039831722562983983', '向WCS发送拣选任务', 'setConveyTask', '\"[{\\\"location\\\":[\\\"ASRS-#3\\\"],\\\"remark\\\":\\\"站台拣选任务\\\",\\\"taskGroup\\\":\\\"ASRS000184202408020943038671722562983867\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000184\\\"}]\"', '\"{\\\"code\\\":0,\\\"message\\\":\\\"操作成功\\\"}\"', 'http://192.168.8.62:18990/api/wms/convey/conveyTask', '2024-08-02 09:43:04', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408020943122251722562992225', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408020942320751722562952075\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000117\", \"taskStatus\": 100, \"destination\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 09:43:12', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408020943122461722562992246', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408020942320511722562952051\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000180\", \"taskStatus\": 100, \"destination\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 09:43:12', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408020943140531722562994053', '向WCS发送拣选任务', 'setConveyTask', '\"[{\\\"location\\\":[\\\"ASRS-#1\\\"],\\\"remark\\\":\\\"站台拣选任务\\\",\\\"taskGroup\\\":\\\"ASRS000180202408020943139171722562993917\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000180\\\"},{\\\"location\\\":[\\\"ASRS-#1\\\"],\\\"remark\\\":\\\"站台拣选任务\\\",\\\"taskGroup\\\":\\\"ASRS000117202408020943139291722562993929\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000117\\\"}]\"', '\"{\\\"code\\\":0,\\\"message\\\":\\\"操作成功\\\"}\"', 'http://192.168.8.62:18990/api/wms/convey/conveyTask', '2024-08-02 09:43:14', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408020943157421722562995742', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408020942321291722562952129\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000179\", \"taskStatus\": 2, \"destination\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 09:43:16', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408020943432071722563023207', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408020942321291722562952129\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000179\", \"taskStatus\": 100, \"destination\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 09:43:43', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408020943440841722563024084', '向WCS发送拣选任务', 'setConveyTask', '\"[{\\\"location\\\":[\\\"ASRS-#2\\\"],\\\"remark\\\":\\\"站台拣选任务\\\",\\\"taskGroup\\\":\\\"ASRS000179202408020943440111722563024011\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000179\\\"}]\"', '\"{\\\"code\\\":0,\\\"message\\\":\\\"操作成功\\\"}\"', 'http://192.168.8.62:18990/api/wms/convey/conveyTask', '2024-08-02 09:43:44', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408020945195711722563119571', '带密码登录', 'loginWithAuth', '[{\"isAsc\": true, \"pageNo\": 1, \"roleId\": null, \"sortBy\": \"\", \"userId\": null, \"addTime\": null, \"addUser\": \"\", \"pageSize\": 10, \"userName\": \"\", \"updateTime\": null, \"loginAccount\": \"admin\", \"loginPassword\": \"admin\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"登录成功\\\",\\\"returnData\\\":{\\\"menuList\\\":[{\\\"children\\\":[{\\\"children\\\":[],\\\"id\\\":\\\"11\\\",\\\"labelName\\\":\\\"入库\\\",\\\"path\\\":\\\"/goodsIn\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"12\\\",\\\"labelName\\\":\\\"出库\\\",\\\"path\\\":\\\"/goodsOut\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"13\\\",\\\"labelName\\\":\\\"盘点\\\",\\\"path\\\":\\\"/inventory\\\"}],\\\"iconValue\\\":\\\"Operation\\\",\\\"id\\\":\\\"1\\\",\\\"labelName\\\":\\\"操作\\\",\\\"path\\\":\\\"\\\"},{\\\"children\\\":[{\\\"children\\\":[],\\\"id\\\":\\\"21\\\",\\\"labelName\\\":\\\"库存信息\\\",\\\"path\\\":\\\"/stock\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"22\\\",\\\"labelName\\\":\\\"物料信息\\\",\\\"path\\\":\\\"/goods\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"23\\\",\\\"labelName\\\":\\\"入库记录\\\",\\\"path\\\":\\\"/inTaskRecord\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"24\\\",\\\"labelName\\\":\\\"出库记录\\\",\\\"path\\\":\\\"/outTaskRecord\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"241\\\",\\\"labelName\\\":\\\"盘点记录\\\",\\\"path\\\":\\\"/inventoryRecord\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"25\\\",\\\"labelName\\\":\\\"任务监控\\\",\\\"path\\\":\\\"/taskMonitor\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"26\\\",\\\"labelName\\\":\\\"库位监控\\\",\\\"path\\\":\\\"/location\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"28\\\",\\\"labelName\\\":\\\"接口日志\\\",\\\"path\\\":\\\"/wmsLog\\\"}],\\\"iconValue\\\":\\\"Histogram\\\",\\\"id\\\":\\\"2\\\",\\\"labelName\\\":\\\"数据\\\",\\\"path\\\":\\\"\\\"},{\\\"children\\\":[{\\\"children\\\":[],\\\"id\\\":\\\"35\\\",\\\"labelName\\\":\\\"系统配置\\\",\\\"path\\\":\\\"/config\\\"}],\\\"iconValue\\\":\\\"Setting\\\",\\\"id\\\":\\\"3\\\",\\\"labelName\\\":\\\"系统\\\"},{\\\"children\\\":[{\\\"children\\\":[],\\\"id\\\":\\\"41\\\",\\\"labelName\\\":\\\"备料执行\\\",\\\"path\\\":\\\"/testDoKitting\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"42\\\",\\\"labelName\\\":\\\"备料完成\\\",\\\"path\\\":\\\"/testFinishKitting\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"43\\\",\\\"labelName\\\":\\\"呼叫空箱\\\",\\\"path\\\":\\\"/testCallEmptyVehicle\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"44\\\",\\\"labelName\\\":\\\"整理盒子\\\",\\\"path\\\":\\\"/testSortBoxs\\\"}],\\\"iconValue\\\":\\\"Lock\\\",\\\"id\\\":\\\"4\\\",\\\"labelName\\\":\\\"测试\\\"}],\\\"standId\\\":\\\"\\\",\\\"user\\\":{\\\"addTime\\\":\\\"2023-03-23 11:17:06\\\",\\\"addUser\\\":\\\"系统\\\",\\\"loginAccount\\\":\\\"admin\\\",\\\"loginPassword\\\":\\\"812C0C84E2970FA98456DDC5B0B59594\\\",\\\"roleId\\\":1,\\\"updateTime\\\":\\\"2023-03-23 11:17:10\\\",\\\"userId\\\":1,\\\"userName\\\":\\\"管理员\\\"}}}\"', '192.168.8.93', '2024-08-02 09:45:20', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408020945581641722563158164', '带密码登录', 'loginWithAuth', '[{\"isAsc\": true, \"pageNo\": 1, \"roleId\": null, \"sortBy\": \"\", \"userId\": null, \"addTime\": null, \"addUser\": \"\", \"pageSize\": 10, \"userName\": \"\", \"updateTime\": null, \"loginAccount\": \"admin\", \"loginPassword\": \"admin\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"登录成功\\\",\\\"returnData\\\":{\\\"menuList\\\":[{\\\"children\\\":[{\\\"children\\\":[],\\\"id\\\":\\\"11\\\",\\\"labelName\\\":\\\"入库\\\",\\\"path\\\":\\\"/goodsIn\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"12\\\",\\\"labelName\\\":\\\"出库\\\",\\\"path\\\":\\\"/goodsOut\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"13\\\",\\\"labelName\\\":\\\"盘点\\\",\\\"path\\\":\\\"/inventory\\\"}],\\\"iconValue\\\":\\\"Operation\\\",\\\"id\\\":\\\"1\\\",\\\"labelName\\\":\\\"操作\\\",\\\"path\\\":\\\"\\\"},{\\\"children\\\":[{\\\"children\\\":[],\\\"id\\\":\\\"21\\\",\\\"labelName\\\":\\\"库存信息\\\",\\\"path\\\":\\\"/stock\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"22\\\",\\\"labelName\\\":\\\"物料信息\\\",\\\"path\\\":\\\"/goods\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"23\\\",\\\"labelName\\\":\\\"入库记录\\\",\\\"path\\\":\\\"/inTaskRecord\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"24\\\",\\\"labelName\\\":\\\"出库记录\\\",\\\"path\\\":\\\"/outTaskRecord\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"241\\\",\\\"labelName\\\":\\\"盘点记录\\\",\\\"path\\\":\\\"/inventoryRecord\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"25\\\",\\\"labelName\\\":\\\"任务监控\\\",\\\"path\\\":\\\"/taskMonitor\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"26\\\",\\\"labelName\\\":\\\"库位监控\\\",\\\"path\\\":\\\"/location\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"28\\\",\\\"labelName\\\":\\\"接口日志\\\",\\\"path\\\":\\\"/wmsLog\\\"}],\\\"iconValue\\\":\\\"Histogram\\\",\\\"id\\\":\\\"2\\\",\\\"labelName\\\":\\\"数据\\\",\\\"path\\\":\\\"\\\"},{\\\"children\\\":[{\\\"children\\\":[],\\\"id\\\":\\\"35\\\",\\\"labelName\\\":\\\"系统配置\\\",\\\"path\\\":\\\"/config\\\"}],\\\"iconValue\\\":\\\"Setting\\\",\\\"id\\\":\\\"3\\\",\\\"labelName\\\":\\\"系统\\\"},{\\\"children\\\":[{\\\"children\\\":[],\\\"id\\\":\\\"41\\\",\\\"labelName\\\":\\\"备料执行\\\",\\\"path\\\":\\\"/testDoKitting\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"42\\\",\\\"labelName\\\":\\\"备料完成\\\",\\\"path\\\":\\\"/testFinishKitting\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"43\\\",\\\"labelName\\\":\\\"呼叫空箱\\\",\\\"path\\\":\\\"/testCallEmptyVehicle\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"44\\\",\\\"labelName\\\":\\\"整理盒子\\\",\\\"path\\\":\\\"/testSortBoxs\\\"}],\\\"iconValue\\\":\\\"Lock\\\",\\\"id\\\":\\\"4\\\",\\\"labelName\\\":\\\"测试\\\"}],\\\"standId\\\":\\\"ASRS-#2\\\",\\\"user\\\":{\\\"addTime\\\":\\\"2023-03-23 11:17:06\\\",\\\"addUser\\\":\\\"系统\\\",\\\"loginAccount\\\":\\\"admin\\\",\\\"loginPassword\\\":\\\"812C0C84E2970FA98456DDC5B0B59594\\\",\\\"roleId\\\":1,\\\"updateTime\\\":\\\"2023-03-23 11:17:10\\\",\\\"userId\\\":1,\\\"userName\\\":\\\"管理员\\\"}}}\"', '192.168.8.62', '2024-08-02 09:45:58', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408020946515651722563211565', '带密码登录', 'loginWithAuth', '[{\"isAsc\": true, \"pageNo\": 1, \"roleId\": null, \"sortBy\": \"\", \"userId\": null, \"addTime\": null, \"addUser\": \"\", \"pageSize\": 10, \"userName\": \"\", \"updateTime\": null, \"loginAccount\": \"user\", \"loginPassword\": \"user\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"登录错误,用户不存在或密码错误\\\"}\"', '192.168.8.119', '2024-08-02 09:46:52', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408020946562871722563216287', 'Wcs上报箱子到达', 'boxArrive', '[{\"remark\": \"\", \"location\": \"ASRS-#1\", \"taskGroup\": \"\", \"vehicleNo\": \"ASRS000180\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"上报成功\\\"}\"', '192.168.8.62', '2024-08-02 09:46:56', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408020947076161722563227616', '带密码登录', 'loginWithAuth', '[{\"isAsc\": true, \"pageNo\": 1, \"roleId\": null, \"sortBy\": \"\", \"userId\": null, \"addTime\": null, \"addUser\": \"\", \"pageSize\": 10, \"userName\": \"\", \"updateTime\": null, \"loginAccount\": \"admin\", \"loginPassword\": \"admin\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"登录成功\\\",\\\"returnData\\\":{\\\"menuList\\\":[{\\\"children\\\":[{\\\"children\\\":[],\\\"id\\\":\\\"11\\\",\\\"labelName\\\":\\\"入库\\\",\\\"path\\\":\\\"/goodsIn\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"12\\\",\\\"labelName\\\":\\\"出库\\\",\\\"path\\\":\\\"/goodsOut\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"13\\\",\\\"labelName\\\":\\\"盘点\\\",\\\"path\\\":\\\"/inventory\\\"}],\\\"iconValue\\\":\\\"Operation\\\",\\\"id\\\":\\\"1\\\",\\\"labelName\\\":\\\"操作\\\",\\\"path\\\":\\\"\\\"},{\\\"children\\\":[{\\\"children\\\":[],\\\"id\\\":\\\"21\\\",\\\"labelName\\\":\\\"库存信息\\\",\\\"path\\\":\\\"/stock\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"22\\\",\\\"labelName\\\":\\\"物料信息\\\",\\\"path\\\":\\\"/goods\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"23\\\",\\\"labelName\\\":\\\"入库记录\\\",\\\"path\\\":\\\"/inTaskRecord\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"24\\\",\\\"labelName\\\":\\\"出库记录\\\",\\\"path\\\":\\\"/outTaskRecord\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"241\\\",\\\"labelName\\\":\\\"盘点记录\\\",\\\"path\\\":\\\"/inventoryRecord\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"25\\\",\\\"labelName\\\":\\\"任务监控\\\",\\\"path\\\":\\\"/taskMonitor\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"26\\\",\\\"labelName\\\":\\\"库位监控\\\",\\\"path\\\":\\\"/location\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"28\\\",\\\"labelName\\\":\\\"接口日志\\\",\\\"path\\\":\\\"/wmsLog\\\"}],\\\"iconValue\\\":\\\"Histogram\\\",\\\"id\\\":\\\"2\\\",\\\"labelName\\\":\\\"数据\\\",\\\"path\\\":\\\"\\\"},{\\\"children\\\":[{\\\"children\\\":[],\\\"id\\\":\\\"35\\\",\\\"labelName\\\":\\\"系统配置\\\",\\\"path\\\":\\\"/config\\\"}],\\\"iconValue\\\":\\\"Setting\\\",\\\"id\\\":\\\"3\\\",\\\"labelName\\\":\\\"系统\\\"},{\\\"children\\\":[{\\\"children\\\":[],\\\"id\\\":\\\"41\\\",\\\"labelName\\\":\\\"备料执行\\\",\\\"path\\\":\\\"/testDoKitting\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"42\\\",\\\"labelName\\\":\\\"备料完成\\\",\\\"path\\\":\\\"/testFinishKitting\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"43\\\",\\\"labelName\\\":\\\"呼叫空箱\\\",\\\"path\\\":\\\"/testCallEmptyVehicle\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"44\\\",\\\"labelName\\\":\\\"整理盒子\\\",\\\"path\\\":\\\"/testSortBoxs\\\"}],\\\"iconValue\\\":\\\"Lock\\\",\\\"id\\\":\\\"4\\\",\\\"labelName\\\":\\\"测试\\\"}],\\\"standId\\\":\\\"ASRS-#3\\\",\\\"user\\\":{\\\"addTime\\\":\\\"2023-03-23 11:17:06\\\",\\\"addUser\\\":\\\"系统\\\",\\\"loginAccount\\\":\\\"admin\\\",\\\"loginPassword\\\":\\\"812C0C84E2970FA98456DDC5B0B59594\\\",\\\"roleId\\\":1,\\\"updateTime\\\":\\\"2023-03-23 11:17:10\\\",\\\"userId\\\":1,\\\"userName\\\":\\\"管理员\\\"}}}\"', '192.168.8.119', '2024-08-02 09:47:08', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408020947256731722563245673', 'Wcs上报箱子到达', 'boxArrive', '[{\"remark\": \"\", \"location\": \"ASRS-#2\", \"taskGroup\": \"\", \"vehicleNo\": \"ASRS000179\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"上报成功\\\"}\"', '192.168.8.62', '2024-08-02 09:47:26', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408020948167291722563296729', '获取备料工作信息', 'getWorkByStandAndGoods', '[{\"goodsId\": \"333333333/CS\", \"standId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"获取不到正确的站台号\\\"}\"', '192.168.8.93', '2024-08-02 09:48:17', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408020949005631722563340563', '带密码登录', 'loginWithAuth', '[{\"isAsc\": true, \"pageNo\": 1, \"roleId\": null, \"sortBy\": \"\", \"userId\": null, \"addTime\": null, \"addUser\": \"\", \"pageSize\": 10, \"userName\": \"\", \"updateTime\": null, \"loginAccount\": \"admin\", \"loginPassword\": \"admin\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"登录成功\\\",\\\"returnData\\\":{\\\"menuList\\\":[{\\\"children\\\":[{\\\"children\\\":[],\\\"id\\\":\\\"11\\\",\\\"labelName\\\":\\\"入库\\\",\\\"path\\\":\\\"/goodsIn\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"12\\\",\\\"labelName\\\":\\\"出库\\\",\\\"path\\\":\\\"/goodsOut\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"13\\\",\\\"labelName\\\":\\\"盘点\\\",\\\"path\\\":\\\"/inventory\\\"}],\\\"iconValue\\\":\\\"Operation\\\",\\\"id\\\":\\\"1\\\",\\\"labelName\\\":\\\"操作\\\",\\\"path\\\":\\\"\\\"},{\\\"children\\\":[{\\\"children\\\":[],\\\"id\\\":\\\"21\\\",\\\"labelName\\\":\\\"库存信息\\\",\\\"path\\\":\\\"/stock\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"22\\\",\\\"labelName\\\":\\\"物料信息\\\",\\\"path\\\":\\\"/goods\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"23\\\",\\\"labelName\\\":\\\"入库记录\\\",\\\"path\\\":\\\"/inTaskRecord\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"24\\\",\\\"labelName\\\":\\\"出库记录\\\",\\\"path\\\":\\\"/outTaskRecord\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"241\\\",\\\"labelName\\\":\\\"盘点记录\\\",\\\"path\\\":\\\"/inventoryRecord\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"25\\\",\\\"labelName\\\":\\\"任务监控\\\",\\\"path\\\":\\\"/taskMonitor\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"26\\\",\\\"labelName\\\":\\\"库位监控\\\",\\\"path\\\":\\\"/location\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"28\\\",\\\"labelName\\\":\\\"接口日志\\\",\\\"path\\\":\\\"/wmsLog\\\"}],\\\"iconValue\\\":\\\"Histogram\\\",\\\"id\\\":\\\"2\\\",\\\"labelName\\\":\\\"数据\\\",\\\"path\\\":\\\"\\\"},{\\\"children\\\":[{\\\"children\\\":[],\\\"id\\\":\\\"35\\\",\\\"labelName\\\":\\\"系统配置\\\",\\\"path\\\":\\\"/config\\\"}],\\\"iconValue\\\":\\\"Setting\\\",\\\"id\\\":\\\"3\\\",\\\"labelName\\\":\\\"系统\\\"},{\\\"children\\\":[{\\\"children\\\":[],\\\"id\\\":\\\"41\\\",\\\"labelName\\\":\\\"备料执行\\\",\\\"path\\\":\\\"/testDoKitting\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"42\\\",\\\"labelName\\\":\\\"备料完成\\\",\\\"path\\\":\\\"/testFinishKitting\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"43\\\",\\\"labelName\\\":\\\"呼叫空箱\\\",\\\"path\\\":\\\"/testCallEmptyVehicle\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"44\\\",\\\"labelName\\\":\\\"整理盒子\\\",\\\"path\\\":\\\"/testSortBoxs\\\"}],\\\"iconValue\\\":\\\"Lock\\\",\\\"id\\\":\\\"4\\\",\\\"labelName\\\":\\\"测试\\\"}],\\\"standId\\\":\\\"ASRS-#1\\\",\\\"user\\\":{\\\"addTime\\\":\\\"2023-03-23 11:17:06\\\",\\\"addUser\\\":\\\"系统\\\",\\\"loginAccount\\\":\\\"admin\\\",\\\"loginPassword\\\":\\\"812C0C84E2970FA98456DDC5B0B59594\\\",\\\"roleId\\\":1,\\\"updateTime\\\":\\\"2023-03-23 11:17:10\\\",\\\"userId\\\":1,\\\"userName\\\":\\\"管理员\\\"}}}\"', '192.168.8.93', '2024-08-02 09:49:01', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408020949159151722563355915', '获取备料工作信息', 'getWorkByStandAndGoods', '[{\"goodsId\": \"333333333/CS\", \"standId\": \"ASRS-#1\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"获取工作信息成功\\\",\\\"returnData\\\":{\\\"finishedCounts\\\":0,\\\"finishedRows\\\":0,\\\"goodsId\\\":\\\"333333333/CS\\\",\\\"planPickNum\\\":2.0000,\\\"remainNumOrigin\\\":28.0000,\\\"remainNumReal\\\":28.0000,\\\"remark\\\":\\\"装箱子\\\",\\\"standId\\\":\\\"ASRS-#1\\\",\\\"totalCounts\\\":10.0000,\\\"totalRows\\\":5}}\"', '192.168.8.93', '2024-08-02 09:49:16', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408020949318941722563371894', '获取电子标签反馈', 'getETaskFeedBack', '[{\"taskId\": \"WORKFLOW_202408020942318931722562951893\", \"goodsId\": \"333333333/CS\", \"needNum\": 2, \"orderId\": \"333333333/CS_202408020949158131722563355813\", \"location\": \"1-01\", \"taskType\": 1, \"goodsName\": \"测试物料3\", \"taskGroup\": \"ASRS000180_202408020949158111722563355811\", \"vehicleNo\": \"ASRS000180\", \"confirmNum\": 2}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 09:49:32', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408020949350811722563375081', '向WCS发送释放箱子请求', 'URL_WCS_DISPOSE_VEHICLE', '\"{\\\"location\\\":\\\"ASRS-#1\\\",\\\"vehicleNo\\\":\\\"ASRS000180\\\"}\"', '\"{\\\"code\\\":0,\\\"message\\\":\\\"操作成功\\\"}\"', 'http://192.168.8.62:18990/api/wms/convey/disposeVehicle', '2024-08-02 09:49:35', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408020949350841722563375084', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"ASRS-#1\", \"vehicleNo\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"确认成功,放行\\\"}\"', '192.168.8.62', '2024-08-02 09:49:35', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408020949377151722563377715', 'Wcs上报箱子到达', 'boxArrive', '[{\"remark\": \"\", \"location\": \"ASRS-#1\", \"taskGroup\": \"\", \"vehicleNo\": \"ASRS000117\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"上报成功\\\"}\"', '192.168.8.62', '2024-08-02 09:49:38', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408020950083301722563408330', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000180\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 09:50:08', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408020950085691722563408569', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000180\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 09:50:09', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408020950103921722563410392', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"06-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408020950083271722563408327\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000180\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":0,\\\"message\\\":\\\"任务创建成功,任务号:202408020950083271722563408327\\\",\\\"returnData\\\":[]}\"', 'http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-02 09:50:10', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408020950337601722563433760', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408020950083271722563408327\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000180\", \"taskStatus\": 2, \"destination\": \"06-01-01-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 09:50:34', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408020950582291722563458229', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408020950083271722563408327\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000180\", \"taskStatus\": 100, \"destination\": \"06-01-01-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 09:50:58', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408020952283381722563548338', '获取备料工作信息', 'getWorkByStandAndGoods', '[{\"goodsId\": \"444444444/CS\", \"standId\": \"ASRS-#3\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"当前站台查不到正在拣选的箱子\\\"}\"', '192.168.8.119', '2024-08-02 09:52:28', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408020952519051722563571905', '向WCS发送释放箱子请求', 'URL_WCS_DISPOSE_VEHICLE', '\"{\\\"location\\\":\\\"ASRS-#3\\\"}\"', '\"{\\\"code\\\":0,\\\"message\\\":\\\"操作成功\\\"}\"', 'http://192.168.8.62:18990/api/wms/convey/disposeVehicle', '2024-08-02 09:52:52', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408020952519151722563571915', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"ASRS-#3\", \"vehicleNo\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"确认成功,放行\\\"}\"', '192.168.8.62', '2024-08-02 09:52:52', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408020952544591722563574459', 'Wcs上报箱子到达', 'boxArrive', '[{\"remark\": \"\", \"location\": \"ASRS-#3\", \"taskGroup\": \"\", \"vehicleNo\": \"ASRS000184\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"上报成功\\\"}\"', '192.168.8.62', '2024-08-02 09:52:54', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408020953176591722563597659', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000154\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 09:53:18', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408020953178811722563597881', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000154\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 09:53:18', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408020953181301722563598130', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000154\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 09:53:18', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408020953184361722563598436', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"08-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408020953176571722563597657\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000154\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":0,\\\"message\\\":\\\"任务创建成功,任务号:202408020953176571722563597657\\\",\\\"returnData\\\":[]}\"', 'http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-02 09:53:18', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408020953360201722563616020', '获取备料工作信息', 'getWorkByStandAndGoods', '[{\"goodsId\": \"444444444/CS\", \"standId\": \"ASRS-#3\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"获取工作信息成功\\\",\\\"returnData\\\":{\\\"finishedCounts\\\":2,\\\"finishedRows\\\":1,\\\"goodsId\\\":\\\"444444444/CS\\\",\\\"planPickNum\\\":2.0000,\\\"remainNumOrigin\\\":8.0000,\\\"remainNumReal\\\":8.0000,\\\"remark\\\":\\\"装箱子\\\",\\\"standId\\\":\\\"ASRS-#3\\\",\\\"totalCounts\\\":10.0000,\\\"totalRows\\\":5}}\"', '192.168.8.119', '2024-08-02 09:53:36', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408020953408931722563620893', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408020953176571722563597657\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000154\", \"taskStatus\": 2, \"destination\": \"08-01-01-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 09:53:41', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408020953449711722563624971', '获取电子标签反馈', 'getETaskFeedBack', '[{\"taskId\": \"WORKFLOW_202408020942321461722562952146\", \"goodsId\": \"444444444/CS\", \"needNum\": 2, \"orderId\": \"444444444/CS_202408020953359361722563615936\", \"location\": \"3-01\", \"taskType\": 1, \"goodsName\": \"测试物料4\", \"taskGroup\": \"ASRS000184_202408020953359331722563615933\", \"vehicleNo\": \"ASRS000184\", \"confirmNum\": 2}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 09:53:45', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408020953500271722563630027', '向WCS发送释放箱子请求', 'URL_WCS_DISPOSE_VEHICLE', '\"{\\\"location\\\":\\\"ASRS-#3\\\",\\\"vehicleNo\\\":\\\"ASRS000184\\\"}\"', '\"{\\\"code\\\":0,\\\"message\\\":\\\"操作成功\\\"}\"', 'http://192.168.8.62:18990/api/wms/convey/disposeVehicle', '2024-08-02 09:53:50', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408020953500291722563630029', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"ASRS-#3\", \"vehicleNo\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"当前工作已经全部完成,请至完成界面进行后续工作。\\\"}\"', '192.168.8.62', '2024-08-02 09:53:50', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408020954082381722563648238', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408020953176571722563597657\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000154\", \"taskStatus\": 100, \"destination\": \"08-01-01-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 09:54:08', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408020954161091722563656109', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000184\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 09:54:16', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408020954163611722563656361', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000184\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 09:54:16', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408020954165011722563656501', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"02-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408020954160991722563656099\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000184\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":0,\\\"message\\\":\\\"任务创建成功,任务号:202408020954160991722563656099\\\",\\\"returnData\\\":[]}\"', 'http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-02 09:54:17', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408020954483531722563688353', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408020954160991722563656099\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000184\", \"taskStatus\": 2, \"destination\": \"02-01-01-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 09:54:48', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408020956549611722563814961', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408020954160991722563656099\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000184\", \"taskStatus\": 100, \"destination\": \"02-01-01-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 09:56:55', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408020959428581722563982858', '获取备料工作信息', 'getWorkByStandAndGoods', '[{\"goodsId\": \"6\", \"standId\": \"ASRS-#3\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"当前站台查不到正在拣选的箱子\\\"}\"', '192.168.8.119', '2024-08-02 09:59:43', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021000508801722564050880', '获取备料工作信息', 'getWorkByStandAndGoods', '[{\"goodsId\": \"123456789/CS\", \"standId\": \"ASRS-#2\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"获取工作信息成功\\\",\\\"returnData\\\":{\\\"finishedCounts\\\":4,\\\"finishedRows\\\":2,\\\"goodsId\\\":\\\"123456789/CS\\\",\\\"planPickNum\\\":2.0000,\\\"remainNumOrigin\\\":18.0000,\\\"remainNumReal\\\":18.0000,\\\"remark\\\":\\\"套袋子\\\",\\\"standId\\\":\\\"ASRS-#2\\\",\\\"totalCounts\\\":10.0000,\\\"totalRows\\\":5}}\"', '192.168.8.62', '2024-08-02 10:00:51', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021001048211722564064821', '获取电子标签反馈', 'getETaskFeedBack', '[{\"taskId\": \"WORKFLOW_202408020942321021722562952102\", \"goodsId\": \"123456789/CS\", \"needNum\": 2, \"orderId\": \"123456789/CS_202408021000507781722564050778\", \"location\": \"2-01\", \"taskType\": 1, \"goodsName\": \"测试物料1\", \"taskGroup\": \"ASRS000179_202408021000507761722564050776\", \"vehicleNo\": \"ASRS000179\", \"confirmNum\": 2}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 10:01:05', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021001115271722564071527', '向WCS发送释放箱子请求', 'URL_WCS_DISPOSE_VEHICLE', '\"{\\\"location\\\":\\\"ASRS-#2\\\",\\\"vehicleNo\\\":\\\"ASRS000179\\\"}\"', '\"{\\\"code\\\":0,\\\"message\\\":\\\"操作成功\\\"}\"', 'http://192.168.8.62:18990/api/wms/convey/disposeVehicle', '2024-08-02 10:01:12', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021001115291722564071529', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"ASRS-#2\", \"vehicleNo\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"确认成功,放行\\\"}\"', '192.168.8.62', '2024-08-02 10:01:12', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021001414391722564101439', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000179\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 10:01:41', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021001427171722564102717', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"03-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408021001414371722564101437\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000179\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":0,\\\"message\\\":\\\"任务创建成功,任务号:202408021001414371722564101437\\\",\\\"returnData\\\":[]}\"', 'http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-02 10:01:43', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021001542431722564114243', '获取备料工作信息', 'getWorkByStandAndGoods', '[{\"goodsId\": \"ASRS000117\", \"standId\": \"ASRS-#1\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求料号:ASRS000117与正在拣选的箱子:ASRS000117无对应关系\\\"}\"', '192.168.8.93', '2024-08-02 10:01:54', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021002118921722564131892', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021001414371722564101437\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000179\", \"taskStatus\": 2, \"destination\": \"03-01-01-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 10:02:12', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021002157181722564135718', '获取备料工作信息', 'getWorkByStandAndGoods', '[{\"goodsId\": \"222222222/CS\", \"standId\": \"ASRS-#1\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"获取工作信息成功\\\",\\\"returnData\\\":{\\\"finishedCounts\\\":6,\\\"finishedRows\\\":3,\\\"goodsId\\\":\\\"222222222/CS\\\",\\\"planPickNum\\\":2.0000,\\\"remainNumOrigin\\\":18.0000,\\\"remainNumReal\\\":18.0000,\\\"remark\\\":\\\"装箱子\\\",\\\"standId\\\":\\\"ASRS-#1\\\",\\\"totalCounts\\\":10.0000,\\\"totalRows\\\":5}}\"', '192.168.8.93', '2024-08-02 10:02:16', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021002325821722564152582', '获取电子标签反馈', 'getETaskFeedBack', '[{\"taskId\": \"WORKFLOW_202408020942318951722562951895\", \"goodsId\": \"222222222/CS\", \"needNum\": 2, \"orderId\": \"222222222/CS_202408021002156571722564135657\", \"location\": \"1-01\", \"taskType\": 1, \"goodsName\": \"测试物料2\", \"taskGroup\": \"ASRS000117_202408021002156551722564135655\", \"vehicleNo\": \"ASRS000117\", \"confirmNum\": 2}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 10:02:33', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021002352681722564155268', '向WCS发送释放箱子请求', 'URL_WCS_DISPOSE_VEHICLE', '\"{\\\"location\\\":\\\"ASRS-#1\\\",\\\"vehicleNo\\\":\\\"ASRS000117\\\"}\"', '\"{\\\"code\\\":0,\\\"message\\\":\\\"操作成功\\\"}\"', 'http://192.168.8.62:18990/api/wms/convey/disposeVehicle', '2024-08-02 10:02:35', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021002352701722564155270', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"ASRS-#1\", \"vehicleNo\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"当前工作已经全部完成,请至完成界面进行后续工作。\\\"}\"', '192.168.8.62', '2024-08-02 10:02:35', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021002362491722564156249', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021001414371722564101437\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000179\", \"taskStatus\": 100, \"destination\": \"03-01-01-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 10:02:36', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021002459621722564165962', 'Wcs上报箱子到达', 'boxArrive', '[{\"remark\": \"\", \"location\": \"ASRS-#2\", \"taskGroup\": \"\", \"vehicleNo\": \"ASRS000117\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"上报成功\\\"}\"', '192.168.8.62', '2024-08-02 10:02:46', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021003156941722564195694', '获取备料工作信息', 'getWorkByStandAndGoods', '[{\"goodsId\": \"222222222/CS\", \"standId\": \"ASRS-#2\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"获取工作信息成功\\\",\\\"returnData\\\":{\\\"finishedCounts\\\":8,\\\"finishedRows\\\":4,\\\"goodsId\\\":\\\"222222222/CS\\\",\\\"planPickNum\\\":2.0000,\\\"remainNumOrigin\\\":18.0000,\\\"remainNumReal\\\":18.0000,\\\"remark\\\":\\\"装箱子\\\",\\\"standId\\\":\\\"ASRS-#2\\\",\\\"totalCounts\\\":10.0000,\\\"totalRows\\\":5}}\"', '192.168.8.62', '2024-08-02 10:03:16', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021003177241722564197724', '确认当前拣货完成(wms界面触发)', 'confirmFinishWork', '[{\"goodsId\": \"222222222/CS\", \"standId\": \"ASRS-#2\", \"planPickNum\": null, \"remainNumReal\": 18, \"remainNumOrigin\": 18}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"站台灯光未全部拍灭,请检查。\\\"}\"', '192.168.8.62', '2024-08-02 10:03:18', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021003207751722564200775', '获取电子标签反馈', 'getETaskFeedBack', '[{\"taskId\": \"WORKFLOW_202408020942321031722562952103\", \"goodsId\": \"222222222/CS\", \"needNum\": 2, \"orderId\": \"222222222/CS_202408021003155681722564195568\", \"location\": \"2-02\", \"taskType\": 1, \"goodsName\": \"测试物料2\", \"taskGroup\": \"ASRS000117_202408021003155651722564195565\", \"vehicleNo\": \"ASRS000117\", \"confirmNum\": 2}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 10:03:21', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021003227091722564202709', '向WCS发送释放箱子请求', 'URL_WCS_DISPOSE_VEHICLE', '\"{\\\"location\\\":\\\"ASRS-#2\\\",\\\"vehicleNo\\\":\\\"ASRS000117\\\"}\"', '\"{\\\"code\\\":0,\\\"message\\\":\\\"操作成功\\\"}\"', 'http://192.168.8.62:18990/api/wms/convey/disposeVehicle', '2024-08-02 10:03:23', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021003227111722564202711', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"ASRS-#2\", \"vehicleNo\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"当前工作已经全部完成,请至完成界面进行后续工作。\\\"}\"', '192.168.8.62', '2024-08-02 10:03:23', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021004139711722564253971', '向WCS发送释放箱子请求', 'URL_WCS_DISPOSE_VEHICLE', '\"{\\\"location\\\":\\\"ASRS-#1\\\"}\"', '\"{\\\"code\\\":0,\\\"message\\\":\\\"操作成功\\\"}\"', 'http://192.168.8.62:18990/api/wms/convey/disposeVehicle', '2024-08-02 10:04:14', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021004139741722564253974', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"ASRS-#1\", \"vehicleNo\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"确认成功,放行\\\"}\"', '192.168.8.62', '2024-08-02 10:04:14', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021004493201722564289320', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000117\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 10:04:49', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021004507991722564290799', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"05-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408021004493171722564289317\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000117\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":0,\\\"message\\\":\\\"任务创建成功,任务号:202408021004493171722564289317\\\",\\\"returnData\\\":[]}\"', 'http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-02 10:04:51', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021004543741722564294374', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000117\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 10:04:54', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021005178581722564317858', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021004493171722564289317\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000117\", \"taskStatus\": 2, \"destination\": \"05-01-01-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 10:05:18', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021005422901722564342290', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021004493171722564289317\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000117\", \"taskStatus\": 100, \"destination\": \"05-01-01-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 10:05:42', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021006264351722564386435', '获取当前站台任务完成信息', 'getFinishedWorkInfo', '[{\"goodsId\": \"\", \"standId\": \"ASRS-#1\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"获取工作信息成功\\\",\\\"returnData\\\":{\\\"actualCounts\\\":10,\\\"actualRows\\\":5,\\\"planCounts\\\":10.0000,\\\"planRows\\\":5,\\\"remark\\\":\\\"正常\\\",\\\"standId\\\":\\\"ASRS-#1\\\",\\\"tip\\\":\\\"工作已经完成,请打印标签\\\"}}\"', '192.168.8.93', '2024-08-02 10:06:26', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021006286391722564388639', '工作完成确认', 'confirmFinishedWork', '[{\"goodsId\": \"\", \"standId\": \"ASRS-#1\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"确认失败:有标签未打印\\\"}\"', '192.168.8.93', '2024-08-02 10:06:29', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021007107081722564430708', '工作完成确认', 'confirmFinishedWork', '[{\"goodsId\": \"\", \"standId\": \"ASRS-#1\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"确认成功,请至收盒子界面完成后续操作。\\\"}\"', '192.168.8.93', '2024-08-02 10:07:11', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021019372601722565177260', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000034\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 10:19:37', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021019386901722565178690', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"07-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408021019372561722565177256\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000034\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":0,\\\"message\\\":\\\"任务创建成功,任务号:202408021019372561722565177256\\\",\\\"returnData\\\":[]}\"', 'http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-02 10:19:39', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021020027191722565202719', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021019372561722565177256\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000034\", \"taskStatus\": 2, \"destination\": \"07-01-01-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 10:20:03', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021020033251722565203325', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000036\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 10:20:03', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021020047121722565204712', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"09-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408021020033231722565203323\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000036\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":0,\\\"message\\\":\\\"任务创建成功,任务号:202408021020033231722565203323\\\",\\\"returnData\\\":[]}\"', 'http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-02 10:20:05', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021020102481722565210248', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000032\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 10:20:10', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021020104821722565210482', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000032\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 10:20:10', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021020107301722565210730', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"01-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408021020102361722565210236\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000032\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":0,\\\"message\\\":\\\"任务创建成功,任务号:202408021020102361722565210236\\\",\\\"returnData\\\":[]}\"', 'http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-02 10:20:11', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021020225211722565222521', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000042\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 10:20:23', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021020227421722565222742', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"02-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408021020225091722565222509\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000042\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":0,\\\"message\\\":\\\"任务创建成功,任务号:202408021020225091722565222509\\\",\\\"returnData\\\":[]}\"', 'http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-02 10:20:23', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021020272691722565227269', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021019372561722565177256\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000034\", \"taskStatus\": 100, \"destination\": \"07-01-01-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 10:20:27', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021020303521722565230352', '向WCS发送释放箱子请求', 'URL_WCS_DISPOSE_VEHICLE', '\"{\\\"location\\\":\\\"ASRS-#1\\\"}\"', '\"{\\\"code\\\":0,\\\"message\\\":\\\"操作成功\\\"}\"', 'http://192.168.8.62:18990/api/wms/convey/disposeVehicle', '2024-08-02 10:20:30', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021020303541722565230354', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"ASRS-#1\", \"vehicleNo\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"确认成功,放行\\\"}\"', '192.168.8.62', '2024-08-02 10:20:30', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021020342351722565234235', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000018\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 10:20:34', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021020344651722565234465', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000018\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 10:20:34', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021020347421722565234742', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"04-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408021020342331722565234233\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000018\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":0,\\\"message\\\":\\\"任务创建成功,任务号:202408021020342331722565234233\\\",\\\"returnData\\\":[]}\"', 'http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-02 10:20:35', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021020425751722565242575', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000036\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 10:20:43', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021020428651722565242865', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000036\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 10:20:43', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021020431481722565243148', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021020102361722565210236\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000032\", \"taskStatus\": 2, \"destination\": \"01-01-02-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 10:20:43', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021020465041722565246504', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000087\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 10:20:47', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021020467441722565246744', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"06-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408021020465011722565246501\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000087\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":0,\\\"message\\\":\\\"任务创建成功,任务号:202408021020465011722565246501\\\",\\\"returnData\\\":[]}\"', 'http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-02 10:20:47', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021020468051722565246805', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000087\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 10:20:47', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021020470741722565247074', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000087\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 10:20:47', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021020531391722565253139', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021020225091722565222509\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000042\", \"taskStatus\": 2, \"destination\": \"02-01-02-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 10:20:53', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021021015441722565261544', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000043\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 10:21:02', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021021021261722565262126', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021020342331722565234233\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000018\", \"taskStatus\": 2, \"destination\": \"04-01-02-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 10:21:02', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021021027441722565262744', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"08-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408021021015411722565261541\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000043\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":0,\\\"message\\\":\\\"任务创建成功,任务号:202408021021015411722565261541\\\",\\\"returnData\\\":[]}\"', 'http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-02 10:21:03', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021021051391722565265139', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000041\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 10:21:05', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021021056641722565265664', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021020033231722565203323\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000036\", \"taskStatus\": 2, \"destination\": \"09-01-01-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 10:21:06', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021021067321722565266732', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"01-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408021021051361722565265136\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000041\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":0,\\\"message\\\":\\\"任务创建成功,任务号:202408021021051361722565265136\\\",\\\"returnData\\\":[]}\"', 'http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-02 10:21:07', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021021082941722565268294', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021020102361722565210236\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000032\", \"taskStatus\": 100, \"destination\": \"01-01-02-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 10:21:08', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021021121391722565272139', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021020465011722565246501\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000087\", \"taskStatus\": 2, \"destination\": \"06-01-02-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 10:21:12', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021021168361722565276836', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000040\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 10:21:17', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021021171071722565277107', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000040\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 10:21:17', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021021173761722565277376', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000040\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 10:21:17', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021021187731722565278773', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"03-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408021021168341722565276834\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000040\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":0,\\\"message\\\":\\\"任务创建成功,任务号:202408021021168341722565276834\\\",\\\"returnData\\\":[]}\"', 'http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-02 10:21:19', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021021258491722565285849', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000143\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 10:21:26', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021021260781722565286078', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000143\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 10:21:26', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021021267531722565286753', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"05-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408021021258471722565285847\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000143\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":0,\\\"message\\\":\\\"任务创建成功,任务号:202408021021258471722565285847\\\",\\\"returnData\\\":[]}\"', 'http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-02 10:21:27', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021021272491722565287249', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021020342331722565234233\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000018\", \"taskStatus\": 100, \"destination\": \"04-01-02-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 10:21:27', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021021288301722565288830', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000002\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 10:21:29', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021021301661722565290166', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021021015411722565261541\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000043\", \"taskStatus\": 2, \"destination\": \"08-01-02-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 10:21:30', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021021302831722565290283', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021020033231722565203323\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000036\", \"taskStatus\": 100, \"destination\": \"09-01-01-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 10:21:30', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021021307831722565290783', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"07-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408021021288291722565288829\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000002\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":0,\\\"message\\\":\\\"任务创建成功,任务号:202408021021288291722565288829\\\",\\\"returnData\\\":[]}\"', 'http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-02 10:21:31', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021021339151722565293915', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000002\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 10:21:34', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021021371491722565297149', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021021051361722565265136\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000041\", \"taskStatus\": 2, \"destination\": \"01-01-03-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 10:21:37', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021021372901722565297290', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021020465011722565246501\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000087\", \"taskStatus\": 100, \"destination\": \"06-01-02-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 10:21:37', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021021417141722565301714', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000039\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 10:21:42', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021021419871722565301987', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000039\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 10:21:42', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021021427541722565302754', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"09-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408021021417121722565301712\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000039\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":0,\\\"message\\\":\\\"任务创建成功,任务号:202408021021417121722565301712\\\",\\\"returnData\\\":[]}\"', 'http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-02 10:21:43', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021021541581722565314158', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021021258471722565285847\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000143\", \"taskStatus\": 2, \"destination\": \"05-01-02-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 10:21:54', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021021552611722565315261', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021021015411722565261541\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000043\", \"taskStatus\": 100, \"destination\": \"08-01-02-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 10:21:55', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021021552771722565315277', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021021288291722565288829\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000002\", \"taskStatus\": 2, \"destination\": \"07-01-02-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 10:21:55', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021022023341722565322334', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021021051361722565265136\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000041\", \"taskStatus\": 100, \"destination\": \"01-01-03-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 10:22:02', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021022046771722565324677', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021021417121722565301712\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000039\", \"taskStatus\": 2, \"destination\": \"09-01-02-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 10:22:05', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021022114251722565331425', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000081\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 10:22:11', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021022116771722565331677', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000081\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 10:22:12', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021022127951722565332795', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"01-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408021022114241722565331424\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000081\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":0,\\\"message\\\":\\\"任务创建成功,任务号:202408021022114241722565331424\\\",\\\"returnData\\\":[]}\"', 'http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-02 10:22:13', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021022153111722565335311', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000003\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 10:22:15', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021022155971722565335597', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000003\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 10:22:16', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021022167841722565336784', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"03-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408021022153091722565335309\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000003\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":0,\\\"message\\\":\\\"任务创建成功,任务号:202408021022153091722565335309\\\",\\\"returnData\\\":[]}\"', 'http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-02 10:22:17', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021022182921722565338292', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021021258471722565285847\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000143\", \"taskStatus\": 100, \"destination\": \"05-01-02-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 10:22:18', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021022202801722565340280', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021021288291722565288829\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000002\", \"taskStatus\": 100, \"destination\": \"07-01-02-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 10:22:20', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021022237061722565343706', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000008\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 10:22:24', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021022239771722565343977', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000008\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 10:22:24', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021022242661722565344266', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000008\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 10:22:24', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021022247931722565344793', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"04-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408021022237041722565343704\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000008\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":0,\\\"message\\\":\\\"任务创建成功,任务号:202408021022237041722565343704\\\",\\\"returnData\\\":[]}\"', 'http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-02 10:22:25', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021022292841722565349284', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021021417121722565301712\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000039\", \"taskStatus\": 100, \"destination\": \"09-01-02-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 10:22:29', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021022436391722565363639', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021022114241722565331424\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000081\", \"taskStatus\": 2, \"destination\": \"01-01-04-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 10:22:44', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021022438441722565363844', '向WCS发送释放箱子请求', 'URL_WCS_DISPOSE_VEHICLE', '\"{\\\"location\\\":\\\"ASRS-#1\\\"}\"', '\"{\\\"code\\\":0,\\\"message\\\":\\\"操作成功\\\"}\"', 'http://192.168.8.62:18990/api/wms/convey/disposeVehicle', '2024-08-02 10:22:44', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021022438471722565363847', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"ASRS-#1\", \"vehicleNo\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"确认成功,放行\\\"}\"', '192.168.8.62', '2024-08-02 10:22:44', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021022516711722565371671', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021022237041722565343704\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000008\", \"taskStatus\": 2, \"destination\": \"04-01-03-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 10:22:52', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021022528351722565372835', '向WCS发送释放箱子请求', 'URL_WCS_DISPOSE_VEHICLE', '\"{\\\"location\\\":\\\"ASRS-#1\\\"}\"', '\"{\\\"code\\\":0,\\\"message\\\":\\\"操作成功\\\"}\"', 'http://192.168.8.62:18990/api/wms/convey/disposeVehicle', '2024-08-02 10:22:53', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021022528381722565372838', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"ASRS-#1\", \"vehicleNo\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"确认成功,放行\\\"}\"', '192.168.8.62', '2024-08-02 10:22:53', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021022543731722565374373', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000010\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 10:22:54', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021022548551722565374855', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"06-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408021022543711722565374371\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000010\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":0,\\\"message\\\":\\\"任务创建成功,任务号:202408021022543711722565374371\\\",\\\"returnData\\\":[]}\"', 'http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-02 10:22:55', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021022579501722565377950', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000006\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 10:22:58', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021022581871722565378187', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000006\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 10:22:58', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021022588341722565378834', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"08-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408021022579481722565377948\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000006\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":0,\\\"message\\\":\\\"任务创建成功,任务号:202408021022579481722565377948\\\",\\\"returnData\\\":[]}\"', 'http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-02 10:22:59', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021023015451722565381545', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000082\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 10:23:02', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021023017771722565381777', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000082\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 10:23:02', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021023028451722565382845', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"01-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408021023015431722565381543\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000082\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":0,\\\"message\\\":\\\"任务创建成功,任务号:202408021023015431722565381543\\\",\\\"returnData\\\":[]}\"', 'http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-02 10:23:03', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021023102621722565390262', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021022114241722565331424\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000081\", \"taskStatus\": 100, \"destination\": \"01-01-04-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 10:23:10', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021023117111722565391711', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000016\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 10:23:12', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021023119791722565391979', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000016\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 10:23:12', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021023128551722565392855', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"02-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408021023117101722565391710\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000016\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":0,\\\"message\\\":\\\"任务创建成功,任务号:202408021023117101722565391710\\\",\\\"returnData\\\":[]}\"', 'http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-02 10:23:13', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021023172831722565397283', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021022237041722565343704\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000008\", \"taskStatus\": 100, \"destination\": \"04-01-03-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 10:23:17', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021023196711722565399671', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021022543711722565374371\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000010\", \"taskStatus\": 2, \"destination\": \"06-01-03-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 10:23:20', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021023208101722565400810', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021022579481722565377948\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000006\", \"taskStatus\": 2, \"destination\": \"08-01-03-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 10:23:21', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021023257561722565405756', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000085\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 10:23:26', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021023270971722565407097', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"05-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408021023257541722565405754\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000085\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":0,\\\"message\\\":\\\"任务创建成功,任务号:202408021023257541722565405754\\\",\\\"returnData\\\":[]}\"', 'http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-02 10:23:27', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021023282091722565408209', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000084\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 10:23:28', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021023284521722565408452', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000084\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 10:23:28', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021023288691722565408869', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"07-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408021023282071722565408207\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000084\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":0,\\\"message\\\":\\\"任务创建成功,任务号:202408021023282071722565408207\\\",\\\"returnData\\\":[]}\"', 'http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-02 10:23:29', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021023318361722565411836', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000037\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 10:23:32', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021023320901722565412090', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000037\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 10:23:32', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021023328651722565412865', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"09-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408021023318351722565411835\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000037\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":0,\\\"message\\\":\\\"任务创建成功,任务号:202408021023318351722565411835\\\",\\\"returnData\\\":[]}\"', 'http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-02 10:23:33', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021023338021722565413802', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021023015431722565381543\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000082\", \"taskStatus\": 2, \"destination\": \"01-01-05-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 10:23:34', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021023354211722565415421', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000021\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 10:23:35', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021023356781722565415678', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000021\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 10:23:36', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021023368661722565416866', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"02-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408021023354201722565415420\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000021\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":0,\\\"message\\\":\\\"任务创建成功,任务号:202408021023354201722565415420\\\",\\\"returnData\\\":[]}\"', 'http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-02 10:23:37', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021023453001722565425300', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021022543711722565374371\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000010\", \"taskStatus\": 100, \"destination\": \"06-01-03-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 10:23:45', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021023472821722565427282', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021022579481722565377948\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000006\", \"taskStatus\": 100, \"destination\": \"08-01-03-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 10:23:47', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021023519301722565431930', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000030\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 10:23:52', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021023521901722565432190', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000030\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 10:23:52', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021023528861722565432886', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"03-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408021023519281722565431928\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000030\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":0,\\\"message\\\":\\\"任务创建成功,任务号:202408021023519281722565431928\\\",\\\"returnData\\\":[]}\"', 'http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-02 10:23:53', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021023537891722565433789', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021023257541722565405754\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000085\", \"taskStatus\": 2, \"destination\": \"05-01-03-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 10:23:54', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021023548301722565434830', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021023282071722565408207\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000084\", \"taskStatus\": 2, \"destination\": \"07-01-03-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 10:23:55', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021023558911722565435891', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021023318351722565411835\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000037\", \"taskStatus\": 2, \"destination\": \"09-01-03-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 10:23:56', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021023561181722565436118', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000012\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 10:23:56', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021023563711722565436371', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000012\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 10:23:56', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021023568761722565436876', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"04-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408021023561161722565436116\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000012\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":0,\\\"message\\\":\\\"任务创建成功,任务号:202408021023561161722565436116\\\",\\\"returnData\\\":[]}\"', 'http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-02 10:23:57', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021023596991722565439699', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000005\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 10:24:00', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021023599681722565439968', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000005\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 10:24:00', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021024008961722565440896', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"06-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408021023596981722565439698\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000005\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":0,\\\"message\\\":\\\"任务创建成功,任务号:202408021023596981722565439698\\\",\\\"returnData\\\":[]}\"', 'http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-02 10:24:01', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021024022751722565442275', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021023015431722565381543\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000082\", \"taskStatus\": 100, \"destination\": \"01-01-05-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 10:24:02', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021024063071722565446307', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000033\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 10:24:06', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021024065781722565446578', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000033\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 10:24:07', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021024068891722565446889', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"08-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408021024063061722565446306\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000033\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":0,\\\"message\\\":\\\"任务创建成功,任务号:202408021024063061722565446306\\\",\\\"returnData\\\":[]}\"', 'http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-02 10:24:07', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021024078091722565447809', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021023354201722565415420\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000021\", \"taskStatus\": 2, \"destination\": \"02-01-05-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 10:24:08', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021024192731722565459273', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021023257541722565405754\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000085\", \"taskStatus\": 100, \"destination\": \"05-01-03-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 10:24:19', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021024202711722565460271', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021023282071722565408207\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000084\", \"taskStatus\": 100, \"destination\": \"07-01-03-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 10:24:20', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021024222731722565462273', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021023318351722565411835\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000037\", \"taskStatus\": 100, \"destination\": \"09-01-03-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 10:24:22', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021024243221722565464322', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021023561161722565436116\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000012\", \"taskStatus\": 2, \"destination\": \"04-01-04-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 10:24:24', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021024253601722565465360', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021023596981722565439698\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000005\", \"taskStatus\": 2, \"destination\": \"06-01-04-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 10:24:25', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021024290931722565469093', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000004\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 10:24:29', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021024292731722565469273', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021024063061722565446306\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000033\", \"taskStatus\": 2, \"destination\": \"08-01-04-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 10:24:29', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021024308861722565470886', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"01-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408021024290911722565469091\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000004\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":0,\\\"message\\\":\\\"任务创建成功,任务号:202408021024290911722565469091\\\",\\\"returnData\\\":[]}\"', 'http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-02 10:24:31', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021024342201722565474220', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000004\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 10:24:34', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021024360021722565476002', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000023\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 10:24:36', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021024363031722565476303', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021023354201722565415420\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000021\", \"taskStatus\": 100, \"destination\": \"02-01-05-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 10:24:36', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021024368861722565476886', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"03-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408021024359941722565475994\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000023\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":0,\\\"message\\\":\\\"任务创建成功,任务号:202408021024359941722565475994\\\",\\\"returnData\\\":[]}\"', 'http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-02 10:24:37', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021024410791722565481079', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000023\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 10:24:41', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021024502661722565490266', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021023561161722565436116\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000012\", \"taskStatus\": 100, \"destination\": \"04-01-04-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 10:24:50', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021024522831722565492283', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021023596981722565439698\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000005\", \"taskStatus\": 100, \"destination\": \"06-01-04-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 10:24:52', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021024562641722565496264', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021024063061722565446306\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000033\", \"taskStatus\": 100, \"destination\": \"08-01-04-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 10:24:56', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021025012911722565501291', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021024290911722565469091\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000004\", \"taskStatus\": 2, \"destination\": \"01-01-06-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 10:25:01', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021025482821722565548282', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021024290911722565469091\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000004\", \"taskStatus\": 100, \"destination\": \"01-01-06-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 10:25:48', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021025597821722565559782', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021022153091722565335309\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000003\", \"taskStatus\": 2, \"destination\": \"03-01-03-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 10:26:00', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021025598021722565559802', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021021168341722565276834\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000040\", \"taskStatus\": 2, \"destination\": \"03-01-02-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 10:26:00', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021026002731722565560273', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021020225091722565222509\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000042\", \"taskStatus\": 100, \"destination\": \"02-01-02-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 10:26:00', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021026129311722565572931', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000007\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 10:26:13', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021026149411722565574941', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"05-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408021026129281722565572928\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000007\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":0,\\\"message\\\":\\\"任务创建成功,任务号:202408021026129281722565572928\\\",\\\"returnData\\\":[]}\"', 'http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-02 10:26:15', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021026179831722565577983', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000007\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 10:26:18', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021026252951722565585295', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021021168341722565276834\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000040\", \"taskStatus\": 100, \"destination\": \"03-01-02-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 10:26:25', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021026336541722565593654', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000014\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 10:26:34', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021026349661722565594966', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"07-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408021026336521722565593652\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000014\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":0,\\\"message\\\":\\\"任务创建成功,任务号:202408021026336521722565593652\\\",\\\"returnData\\\":[]}\"', 'http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-02 10:26:35', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021026357831722565595783', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021023519281722565431928\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000030\", \"taskStatus\": 2, \"destination\": \"03-01-04-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 10:26:36', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021026358051722565595805', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021023117101722565391710\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000016\", \"taskStatus\": 2, \"destination\": \"02-01-04-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 10:26:36', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021026362791722565596279', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021022153091722565335309\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000003\", \"taskStatus\": 100, \"destination\": \"03-01-03-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 10:26:36', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021026387031722565598703', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000014\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 10:26:39', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021026413351722565601335', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021026129281722565572928\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000007\", \"taskStatus\": 2, \"destination\": \"05-01-04-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 10:26:41', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021026588351722565618835', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021026336521722565593652\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000014\", \"taskStatus\": 2, \"destination\": \"07-01-04-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 10:26:59', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021027032711722565623271', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021023117101722565391710\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000016\", \"taskStatus\": 100, \"destination\": \"02-01-04-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 10:27:03', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021027082831722565628283', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021026129281722565572928\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000007\", \"taskStatus\": 100, \"destination\": \"05-01-04-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 10:27:08', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021027147941722565634794', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021024359941722565475994\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000023\", \"taskStatus\": 2, \"destination\": \"03-01-05-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 10:27:15', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021027152971722565635297', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021023519281722565431928\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000030\", \"taskStatus\": 100, \"destination\": \"03-01-04-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 10:27:15', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021027252781722565645278', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021026336521722565593652\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000014\", \"taskStatus\": 100, \"destination\": \"07-01-04-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 10:27:25', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021027339611722565653961', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000011\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 10:27:34', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021027349911722565654991', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"09-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408021027339591722565653959\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000011\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":0,\\\"message\\\":\\\"任务创建成功,任务号:202408021027339591722565653959\\\",\\\"returnData\\\":[]}\"', 'http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-02 10:27:35', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021027372261722565657226', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000009\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 10:27:37', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021027389801722565658980', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"01-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408021027372241722565657224\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000009\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":0,\\\"message\\\":\\\"任务创建成功,任务号:202408021027372241722565657224\\\",\\\"returnData\\\":[]}\"', 'http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-02 10:27:39', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021027411241722565661124', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000015\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 10:27:41', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021027422901722565662290', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021024359941722565475994\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000023\", \"taskStatus\": 100, \"destination\": \"03-01-05-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 10:27:42', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021027430491722565663049', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"02-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408021027411231722565661123\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000015\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":0,\\\"message\\\":\\\"任务创建成功,任务号:202408021027411231722565661123\\\",\\\"returnData\\\":[]}\"', 'http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-02 10:27:43', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021027447201722565664720', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000013\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 10:27:45', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021027450261722565665026', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"04-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408021027447161722565664716\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000013\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":0,\\\"message\\\":\\\"任务创建成功,任务号:202408021027447161722565664716\\\",\\\"returnData\\\":[]}\"', 'http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-02 10:27:45', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021027573771722565677377', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021027339591722565653959\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000011\", \"taskStatus\": 2, \"destination\": \"09-01-04-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 10:27:57', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021028009571722565680957', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000017\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 10:28:01', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021028011901722565681190', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000017\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 10:28:01', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021028030511722565683051', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"06-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408021028009531722565680953\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000017\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":0,\\\"message\\\":\\\"任务创建成功,任务号:202408021028009531722565680953\\\",\\\"returnData\\\":[]}\"', 'http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-02 10:28:03', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021028105341722565690534', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000097\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 10:28:11', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021028107941722565690794', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000097\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 10:28:11', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021028110621722565691062', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"08-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408021028105331722565690533\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000097\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":0,\\\"message\\\":\\\"任务创建成功,任务号:202408021028105331722565690533\\\",\\\"returnData\\\":[]}\"', 'http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-02 10:28:11', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021028128081722565692808', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021027447161722565664716\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000013\", \"taskStatus\": 2, \"destination\": \"04-01-05-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 10:28:13', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021028141071722565694107', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000090\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 10:28:14', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021028144051722565694405', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000090\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 10:28:14', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021028150621722565695062', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"02-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408021028141051722565694105\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000090\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":0,\\\"message\\\":\\\"任务创建成功,任务号:202408021028141051722565694105\\\",\\\"returnData\\\":[]}\"', 'http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-02 10:28:15', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021028152961722565695296', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021027372241722565657224\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000009\", \"taskStatus\": 2, \"destination\": \"01-01-07-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 10:28:15', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021028180071722565698007', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000022\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 10:28:18', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021028190611722565699061', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"03-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408021028180051722565698005\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000022\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":0,\\\"message\\\":\\\"任务创建成功,任务号:202408021028180051722565698005\\\",\\\"returnData\\\":[]}\"', 'http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-02 10:28:19', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021028216391722565701639', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000099\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 10:28:22', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021028218641722565701864', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000099\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 10:28:22', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021028230771722565703077', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"05-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408021028216361722565701636\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000099\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":0,\\\"message\\\":\\\"任务创建成功,任务号:202408021028216361722565701636\\\",\\\"returnData\\\":[]}\"', 'http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-02 10:28:23', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021028252591722565705259', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021027339591722565653959\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000011\", \"taskStatus\": 100, \"destination\": \"09-01-04-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 10:28:25', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021028262851722565706285', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021028009531722565680953\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000017\", \"taskStatus\": 2, \"destination\": \"06-01-05-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 10:28:26', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021028321141722565712114', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000089\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 10:28:32', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021028323631722565712363', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000089\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 10:28:32', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021028330811722565713081', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"07-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408021028321121722565712112\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000089\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":0,\\\"message\\\":\\\"任务创建成功,任务号:202408021028321121722565712112\\\",\\\"returnData\\\":[]}\"', 'http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-02 10:28:33', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021028333651722565713365', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021028105331722565690533\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000097\", \"taskStatus\": 2, \"destination\": \"08-01-05-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 10:28:33', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021028375031722565717503', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000088\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 10:28:38', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021028390611722565719061', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"09-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408021028375011722565717501\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000088\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":0,\\\"message\\\":\\\"任务创建成功,任务号:202408021028375011722565717501\\\",\\\"returnData\\\":[]}\"', 'http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-02 10:28:39', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021028402491722565720249', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021027447161722565664716\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000013\", \"taskStatus\": 100, \"destination\": \"04-01-05-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 10:28:40', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021028462451722565726245', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021028141051722565694105\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000090\", \"taskStatus\": 2, \"destination\": \"02-01-07-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 10:28:46', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021028462671722565726267', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021027372241722565657224\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000009\", \"taskStatus\": 100, \"destination\": \"01-01-07-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 10:28:46', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021028482951722565728295', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021028180051722565698005\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000022\", \"taskStatus\": 2, \"destination\": \"03-01-06-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 10:28:48', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021028542571722565734257', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021028009531722565680953\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000017\", \"taskStatus\": 100, \"destination\": \"06-01-05-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 10:28:54', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021028542761722565734276', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021028216361722565701636\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000099\", \"taskStatus\": 2, \"destination\": \"05-01-05-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 10:28:54', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021029003151722565740315', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000095\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 10:29:00', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021029011121722565741112', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"01-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408021029003141722565740314\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000095\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":0,\\\"message\\\":\\\"任务创建成功,任务号:202408021029003141722565740314\\\",\\\"returnData\\\":[]}\"', 'http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-02 10:29:01', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021029018461722565741846', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021028375011722565717501\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000088\", \"taskStatus\": 2, \"destination\": \"09-01-05-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 10:29:02', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021029022781722565742278', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021028105331722565690533\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000097\", \"taskStatus\": 100, \"destination\": \"08-01-05-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 10:29:02', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021029029281722565742928', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021028321121722565712112\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000089\", \"taskStatus\": 2, \"destination\": \"07-01-05-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 10:29:03', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021029045001722565744500', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000091\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 10:29:05', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021029051021722565745102', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"03-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408021029044981722565744498\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000091\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":0,\\\"message\\\":\\\"任务创建成功,任务号:202408021029044981722565744498\\\",\\\"returnData\\\":[]}\"', 'http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-02 10:29:05', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021029081451722565748145', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000020\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 10:29:08', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021029091121722565749112', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"04-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408021029081431722565748143\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000020\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":0,\\\"message\\\":\\\"任务创建成功,任务号:202408021029081431722565748143\\\",\\\"returnData\\\":[]}\"', 'http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-02 10:29:09', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021029172691722565757269', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021028141051722565694105\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000090\", \"taskStatus\": 100, \"destination\": \"02-01-07-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 10:29:17', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021029172881722565757288', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021028180051722565698005\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000022\", \"taskStatus\": 100, \"destination\": \"03-01-06-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 10:29:17', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021029222581722565762258', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021028216361722565701636\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000099\", \"taskStatus\": 100, \"destination\": \"05-01-05-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 10:29:22', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021029302801722565770280', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021028375011722565717501\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000088\", \"taskStatus\": 100, \"destination\": \"09-01-05-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 10:29:30', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021029312591722565771259', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021028321121722565712112\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000089\", \"taskStatus\": 100, \"destination\": \"07-01-05-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 10:29:31', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021029322871722565772287', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021029003141722565740314\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000095\", \"taskStatus\": 2, \"destination\": \"01-01-08-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 10:29:32', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021029338951722565773895', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000095\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 10:29:34', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021029348061722565774806', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021029044981722565744498\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000091\", \"taskStatus\": 2, \"destination\": \"03-01-07-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 10:29:35', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021029358581722565775858', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021029081431722565748143\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000020\", \"taskStatus\": 2, \"destination\": \"04-01-06-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 10:29:36', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021029389681722565778968', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000095\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 10:29:39', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021029405201722565780520', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000093\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 10:29:41', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021029407861722565780786', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000093\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 10:29:41', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021029411421722565781142', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"06-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408021029405181722565780518\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000093\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":0,\\\"message\\\":\\\"任务创建成功,任务号:202408021029405181722565780518\\\",\\\"returnData\\\":[]}\"', 'http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-02 10:29:41', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021030015341722565801534', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000092\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 10:30:02', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021030031441722565803144', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"08-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408021030015321722565801532\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000092\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":0,\\\"message\\\":\\\"任务创建成功,任务号:202408021030015321722565801532\\\",\\\"returnData\\\":[]}\"', 'http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-02 10:30:03', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021030042461722565804246', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021029003141722565740314\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000095\", \"taskStatus\": 100, \"destination\": \"01-01-08-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 10:30:04', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021030042591722565804259', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021029081431722565748143\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000020\", \"taskStatus\": 100, \"destination\": \"04-01-06-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 10:30:04', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021030052801722565805280', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021029044981722565744498\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000091\", \"taskStatus\": 100, \"destination\": \"03-01-07-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 10:30:05', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021030058171722565805817', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021029405181722565780518\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000093\", \"taskStatus\": 2, \"destination\": \"06-01-06-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 10:30:06', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021030065861722565806586', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000092\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 10:30:07', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021030072381722565807238', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000098\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 10:30:07', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021030091331722565809133', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"01-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408021030072361722565807236\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000098\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":0,\\\"message\\\":\\\"任务创建成功,任务号:202408021030072361722565807236\\\",\\\"returnData\\\":[]}\"', 'http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-02 10:30:09', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021030108091722565810809', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000091\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 10:30:11', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021030111341722565811134', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"02-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408021030108071722565810807\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000091\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":0,\\\"message\\\":\\\"任务创建成功,任务号:202408021030108071722565810807\\\",\\\"returnData\\\":[]}\"', 'http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-02 10:30:11', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021030159001722565815900', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000091\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 10:30:16', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021030177511722565817751', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000100\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 10:30:18', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021030180061722565818006', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000100\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 10:30:18', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021030191431722565819143', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"05-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408021030177501722565817750\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000100\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":0,\\\"message\\\":\\\"任务创建成功,任务号:202408021030177501722565817750\\\",\\\"returnData\\\":[]}\"', 'http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-02 10:30:19', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021030248091722565824809', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021030015321722565801532\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000092\", \"taskStatus\": 2, \"destination\": \"08-01-06-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 10:30:25', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021030392871722565839287', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021030072361722565807236\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000098\", \"taskStatus\": 2, \"destination\": \"01-01-09-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 10:30:39', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021030412781722565841278', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021030108071722565810807\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000091\", \"taskStatus\": 2, \"destination\": \"02-01-08-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 10:30:41', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021030501651722565850165', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000062\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 10:30:50', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021030511941722565851194', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"07-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408021030501631722565850163\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000062\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":0,\\\"message\\\":\\\"任务创建成功,任务号:202408021030501631722565850163\\\",\\\"returnData\\\":[]}\"', 'http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-02 10:30:51', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021030531341722565853134', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000063\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 10:30:53', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021030542711722565854271', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021030015321722565801532\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000092\", \"taskStatus\": 100, \"destination\": \"08-01-06-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 10:30:54', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021030551641722565855164', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"09-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408021030531311722565853131\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000063\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":0,\\\"message\\\":\\\"任务创建成功,任务号:202408021030531311722565853131\\\",\\\"returnData\\\":[]}\"', 'http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-02 10:30:55', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021030582171722565858217', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000063\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 10:30:58', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021031122711722565872271', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021030072361722565807236\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000098\", \"taskStatus\": 100, \"destination\": \"01-01-09-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 10:31:12', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021031132851722565873285', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021030108071722565810807\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000091\", \"taskStatus\": 100, \"destination\": \"02-01-08-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 10:31:13', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021031158001722565875800', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021030531311722565853131\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000063\", \"taskStatus\": 2, \"destination\": \"09-01-06-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 10:31:16', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021031463141722565906314', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021030531311722565853131\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000063\", \"taskStatus\": 100, \"destination\": \"09-01-06-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 10:31:46', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021031507281722565910728', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000064\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 10:31:51', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021031512071722565911207', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"02-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408021031507271722565910727\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000064\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":0,\\\"message\\\":\\\"任务创建成功,任务号:202408021031507271722565910727\\\",\\\"returnData\\\":[]}\"', 'http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-02 10:31:51', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021031558191722565915819', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000064\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 10:31:56', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021032168951722565936895', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000070\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 10:32:17', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021032172861722565937286', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408021032168921722565936892\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":0,\\\"message\\\":\\\"任务创建成功,任务号:202408021032168921722565936892\\\",\\\"returnData\\\":[]}\"', 'http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-02 10:32:17', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021032228421722565942842', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021031507271722565910727\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000064\", \"taskStatus\": 2, \"destination\": \"02-01-09-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 10:32:23', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021032261291722565946129', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000060\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 10:32:26', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021032264191722565946419', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000060\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 10:32:26', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021032264841722565946484', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000057\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 10:32:26', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021032266801722565946680', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000057\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 10:32:27', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021032273471722565947347', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"04-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408021032261271722565946127\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000060\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408021032264821722565946482\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000057\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":0,\\\"message\\\":\\\"任务创建成功,任务号:202408021032261271722565946127,202408021032264821722565946482\\\",\\\"returnData\\\":[]}\"', 'http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-02 10:32:27', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021032417241722565961724', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000055\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 10:32:42', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021032420091722565962009', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000055\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 10:32:42', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021032433581722565963358', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"08-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408021032417221722565961722\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000055\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":0,\\\"message\\\":\\\"任务创建成功,任务号:202408021032417221722565961722\\\",\\\"returnData\\\":[]}\"', 'http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-02 10:32:43', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021032477401722565967740', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000050\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 10:32:48', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021032479991722565967999', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000050\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 10:32:48', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021032483101722565968310', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021032168921722565936892\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000070\", \"taskStatus\": 2, \"destination\": \"03-01-08-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 10:32:48', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021032493741722565969374', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"01-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408021032477371722565967737\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000050\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":0,\\\"message\\\":\\\"任务创建成功,任务号:202408021032477371722565967737\\\",\\\"returnData\\\":[]}\"', 'http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-02 10:32:49', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021032497901722565969790', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000060\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 10:32:50', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021032500891722565970089', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000060\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 10:32:50', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021032565441722565976544', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021031507271722565910727\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000064\", \"taskStatus\": 100, \"destination\": \"02-01-09-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 10:32:57', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021032580941722565978094', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000075\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 10:32:58', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021032586601722565978660', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000075\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 10:32:59', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021032593971722565979397', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408021032580921722565978092\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":0,\\\"message\\\":\\\"任务创建成功,任务号:202408021032580921722565978092\\\",\\\"returnData\\\":[]}\"', 'http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-02 10:32:59', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021033015091722565981509', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000086\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 10:33:02', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021033017801722565981780', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000086\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 10:33:02', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021033033901722565983390', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"05-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408021033015071722565981507\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000086\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":0,\\\"message\\\":\\\"任务创建成功,任务号:202408021033015071722565981507\\\",\\\"returnData\\\":[]}\"', 'http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-02 10:33:03', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021033035991722565983599', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000055\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 10:33:04', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021033039011722565983901', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000055\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 10:33:04', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021033111371722565991137', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000029\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 10:33:11', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021033113511722565991351', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408021033111361722565991136\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000029\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":0,\\\"message\\\":\\\"任务创建成功,任务号:202408021033111361722565991136\\\",\\\"returnData\\\":[]}\"', 'http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-02 10:33:11', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021033113541722565991354', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000029\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 10:33:11', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021033188011722565998801', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021032261271722565946127\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000060\", \"taskStatus\": 2, \"destination\": \"04-01-07-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 10:33:19', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021033199221722565999922', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021032477371722565967737\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000050\", \"taskStatus\": 2, \"destination\": \"01-01-10-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 10:33:20', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021033243291722566004329', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000066\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 10:33:24', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021033253991722566005399', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"09-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408021033243271722566004327\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000066\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":0,\\\"message\\\":\\\"任务创建成功,任务号:202408021033243271722566004327\\\",\\\"returnData\\\":[]}\"', 'http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-02 10:33:25', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021033267811722566006781', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021032417221722565961722\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000055\", \"taskStatus\": 2, \"destination\": \"08-01-07-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 10:33:27', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021033495491722566029549', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000058\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 10:33:50', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021033498141722566029814', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021033015071722565981507\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000086\", \"taskStatus\": 2, \"destination\": \"05-01-07-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 10:33:50', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021033502541722566030254', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021032261271722565946127\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000060\", \"taskStatus\": 100, \"destination\": \"04-01-07-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 10:33:50', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021033514071722566031407', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"01-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408021033495481722566029548\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000058\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":0,\\\"message\\\":\\\"任务创建成功,任务号:202408021033495481722566029548\\\",\\\"returnData\\\":[]}\"', 'http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-02 10:33:51', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021033542951722566034295', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021032477371722565967737\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000050\", \"taskStatus\": 100, \"destination\": \"01-01-10-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 10:33:54', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021033564151722566036415', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000079\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 10:33:56', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021033566911722566036691', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000079\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 10:33:57', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021033574181722566037418', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"02-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408021033564131722566036413\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000079\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":0,\\\"message\\\":\\\"任务创建成功,任务号:202408021033564131722566036413\\\",\\\"returnData\\\":[]}\"', 'http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-02 10:33:57', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021033577831722566037783', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021033243271722566004327\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000066\", \"taskStatus\": 2, \"destination\": \"09-01-07-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 10:33:58', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021033582851722566038285', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021032417221722565961722\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000055\", \"taskStatus\": 100, \"destination\": \"08-01-07-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 10:33:58', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021034099611722566049961', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000067\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 10:34:10', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021034114091722566051409', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408021034099591722566049959\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000067\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":0,\\\"message\\\":\\\"任务创建成功,任务号:202408021034099591722566049959\\\",\\\"returnData\\\":[]}\"', 'http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-02 10:34:11', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021034147431722566054743', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000059\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 10:34:15', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021034150121722566055012', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000059\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 10:34:15', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021034154191722566055419', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"06-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408021034147411722566054741\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000059\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":0,\\\"message\\\":\\\"任务创建成功,任务号:202408021034147411722566054741\\\",\\\"returnData\\\":[]}\"', 'http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-02 10:34:15', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021034170921722566057092', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000079\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 10:34:17', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021034174051722566057405', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000079\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 10:34:17', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021034210181722566061018', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000073\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 10:34:21', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021034212761722566061276', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021033015071722565981507\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000086\", \"taskStatus\": 100, \"destination\": \"05-01-07-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 10:34:21', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021034212911722566061291', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000073\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 10:34:21', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021034214191722566061419', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"08-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408021034210161722566061016\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000073\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":0,\\\"message\\\":\\\"任务创建成功,任务号:202408021034210161722566061016\\\",\\\"returnData\\\":[]}\"', 'http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-02 10:34:21', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021034217831722566061783', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021033495481722566029548\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000058\", \"taskStatus\": 2, \"destination\": \"01-01-11-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 10:34:22', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021034276311722566067631', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000049\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 10:34:28', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021034292851722566069285', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021033243271722566004327\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000066\", \"taskStatus\": 100, \"destination\": \"09-01-07-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 10:34:29', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021034294111722566069411', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"02-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408021034276301722566067630\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000049\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":0,\\\"message\\\":\\\"任务创建成功,任务号:202408021034276301722566067630\\\",\\\"returnData\\\":[]}\"', 'http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-02 10:34:29', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021034324231722566072423', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000069\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 10:34:32', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021034326921722566072692', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000069\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 10:34:33', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021034334291722566073429', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408021034324211722566072421\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":0,\\\"message\\\":\\\"任务创建成功,任务号:202408021034324211722566072421\\\",\\\"returnData\\\":[]}\"', 'http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-02 10:34:33', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021034381201722566078120', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000052\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 10:34:38', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021034383761722566078376', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000052\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 10:34:38', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021034394491722566079449', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"05-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408021034381181722566078118\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000052\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":0,\\\"message\\\":\\\"任务创建成功,任务号:202408021034381181722566078118\\\",\\\"returnData\\\":[]}\"', 'http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-02 10:34:39', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021034411481722566081148', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000074\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 10:34:41', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021034414211722566081421', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"07-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408021034411471722566081147\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000074\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":0,\\\"message\\\":\\\"任务创建成功,任务号:202408021034411471722566081147\\\",\\\"returnData\\\":[]}\"', 'http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-02 10:34:41', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021034438421722566083842', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021034210161722566061016\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000073\", \"taskStatus\": 2, \"destination\": \"08-01-08-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 10:34:44', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021034447101722566084710', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000083\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 10:34:45', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021034454291722566085429', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"09-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408021034447081722566084708\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000083\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":0,\\\"message\\\":\\\"任务创建成功,任务号:202408021034447081722566084708\\\",\\\"returnData\\\":[]}\"', 'http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-02 10:34:45', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021034495321722566089532', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000024\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 10:34:50', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021034514491722566091449', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"01-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408021034495311722566089531\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000024\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":0,\\\"message\\\":\\\"任务创建成功,任务号:202408021034495311722566089531\\\",\\\"returnData\\\":[]}\"', 'http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-02 10:34:51', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021034572861722566097286', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021033495481722566029548\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000058\", \"taskStatus\": 100, \"destination\": \"01-01-11-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 10:34:57', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021034597731722566099773', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021034276301722566067630\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000049\", \"taskStatus\": 2, \"destination\": \"02-01-11-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 10:35:00', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021035018241722566101824', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000027\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 10:35:02', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021035020831722566102083', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000027\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 10:35:02', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021035034501722566103450', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408021035018221722566101822\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":0,\\\"message\\\":\\\"任务创建成功,任务号:202408021035018221722566101822\\\",\\\"returnData\\\":[]}\"', 'http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-02 10:35:03', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021035054311722566105431', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000068\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 10:35:05', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021035056831722566105683', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000068\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 10:35:06', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021035074491722566107449', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"04-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408021035054301722566105430\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":0,\\\"message\\\":\\\"任务创建成功,任务号:202408021035054301722566105430\\\",\\\"returnData\\\":[]}\"', 'http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-02 10:35:07', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021035114311722566111431', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000072\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 10:35:11', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021035116631722566111663', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000072\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 10:35:12', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021035134401722566113440', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"06-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408021035114301722566111430\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000072\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":0,\\\"message\\\":\\\"任务创建成功,任务号:202408021035114301722566111430\\\",\\\"returnData\\\":[]}\"', 'http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-02 10:35:13', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021035158131722566115813', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021034447081722566084708\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000083\", \"taskStatus\": 2, \"destination\": \"09-01-08-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 10:35:16', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021035162771722566116277', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021034210161722566061016\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000073\", \"taskStatus\": 100, \"destination\": \"08-01-08-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 10:35:16', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021035168411722566116841', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000077\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 10:35:17', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021035170541722566117054', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000077\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 10:35:17', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021035170861722566117086', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000038\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 10:35:17', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021035173851722566117385', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000038\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 10:35:17', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021035174491722566117449', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"08-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408021035168391722566116839\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000077\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408021035170841722566117084\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000038\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":0,\\\"message\\\":\\\"任务创建成功,任务号:202408021035168391722566116839,202408021035170841722566117084\\\",\\\"returnData\\\":[]}\"', 'http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-02 10:35:17', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021035300331722566130033', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000028\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 10:35:30', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021035302841722566130284', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000028\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 10:35:30', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021035314611722566131461', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408021035300321722566130032\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":0,\\\"message\\\":\\\"任务创建成功,任务号:202408021035300321722566130032\\\",\\\"returnData\\\":[]}\"', 'http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-02 10:35:31', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021035336601722566133660', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000047\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 10:35:34', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021035339031722566133903', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000047\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 10:35:34', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021035352331722566135233', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021034495311722566089531\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000024\", \"taskStatus\": 2, \"destination\": \"01-01-12-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 10:35:35', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021035352351722566135235', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021034276301722566067630\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000049\", \"taskStatus\": 100, \"destination\": \"02-01-11-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 10:35:35', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021035354711722566135471', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"05-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408021035336581722566133658\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":0,\\\"message\\\":\\\"任务创建成功,任务号:202408021035336581722566133658\\\",\\\"returnData\\\":[]}\"', 'http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-02 10:35:35', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021035399031722566139903', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000038\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 10:35:40', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021035425901722566142590', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000044\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 10:35:43', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021035434721722566143472', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"07-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408021035425891722566142589\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000044\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":0,\\\"message\\\":\\\"任务创建成功,任务号:202408021035425891722566142589\\\",\\\"returnData\\\":[]}\"', 'http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-02 10:35:43', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021035435601722566143560', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000031\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 10:35:44', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021035436791722566143679', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000044\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 10:35:44', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021035436821722566143682', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000031\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 10:35:44', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021035454911722566145491', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"02-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408021035435581722566143558\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000031\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":0,\\\"message\\\":\\\"任务创建成功,任务号:202408021035435581722566143558\\\",\\\"returnData\\\":[]}\"', 'http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-02 10:35:45', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021035456051722566145605', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000025\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 10:35:46', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021035474701722566147470', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"09-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408021035456031722566145603\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000025\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":0,\\\"message\\\":\\\"任务创建成功,任务号:202408021035456031722566145603\\\",\\\"returnData\\\":[]}\"', 'http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-02 10:35:47', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021035477351722566147735', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000197\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 10:35:48', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021035479731722566147973', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000197\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 10:35:48', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021035482961722566148296', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021034447081722566084708\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000083\", \"taskStatus\": 100, \"destination\": \"09-01-08-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 10:35:48', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021035483131722566148313', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021035168391722566116839\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000077\", \"taskStatus\": 2, \"destination\": \"08-01-09-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 10:35:48', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021035486121722566148612', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000080\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 10:35:49', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021035489051722566148905', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000080\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 10:35:49', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021035494811722566149481', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408021035477341722566147734\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408021035486101722566148610\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000080\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":0,\\\"message\\\":\\\"任务创建成功,任务号:202408021035477341722566147734,202408021035486101722566148610\\\",\\\"returnData\\\":[]}\"', 'http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-02 10:35:49', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021035510451722566151045', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000048\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 10:35:51', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021035513031722566151303', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000048\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 10:35:51', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021035515121722566151512', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"01-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408021035510421722566151042\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000048\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":0,\\\"message\\\":\\\"任务创建成功,任务号:202408021035510421722566151042\\\",\\\"returnData\\\":[]}\"', 'http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-02 10:35:52', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021035543111722566154311', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000160\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 10:35:54', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021035545731722566154573', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000160\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 10:35:55', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021035554811722566155481', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"06-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408021035543091722566154309\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000160\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":0,\\\"message\\\":\\\"任务创建成功,任务号:202408021035543091722566154309\\\",\\\"returnData\\\":[]}\"', 'http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-02 10:35:55', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021035585301722566158530', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000188\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 10:35:59', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021035595011722566159501', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"08-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408021035585281722566158528\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000188\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":0,\\\"message\\\":\\\"任务创建成功,任务号:202408021035585281722566158528\\\",\\\"returnData\\\":[]}\"', 'http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-02 10:36:00', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021035597241722566159724', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000078\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 10:36:00', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021035599741722566159974', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000078\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 10:36:00', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021036014811722566161481', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408021035597231722566159723\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":0,\\\"message\\\":\\\"任务创建成功,任务号:202408021035597231722566159723\\\",\\\"returnData\\\":[]}\"', 'http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-02 10:36:01', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021036032831722566163283', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000044\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 10:36:03', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021036035981722566163598', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000044\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 10:36:04', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021036036141722566163614', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000188\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 10:36:04', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021036090401722566169040', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000045\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 10:36:09', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021036092701722566169270', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000045\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 10:36:09', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021036094711722566169471', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"05-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408021036090301722566169030\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000045\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":0,\\\"message\\\":\\\"任务创建成功,任务号:202408021036090301722566169030\\\",\\\"returnData\\\":[]}\"', 'http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-02 10:36:09', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021036120261722566172026', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000053\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 10:36:12', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021036122681722566172268', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021034495311722566089531\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000024\", \"taskStatus\": 100, \"destination\": \"01-01-12-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 10:36:12', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021036134911722566173491', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"01-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408021036120251722566172025\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000053\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":0,\\\"message\\\":\\\"任务创建成功,任务号:202408021036120251722566172025\\\",\\\"returnData\\\":[]}\"', 'http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-02 10:36:13', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021036147551722566174755', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000199\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 10:36:15', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021036150051722566175005', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000199\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 10:36:15', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021036154821722566175482', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"07-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408021036147531722566174753\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000199\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":0,\\\"message\\\":\\\"任务创建成功,任务号:202408021036147531722566174753\\\",\\\"returnData\\\":[]}\"', 'http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-02 10:36:15', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021036156121722566175612', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000056\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 10:36:16', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021036167831722566176783', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021035170841722566117084\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000038\", \"taskStatus\": 2, \"destination\": \"01-01-13-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 10:36:17', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021036167851722566176785', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021035435581722566143558\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000031\", \"taskStatus\": 2, \"destination\": \"02-01-13-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 10:36:17', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021036175011722566177501', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"09-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408021036156101722566175610\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":0,\\\"message\\\":\\\"任务创建成功,任务号:202408021036156101722566175610\\\",\\\"returnData\\\":[]}\"', 'http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-02 10:36:18', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021036192231722566179223', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000054\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 10:36:19', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021036195101722566179510', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000054\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 10:36:20', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021036195221722566179522', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408021036192221722566179222\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":0,\\\"message\\\":\\\"任务创建成功,任务号:202408021036192221722566179222\\\",\\\"returnData\\\":[]}\"', 'http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-02 10:36:20', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021036218041722566181804', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021035456031722566145603\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000025\", \"taskStatus\": 2, \"destination\": \"09-01-09-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 10:36:22', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021036222911722566182291', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021035168391722566116839\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000077\", \"taskStatus\": 100, \"destination\": \"08-01-09-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 10:36:22', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021036228311722566182831', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000061\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 10:36:23', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021036231171722566183117', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000061\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 10:36:23', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021036234101722566183410', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000166\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 10:36:23', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021036234811722566183481', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"04-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408021036228291722566182829\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000061\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":0,\\\"message\\\":\\\"任务创建成功,任务号:202408021036228291722566182829\\\",\\\"returnData\\\":[]}\"', 'http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-02 10:36:23', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021036236951722566183695', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000166\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 10:36:24', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021036255031722566185503', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"02-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408021036234081722566183408\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000166\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":0,\\\"message\\\":\\\"任务创建成功,任务号:202408021036234081722566183408\\\",\\\"returnData\\\":[]}\"', 'http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-02 10:36:26', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021036258121722566185812', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000051\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 10:36:26', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021036275011722566187501', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"06-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408021036258101722566185810\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000051\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":0,\\\"message\\\":\\\"任务创建成功,任务号:202408021036258101722566185810\\\",\\\"returnData\\\":[]}\"', 'http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-02 10:36:28', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021036294301722566189430', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000035\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 10:36:29', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021036296941722566189694', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000035\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 10:36:30', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021036314751722566191475', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000197\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 10:36:31', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021036315021722566191502', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"08-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408021036294291722566189429\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":0,\\\"message\\\":\\\"任务创建成功,任务号:202408021036294291722566189429\\\",\\\"returnData\\\":[]}\"', 'http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-02 10:36:32', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021036317841722566191784', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000197\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 10:36:32', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021036339051722566193905', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000048\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 10:36:34', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021036341941722566194194', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000048\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 10:36:34', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021036344581722566194458', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000048\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 10:36:34', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021036374951722566197495', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000046\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 10:36:37', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021036381341722566198134', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000112\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 10:36:38', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021036383941722566198394', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000112\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 10:36:38', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021036395221722566199522', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"03-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408021036374941722566197494\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000046\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408021036381321722566198132\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000112\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":0,\\\"message\\\":\\\"任务创建成功,任务号:202408021036374941722566197494,202408021036381321722566198132\\\",\\\"returnData\\\":[]}\"', 'http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-02 10:36:40', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021036405111722566200511', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000065\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 10:36:41', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021036415011722566201501', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"05-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408021036405091722566200509\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000065\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":0,\\\"message\\\":\\\"任务创建成功,任务号:202408021036405091722566200509\\\",\\\"returnData\\\":[]}\"', 'http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-02 10:36:42', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021036425421722566202542', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000160\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 10:36:43', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021036425811722566202581', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000116\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 10:36:43', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021036428561722566202856', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000160\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 10:36:43', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021036428581722566202858', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000116\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 10:36:43', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021036435181722566203518', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408021036425791722566202579\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":0,\\\"message\\\":\\\"任务创建成功,任务号:202408021036425791722566202579\\\",\\\"returnData\\\":[]}\"', 'http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-02 10:36:44', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021036450041722566205004', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000188\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 10:36:45', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021036453051722566205305', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000188\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 10:36:45', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021036486151722566208615', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000118\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 10:36:49', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021036488751722566208875', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000199\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 10:36:49', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021036488951722566208895', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000118\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 10:36:49', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021036491841722566209184', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000199\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 10:36:49', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021036495121722566209512', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"09-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408021036486131722566208613\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000118\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":0,\\\"message\\\":\\\"任务创建成功,任务号:202408021036486131722566208613\\\",\\\"returnData\\\":[]}\"', 'http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-02 10:36:50', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021036537061722566213706', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000107\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 10:36:54', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021036540041722566214004', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000107\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 10:36:54', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021036545561722566214556', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000166\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 10:36:55', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021036552601722566215260', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021035456031722566145603\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000025\", \"taskStatus\": 100, \"destination\": \"09-01-09-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 10:36:55', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021036552711722566215271', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021036294291722566189429\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000035\", \"taskStatus\": 2, \"destination\": \"08-01-11-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 10:36:55', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021036552961722566215296', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021036156101722566175610\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000056\", \"taskStatus\": 2, \"destination\": \"09-01-10-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 10:36:55', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021036555031722566215503', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408021036537041722566213704\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":0,\\\"message\\\":\\\"任务创建成功,任务号:202408021036537041722566213704\\\",\\\"returnData\\\":[]}\"', 'http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-02 10:36:56', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021036563191722566216319', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021035170841722566117084\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000038\", \"taskStatus\": 100, \"destination\": \"01-01-13-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 10:36:56', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021036588151722566218815', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000112\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 10:36:59', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021037029951722566222995', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000116\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 10:37:03', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021037033051722566223305', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000116\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 10:37:03', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021037069031722566226903', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000198\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 10:37:07', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021037072051722566227205', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000198\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 10:37:07', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021037072891722566227289', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021035435581722566143558\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000031\", \"taskStatus\": 100, \"destination\": \"02-01-13-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 10:37:07', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021037075341722566227534', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"01-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408021037069021722566226902\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":0,\\\"message\\\":\\\"任务创建成功,任务号:202408021037069021722566226902\\\",\\\"returnData\\\":[]}\"', 'http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-02 10:37:08', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021037089871722566228987', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000118\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 10:37:09', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021037093061722566229306', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000118\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 10:37:09', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021037120341722566232034', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000168\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 10:37:12', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021037122751722566232275', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000168\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 10:37:12', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021037135331722566233533', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"04-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408021037120321722566232032\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000168\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":0,\\\"message\\\":\\\"任务创建成功,任务号:202408021037120321722566232032\\\",\\\"returnData\\\":[]}\"', 'http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-02 10:37:14', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021037140951722566234095', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000107\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 10:37:14', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021037143751722566234375', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000107\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 10:37:14', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021037171341722566237134', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000193\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 10:37:17', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021037174051722566237405', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000193\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 10:37:17', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021037175141722566237514', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"06-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408021037171321722566237132\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000193\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":0,\\\"message\\\":\\\"任务创建成功,任务号:202408021037171321722566237132\\\",\\\"returnData\\\":[]}\"', 'http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-02 10:37:18', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021037182951722566238295', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021036120251722566172025\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000053\", \"taskStatus\": 2, \"destination\": \"01-01-15-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 10:37:18', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021037182971722566238297', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021035510421722566151042\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000048\", \"taskStatus\": 2, \"destination\": \"01-01-14-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 10:37:18', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021037282591722566248259', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000026\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 10:37:28', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021037284751722566248475', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000026\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 10:37:28', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021037295431722566249543', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"08-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408021037282571722566248257\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":0,\\\"message\\\":\\\"任务创建成功,任务号:202408021037282571722566248257\\\",\\\"returnData\\\":[]}\"', 'http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-02 10:37:30', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021037313181722566251318', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021036156101722566175610\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000056\", \"taskStatus\": 100, \"destination\": \"09-01-10-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 10:37:31', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021037318241722566251824', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000102\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 10:37:32', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021037320871722566252087', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000102\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 10:37:32', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021037335331722566253533', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408021037318221722566251822\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":0,\\\"message\\\":\\\"任务创建成功,任务号:202408021037318221722566251822\\\",\\\"returnData\\\":[]}\"', 'http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-02 10:37:34', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021037357171722566255717', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000101\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 10:37:36', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021037375541722566257554', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"02-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408021037357151722566255715\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":0,\\\"message\\\":\\\"任务创建成功,任务号:202408021037357151722566255715\\\",\\\"returnData\\\":[]}\"', 'http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-02 10:37:38', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021037377851722566257785', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000198\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 10:37:38', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021037380871722566258087', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000198\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 10:37:38', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021037398951722566259895', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000168\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 10:37:40', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021037402251722566260225', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000168\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 10:37:40', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021037422831722566262283', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021036294291722566189429\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000035\", \"taskStatus\": 100, \"destination\": \"08-01-11-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 10:37:42', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021037423081722566262308', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021036486131722566208613\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000118\", \"taskStatus\": 2, \"destination\": \"09-01-11-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 10:37:42', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021037423111722566262311', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021035585281722566158528\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000188\", \"taskStatus\": 2, \"destination\": \"08-01-10-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 10:37:42', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021037437961722566263796', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000193\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 10:37:44', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021037440921722566264092', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000193\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 10:37:44', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021038002721722566280272', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021036120251722566172025\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000053\", \"taskStatus\": 100, \"destination\": \"01-01-15-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 10:38:00', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021038112801722566291280', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021035510421722566151042\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000048\", \"taskStatus\": 100, \"destination\": \"01-01-14-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 10:38:11', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021230317751722573031775', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021029405181722565780518\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000093\", \"taskStatus\": 100, \"destination\": \"06-01-06-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 12:30:32', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021231542181722573114218', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021032264821722565946482\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000057\", \"taskStatus\": 2, \"destination\": \"06-01-07-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 12:31:54', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021231542211722573114221', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021030501631722565850163\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000062\", \"taskStatus\": 2, \"destination\": \"07-01-06-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 12:31:54', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021231552831722573115283', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021030177501722565817750\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000100\", \"taskStatus\": 2, \"destination\": \"05-01-06-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 12:31:55', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021232169441722573136944', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000076\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 12:32:17', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021232177211722573137721', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408021232169381722573136938\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":0,\\\"message\\\":\\\"任务创建成功,任务号:202408021232169381722573136938\\\",\\\"returnData\\\":[]}\"', 'http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-02 12:32:18', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021232219671722573141967', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000076\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 12:32:22', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021232250091722573145009', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021034381181722566078118\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000052\", \"taskStatus\": 2, \"destination\": \"05-01-08-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 12:32:25', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021232250141722573145014', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021030177501722565817750\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000100\", \"taskStatus\": 100, \"destination\": \"05-01-06-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 12:32:25', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021232250361722573145036', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021030501631722565850163\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000062\", \"taskStatus\": 100, \"destination\": \"07-01-06-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 12:32:25', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021232360381722573156038', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021032264821722565946482\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000057\", \"taskStatus\": 100, \"destination\": \"06-01-07-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 12:32:36', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021232363601722573156360', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021033111361722565991136\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000029\", \"taskStatus\": 2, \"destination\": \"07-01-07-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 12:32:36', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021232560101722573176010', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021035054301722566105430\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000068\", \"taskStatus\": 2, \"destination\": \"04-01-09-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 12:32:56', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021232560121722573176012', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021034381181722566078118\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000052\", \"taskStatus\": 100, \"destination\": \"05-01-08-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 12:32:56', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021233070281722573187028', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021034411471722566081147\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000074\", \"taskStatus\": 2, \"destination\": \"07-01-08-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 12:33:07', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021233070341722573187034', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021033111361722565991136\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000029\", \"taskStatus\": 100, \"destination\": \"07-01-07-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 12:33:07', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021233071001722573187100', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021034147411722566054741\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000059\", \"taskStatus\": 2, \"destination\": \"06-01-08-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 12:33:07', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021233300551722573210055', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021035054301722566105430\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000068\", \"taskStatus\": 100, \"destination\": \"04-01-09-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 12:33:30', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021233400781722573220078', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021034147411722566054741\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000059\", \"taskStatus\": 100, \"destination\": \"06-01-08-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 12:33:40', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021233510401722573231040', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021034411471722566081147\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000074\", \"taskStatus\": 100, \"destination\": \"07-01-08-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 12:33:51', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021234005611722573240561', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021035336581722566133658\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000047\", \"taskStatus\": 2, \"destination\": \"05-01-09-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 12:34:01', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021234340141722573274014', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021035336581722566133658\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000047\", \"taskStatus\": 100, \"destination\": \"05-01-09-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 12:34:34', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021234390231722573279023', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021035585281722566158528\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000188\", \"taskStatus\": 100, \"destination\": \"08-01-10-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 12:34:39', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021234505611722573290561', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021037282571722566248257\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000026\", \"taskStatus\": 2, \"destination\": \"08-01-12-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 12:34:51', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021234510261722573291026', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021036486131722566208613\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000118\", \"taskStatus\": 100, \"destination\": \"09-01-11-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 12:34:51', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021235280541722573328054', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021037282571722566248257\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000026\", \"taskStatus\": 100, \"destination\": \"08-01-12-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 12:35:28', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021240525631722573652563', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021035018221722566101822\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000027\", \"taskStatus\": 2, \"destination\": \"03-01-11-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 12:40:53', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021240525781722573652578', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021034324211722566072421\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000069\", \"taskStatus\": 2, \"destination\": \"03-01-10-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 12:40:53', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021240531501722573653150', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021032168921722565936892\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000070\", \"taskStatus\": 100, \"destination\": \"03-01-08-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 12:40:53', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021240536311722573653631', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021034099591722566049959\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000067\", \"taskStatus\": 2, \"destination\": \"04-01-08-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 12:40:54', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021241260431722573686043', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021034099591722566049959\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000067\", \"taskStatus\": 100, \"destination\": \"04-01-08-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 12:41:26', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021241270301722573687030', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021034324211722566072421\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000069\", \"taskStatus\": 100, \"destination\": \"03-01-10-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 12:41:27', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021241376001722573697600', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021035597231722566159723\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000078\", \"taskStatus\": 2, \"destination\": \"03-01-13-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 12:41:38', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021241376201722573697620', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021035300321722566130032\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000028\", \"taskStatus\": 2, \"destination\": \"02-01-12-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 12:41:38', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021241380361722573698036', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021035018221722566101822\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000027\", \"taskStatus\": 100, \"destination\": \"03-01-11-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 12:41:38', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021242233521722573743352', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021035300321722566130032\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000028\", \"taskStatus\": 100, \"destination\": \"02-01-12-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 12:42:23', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021242270701722573747070', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021035597231722566159723\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000078\", \"taskStatus\": 100, \"destination\": \"03-01-13-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 12:42:27', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021242285291722573748529', '生成物料表', 'genGoods', '[{\"isAsc\": false, \"pageNo\": 0, \"sortBy\": \"\", \"goodsId\": \"\", \"pageSize\": 0, \"goodsName\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"生成电子标签库位成功。\\\"}\"', '127.0.0.1', '2024-08-02 12:42:29', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021242540971722573774097', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021037171321722566237132\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000193\", \"taskStatus\": 2, \"destination\": \"06-01-12-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 12:42:54', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021242560231722573776023', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021036381321722566198132\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000112\", \"taskStatus\": 2, \"destination\": \"01-01-16-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 12:42:56', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021242560411722573776041', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021036234081722566183408\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000166\", \"taskStatus\": 2, \"destination\": \"02-01-15-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 12:42:56', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021243015641722573781564', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021037318221722566251822\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000102\", \"taskStatus\": 2, \"destination\": \"02-01-16-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 12:43:02', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021243015841722573781584', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021036537041722566213704\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000107\", \"taskStatus\": 2, \"destination\": \"03-01-15-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 12:43:02', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021243080741722573788074', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021037120321722566232032\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000168\", \"taskStatus\": 2, \"destination\": \"04-01-12-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 12:43:08', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021243290621722573809062', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021037171321722566237132\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000193\", \"taskStatus\": 100, \"destination\": \"06-01-12-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 12:43:29', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021243330831722573813083', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021036234081722566183408\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000166\", \"taskStatus\": 100, \"destination\": \"02-01-15-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 12:43:33', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021243420981722573822098', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021037120321722566232032\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000168\", \"taskStatus\": 100, \"destination\": \"04-01-12-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 12:43:42', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021243425341722573822534', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021232169381722573136938\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000076\", \"taskStatus\": 2, \"destination\": \"05-01-12-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 12:43:43', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021243430451722573823045', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021036537041722566213704\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000107\", \"taskStatus\": 100, \"destination\": \"03-01-15-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 12:43:43', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021243439951722573823995', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021037069021722566226902\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000198\", \"taskStatus\": 2, \"destination\": \"01-01-17-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 12:43:44', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021243440001722573824000', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021036381321722566198132\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000112\", \"taskStatus\": 100, \"destination\": \"01-01-16-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 12:43:44', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021243440411722573824041', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021037357151722566255715\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000101\", \"taskStatus\": 2, \"destination\": \"02-01-17-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 12:43:44', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021243550441722573835044', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021037318221722566251822\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000102\", \"taskStatus\": 100, \"destination\": \"02-01-16-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 12:43:55', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021244190811722573859081', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021232169381722573136938\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000076\", \"taskStatus\": 100, \"destination\": \"05-01-12-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 12:44:19', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021244280701722573868070', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021037357151722566255715\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000101\", \"taskStatus\": 100, \"destination\": \"02-01-17-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 12:44:28', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021244400691722573880069', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021037069021722566226902\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000198\", \"taskStatus\": 100, \"destination\": \"01-01-17-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 12:44:40', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021248491511722574129151', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021036228291722566182829\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000061\", \"taskStatus\": 2, \"destination\": \"04-01-11-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 12:48:49', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021249254871722574165487', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021036228291722566182829\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000061\", \"taskStatus\": 100, \"destination\": \"04-01-11-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 12:49:25', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021256375621722574597562', 'Wcs请求载具入库', 'wcsVehicleIn', '[{\"point\": \"R1\", \"remark\": \"\", \"vehicleNo\": \"ASRS000054\", \"codeMessage\": \"ASRS000054\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求载具入库发生错误:当前载具没有入库或回库任务\\\"}\"', '192.168.8.62', '2024-08-02 12:56:38', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021256426701722574602670', 'Wcs请求载具入库', 'wcsVehicleIn', '[{\"point\": \"R1\", \"remark\": \"\", \"vehicleNo\": \"ASRS000054\", \"codeMessage\": \"ASRS000054\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求载具入库发生错误:当前载具没有入库或回库任务\\\"}\"', '192.168.8.62', '2024-08-02 12:56:43', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021256441601722574604160', 'Wcs请求载具入库', 'wcsVehicleIn', '[{\"point\": \"R1\", \"remark\": \"\", \"vehicleNo\": \"ASRS000075\", \"codeMessage\": \"ASRS000075\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求载具入库发生错误:当前载具没有入库或回库任务\\\"}\"', '192.168.8.62', '2024-08-02 12:56:44', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021256477491722574607749', 'Wcs请求载具入库', 'wcsVehicleIn', '[{\"point\": \"R1\", \"remark\": \"\", \"vehicleNo\": \"ASRS000095\", \"codeMessage\": \"ASRS000095\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求载具入库发生错误:当前载具没有入库或回库任务\\\"}\"', '192.168.8.62', '2024-08-02 12:56:48', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021256528491722574612849', 'Wcs请求载具入库', 'wcsVehicleIn', '[{\"point\": \"R1\", \"remark\": \"\", \"vehicleNo\": \"ASRS000095\", \"codeMessage\": \"ASRS000095\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求载具入库发生错误:当前载具没有入库或回库任务\\\"}\"', '192.168.8.62', '2024-08-02 12:56:53', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021257004591722574620459', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021036192221722566179222\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000054\", \"taskStatus\": 2, \"destination\": \"02-01-14-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 12:57:00', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021257414881722574661488', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021036192221722566179222\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000054\", \"taskStatus\": 100, \"destination\": \"02-01-14-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 12:57:41', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021304598111722575099811', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021032580921722565978092\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000075\", \"taskStatus\": 2, \"destination\": \"03-01-09-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 13:05:00', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021305365381722575136538', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021032580921722565978092\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000075\", \"taskStatus\": 100, \"destination\": \"03-01-09-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 13:05:37', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021306090921722575169092', 'Wcs请求载具入库', 'wcsVehicleIn', '[{\"point\": \"R1\", \"remark\": \"\", \"vehicleNo\": \"ASRS000080\", \"codeMessage\": \"ASRS000080\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求载具入库发生错误:当前载具没有入库或回库任务\\\"}\"', '192.168.8.62', '2024-08-02 13:06:09', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021306295651722575189565', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021035486101722566148610\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000080\", \"taskStatus\": 2, \"destination\": \"04-01-10-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 13:06:30', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021306300821722575190082', 'Wcs请求载具入库', 'wcsVehicleIn', '[{\"point\": \"R1\", \"remark\": \"\", \"vehicleNo\": \"ASRS000116\", \"codeMessage\": \"ASRS000116\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求载具入库发生错误:当前载具没有入库或回库任务\\\"}\"', '192.168.8.62', '2024-08-02 13:06:30', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021306445351722575204535', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021035477341722566147734\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000197\", \"taskStatus\": 2, \"destination\": \"03-01-12-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 13:06:45', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021306480281722575208028', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021036425791722566202579\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000116\", \"taskStatus\": 2, \"destination\": \"07-01-11-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 13:06:48', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021307045011722575224501', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021035486101722566148610\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000080\", \"taskStatus\": 100, \"destination\": \"04-01-10-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 13:07:05', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021307194771722575239477', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021035477341722566147734\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000197\", \"taskStatus\": 100, \"destination\": \"03-01-12-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 13:07:19', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021307194851722575239485', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021036374941722566197494\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000046\", \"taskStatus\": 2, \"destination\": \"03-01-14-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 13:07:19', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021307245101722575244510', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021036425791722566202579\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000116\", \"taskStatus\": 100, \"destination\": \"07-01-11-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 13:07:25', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021307249841722575244984', 'Wcs请求载具入库', 'wcsVehicleIn', '[{\"point\": \"R1\", \"remark\": \"\", \"vehicleNo\": \"ASRS000065\", \"codeMessage\": \"ASRS000065\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求载具入库发生错误:当前载具没有入库或回库任务\\\"}\"', '192.168.8.62', '2024-08-02 13:07:25', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021307300941722575250094', 'Wcs请求载具入库', 'wcsVehicleIn', '[{\"point\": \"R1\", \"remark\": \"\", \"vehicleNo\": \"ASRS000065\", \"codeMessage\": \"ASRS000065\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求载具入库发生错误:当前载具没有入库或回库任务\\\"}\"', '192.168.8.62', '2024-08-02 13:07:30', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021307372841722575257284', 'Wcs请求载具入库', 'wcsVehicleIn', '[{\"point\": \"R1\", \"remark\": \"\", \"vehicleNo\": \"ASRS000044\", \"codeMessage\": \"ASRS000044\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求载具入库发生错误:当前载具没有入库或回库任务\\\"}\"', '192.168.8.62', '2024-08-02 13:07:37', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021307574911722575277491', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021036374941722566197494\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000046\", \"taskStatus\": 100, \"destination\": \"03-01-14-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 13:07:57', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021308125061722575292506', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021035425891722566142589\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000044\", \"taskStatus\": 2, \"destination\": \"07-01-09-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 13:08:13', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021308136471722575293647', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021036405091722566200509\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000065\", \"taskStatus\": 2, \"destination\": \"05-01-11-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 13:08:14', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021308294751722575309475', 'Wcs请求载具入库', 'wcsVehicleIn', '[{\"point\": \"R1\", \"remark\": \"\", \"vehicleNo\": \"ASRS000094\", \"codeMessage\": \"ASRS000094\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求载具入库发生错误:当前载具没有入库或回库任务\\\"}\"', '192.168.8.62', '2024-08-02 13:08:29', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021308345651722575314565', 'Wcs请求载具入库', 'wcsVehicleIn', '[{\"point\": \"R1\", \"remark\": \"\", \"vehicleNo\": \"ASRS000094\", \"codeMessage\": \"ASRS000094\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求载具入库发生错误:当前载具没有入库或回库任务\\\"}\"', '192.168.8.62', '2024-08-02 13:08:35', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021308400251722575320025', 'Wcs请求载具入库', 'wcsVehicleIn', '[{\"point\": \"R1\", \"remark\": \"\", \"vehicleNo\": \"ASRS000045\", \"codeMessage\": \"ASRS000045\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求载具入库发生错误:当前载具没有入库或回库任务\\\"}\"', '192.168.8.62', '2024-08-02 13:08:40', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021308450851722575325085', 'Wcs请求载具入库', 'wcsVehicleIn', '[{\"point\": \"R1\", \"remark\": \"\", \"vehicleNo\": \"ASRS000045\", \"codeMessage\": \"ASRS000045\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求载具入库发生错误:当前载具没有入库或回库任务\\\"}\"', '192.168.8.62', '2024-08-02 13:08:45', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021308465221722575326522', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021035425891722566142589\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000044\", \"taskStatus\": 100, \"destination\": \"07-01-09-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 13:08:47', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021308484911722575328491', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021036405091722566200509\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000065\", \"taskStatus\": 100, \"destination\": \"05-01-11-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 13:08:48', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021309006011722575340601', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021036090301722566169030\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000045\", \"taskStatus\": 2, \"destination\": \"05-01-10-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 13:09:01', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021309355411722575375541', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021036090301722566169030\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000045\", \"taskStatus\": 100, \"destination\": \"05-01-10-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 13:09:36', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021311532461722575513246', 'Wcs请求载具入库', 'wcsVehicleIn', '[{\"point\": \"R1\", \"remark\": \"\", \"vehicleNo\": \"ASRS000072\", \"codeMessage\": \"ASRS000072\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求载具入库发生错误:当前载具没有入库或回库任务\\\"}\"', '192.168.8.62', '2024-08-02 13:11:53', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021311583641722575518364', 'Wcs请求载具入库', 'wcsVehicleIn', '[{\"point\": \"R1\", \"remark\": \"\", \"vehicleNo\": \"ASRS000072\", \"codeMessage\": \"ASRS000072\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求载具入库发生错误:当前载具没有入库或回库任务\\\"}\"', '192.168.8.62', '2024-08-02 13:11:58', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021312043121722575524312', 'Wcs请求载具入库', 'wcsVehicleIn', '[{\"point\": \"R1\", \"remark\": \"\", \"vehicleNo\": \"ASRS000051\", \"codeMessage\": \"ASRS000051\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求载具入库发生错误:当前载具没有入库或回库任务\\\"}\"', '192.168.8.62', '2024-08-02 13:12:04', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021312094131722575529413', 'Wcs请求载具入库', 'wcsVehicleIn', '[{\"point\": \"R1\", \"remark\": \"\", \"vehicleNo\": \"ASRS000051\", \"codeMessage\": \"ASRS000051\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求载具入库发生错误:当前载具没有入库或回库任务\\\"}\"', '192.168.8.62', '2024-08-02 13:12:09', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021312115941722575531594', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021035114301722566111430\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000072\", \"taskStatus\": 2, \"destination\": \"06-01-09-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 13:12:12', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021312124831722575532483', 'Wcs请求载具入库', 'wcsVehicleIn', '[{\"point\": \"R1\", \"remark\": \"\", \"vehicleNo\": \"ASRS000160\", \"codeMessage\": \"ASRS000160\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求载具入库发生错误:当前载具没有入库或回库任务\\\"}\"', '192.168.8.62', '2024-08-02 13:12:12', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021312175131722575537513', 'Wcs请求载具入库', 'wcsVehicleIn', '[{\"point\": \"R1\", \"remark\": \"\", \"vehicleNo\": \"ASRS000160\", \"codeMessage\": \"ASRS000160\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求载具入库发生错误:当前载具没有入库或回库任务\\\"}\"', '192.168.8.62', '2024-08-02 13:12:18', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021312187431722575538743', 'Wcs请求载具入库', 'wcsVehicleIn', '[{\"point\": \"R1\", \"remark\": \"\", \"vehicleNo\": \"ASRS000199\", \"codeMessage\": \"ASRS000199\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求载具入库发生错误:当前载具没有入库或回库任务\\\"}\"', '192.168.8.62', '2024-08-02 13:12:19', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021312238731722575543873', 'Wcs请求载具入库', 'wcsVehicleIn', '[{\"point\": \"R1\", \"remark\": \"\", \"vehicleNo\": \"ASRS000199\", \"codeMessage\": \"ASRS000199\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求载具入库发生错误:当前载具没有入库或回库任务\\\"}\"', '192.168.8.62', '2024-08-02 13:12:24', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021312250031722575545003', 'Wcs请求载具入库', 'wcsVehicleIn', '[{\"point\": \"R1\", \"remark\": \"\", \"vehicleNo\": \"ASRS000015\", \"codeMessage\": \"ASRS000015\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求载具入库发生错误:当前载具没有入库或回库任务\\\"}\"', '192.168.8.62', '2024-08-02 13:12:25', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021312301031722575550103', 'Wcs请求载具入库', 'wcsVehicleIn', '[{\"point\": \"R1\", \"remark\": \"\", \"vehicleNo\": \"ASRS000015\", \"codeMessage\": \"ASRS000015\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求载具入库发生错误:当前载具没有入库或回库任务\\\"}\"', '192.168.8.62', '2024-08-02 13:12:30', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021312450341722575565034', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021035543091722566154309\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000160\", \"taskStatus\": 2, \"destination\": \"06-01-10-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 13:12:45', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021312450421722575565042', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021036258101722566185810\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000051\", \"taskStatus\": 2, \"destination\": \"06-01-11-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 13:12:45', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021312455881722575565588', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021035114301722566111430\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000072\", \"taskStatus\": 100, \"destination\": \"06-01-09-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 13:12:46', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021312480381722575568038', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021027411231722565661123\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000015\", \"taskStatus\": 2, \"destination\": \"02-01-06-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 13:12:48', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021313215351722575601535', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021036258101722566185810\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000051\", \"taskStatus\": 100, \"destination\": \"06-01-11-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 13:13:22', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021313225641722575602564', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021027411231722565661123\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000015\", \"taskStatus\": 100, \"destination\": \"02-01-06-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 13:13:23', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021313325541722575612554', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021036147531722566174753\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000199\", \"taskStatus\": 2, \"destination\": \"07-01-10-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 13:13:33', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021313325621722575612562', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021035543091722566154309\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000160\", \"taskStatus\": 100, \"destination\": \"06-01-10-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 13:13:33', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021314065751722575646575', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021036147531722566174753\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000199\", \"taskStatus\": 100, \"destination\": \"07-01-10-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 13:14:07', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021316276721722575787672', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000113\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 13:16:28', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021316278201722575787820', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000113\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 13:16:28', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021316290341722575789034', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"07-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408021316276631722575787663\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000113\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":0,\\\"message\\\":\\\"任务创建成功,任务号:202408021316276631722575787663\\\",\\\"returnData\\\":[]}\"', 'http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-02 13:16:29', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021316313841722575791384', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000121\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 13:16:31', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021316316191722575791619', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000121\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 13:16:32', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021316326551722575792655', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"09-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408021316313711722575791371\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000121\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":0,\\\"message\\\":\\\"任务创建成功,任务号:202408021316313711722575791371\\\",\\\"returnData\\\":[]}\"', 'http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-02 13:16:33', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021316437441722575803744', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000167\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 13:16:44', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021316439101722575803910', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000167\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 13:16:44', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021316446941722575804694', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"03-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408021316437391722575803739\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000167\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":0,\\\"message\\\":\\\"任务创建成功,任务号:202408021316437391722575803739\\\",\\\"returnData\\\":[]}\"', 'http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-02 13:16:45', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021316481601722575808160', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000113\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 13:16:48', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021316483931722575808393', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000113\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 13:16:48', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021316485111722575808511', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000200\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 13:16:49', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021316486881722575808687', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"01-01-18-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408021316485071722575808507\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000200\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":0,\\\"message\\\":\\\"任务创建成功,任务号:202408021316485071722575808507\\\",\\\"returnData\\\":[]}\"', 'http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-02 13:16:49', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021316486911722575808691', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000200\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 13:16:49', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021316523711722575812371', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000121\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 13:16:52', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021316540291722575814029', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000120\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 13:16:54', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021316541801722575814180', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000120\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 13:16:54', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021316547751722575814775', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"04-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408021316540251722575814025\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000120\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":0,\\\"message\\\":\\\"任务创建成功,任务号:202408021316540251722575814025\\\",\\\"returnData\\\":[]}\"', 'http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-02 13:16:55', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021316593251722575819325', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000191\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 13:16:59', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021317007951722575820795', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"06-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408021316593201722575819320\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000191\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":0,\\\"message\\\":\\\"任务创建成功,任务号:202408021316593201722575819320\\\",\\\"returnData\\\":[]}\"', 'http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-02 13:17:01', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021317038321722575823832', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000105\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 13:17:04', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021317043321722575824332', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000167\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 13:17:04', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021317048841722575824884', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"08-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408021317038271722575823827\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000105\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":0,\\\"message\\\":\\\"任务创建成功,任务号:202408021317038271722575823827\\\",\\\"returnData\\\":[]}\"', 'http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-02 13:17:05', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021317083301722575828330', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000155\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 13:17:08', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021317085101722575828510', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000155\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 13:17:09', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021317087821722575828782', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000200\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 13:17:09', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021317087941722575828794', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"03-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408021317083251722575828325\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000155\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":0,\\\"message\\\":\\\"任务创建成功,任务号:202408021317083251722575828325\\\",\\\"returnData\\\":[]}\"', 'http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-02 13:17:09', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021317091121722575829112', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000200\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 13:17:09', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021317135741722575833574', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021316276631722575787663\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000113\", \"taskStatus\": 2, \"destination\": \"07-01-12-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 13:17:14', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021317145901722575834590', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000120\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 13:17:15', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021317148001722575834800', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000120\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 13:17:15', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021317156131722575835613', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021316313711722575791371\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000121\", \"taskStatus\": 2, \"destination\": \"09-01-12-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 13:17:16', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021317176341722575837634', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000194\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 13:17:18', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021317178121722575837812', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000194\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 13:17:18', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021317188341722575838834', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"01-01-19-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408021317176301722575837630\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000194\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":0,\\\"message\\\":\\\"任务创建成功,任务号:202408021317176301722575837630\\\",\\\"returnData\\\":[]}\"', 'http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-02 13:17:19', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021317244871722575844487', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000105\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 13:17:24', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021317245881722575844588', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000169\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 13:17:25', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021317247121722575844712', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000105\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 13:17:25', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021317247311722575844731', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000169\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 13:17:25', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021317248651722575844865', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"05-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408021317245831722575844583\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000169\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":0,\\\"message\\\":\\\"任务创建成功,任务号:202408021317245831722575844583\\\",\\\"returnData\\\":[]}\"', 'http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-02 13:17:25', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021317287131722575848713', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000155\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 13:17:29', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021317289101722575848910', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000155\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 13:17:29', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021317382481722575858248', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000194\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 13:17:38', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021317384901722575858490', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000194\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 13:17:38', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021317425731722575862573', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021316540251722575814025\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000120\", \"taskStatus\": 2, \"destination\": \"04-01-13-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 13:17:43', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021317452101722575865210', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000169\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 13:17:45', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021317454121722575865412', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000169\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 13:17:45', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021317470271722575867027', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000151\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 13:17:47', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021317472021722575867202', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000151\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 13:17:47', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021317489451722575868945', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"07-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408021317470231722575867023\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000151\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":0,\\\"message\\\":\\\"任务创建成功,任务号:202408021317470231722575867023\\\",\\\"returnData\\\":[]}\"', 'http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-02 13:17:49', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021317490431722575869043', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021316593201722575819320\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000191\", \"taskStatus\": 2, \"destination\": \"06-01-13-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 13:17:49', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021317495111722575869511', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021316276631722575787663\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000113\", \"taskStatus\": 100, \"destination\": \"07-01-12-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 13:17:50', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021317503201722575870320', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000119\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 13:17:50', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021317505111722575870511', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000119\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 13:17:51', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021317509361722575870936', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"09-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408021317503161722575870316\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000119\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":0,\\\"message\\\":\\\"任务创建成功,任务号:202408021317503161722575870316\\\",\\\"returnData\\\":[]}\"', 'http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-02 13:17:51', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021317530241722575873024', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021317038271722575823827\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000105\", \"taskStatus\": 2, \"destination\": \"08-01-13-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 13:17:53', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021317536211722575873621', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021316313711722575791371\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000121\", \"taskStatus\": 100, \"destination\": \"09-01-12-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 13:17:54', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021317548121722575874812', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000192\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 13:17:55', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021317549431722575874943', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"02-01-18-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408021317548071722575874807\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000192\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":0,\\\"message\\\":\\\"任务创建成功,任务号:202408021317548071722575874807\\\",\\\"returnData\\\":[]}\"', 'http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-02 13:17:55', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021317549851722575874985', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000192\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 13:17:55', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021318056891722575885689', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000190\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 13:18:06', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021318058121722575885812', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000190\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 13:18:06', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021318069761722575886976', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"02-01-19-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408021318056851722575885685\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000190\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":0,\\\"message\\\":\\\"任务创建成功,任务号:202408021318056851722575885685\\\",\\\"returnData\\\":[]}\"', 'http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-02 13:18:07', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021318077461722575887746', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000151\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 13:18:08', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021318079131722575887913', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000151\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 13:18:08', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021318089911722575888991', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000109\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 13:18:09', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021318091231722575889123', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000109\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 13:18:09', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021318094131722575889413', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000109\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 13:18:09', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021318110081722575891008', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"04-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408021318089881722575888988\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000109\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":0,\\\"message\\\":\\\"任务创建成功,任务号:202408021318089881722575888988\\\",\\\"returnData\\\":[]}\"', 'http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-02 13:18:11', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021318115351722575891535', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000119\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 13:18:12', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021318118021722575891802', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000119\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 13:18:12', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021318137991722575893799', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000189\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 13:18:14', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021318139611722575893961', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000189\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 13:18:14', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021318150281722575895028', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"06-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408021318137951722575893795\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000189\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":0,\\\"message\\\":\\\"任务创建成功,任务号:202408021318137951722575893795\\\",\\\"returnData\\\":[]}\"', 'http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-02 13:18:15', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021318157421722575895742', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000192\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 13:18:16', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021318182661722575898266', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000158\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 13:18:18', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021318184031722575898403', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000158\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 13:18:18', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021318185131722575898513', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021316540251722575814025\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000120\", \"taskStatus\": 100, \"destination\": \"04-01-13-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 13:18:19', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021318190161722575899016', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"08-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408021318182611722575898261\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000158\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":0,\\\"message\\\":\\\"任务创建成功,任务号:202408021318182611722575898261\\\",\\\"returnData\\\":[]}\"', 'http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-02 13:18:19', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021318227761722575902776', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000111\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 13:18:23', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021318229401722575902940', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000111\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 13:18:23', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021318230251722575903025', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"03-01-18-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408021318227721722575902772\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000111\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":0,\\\"message\\\":\\\"任务创建成功,任务号:202408021318227721722575902772\\\",\\\"returnData\\\":[]}\"', 'http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-02 13:18:23', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021318262721722575906272', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000190\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 13:18:26', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021318265121722575906512', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000190\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 13:18:27', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021318276021722575907602', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021316593201722575819320\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000191\", \"taskStatus\": 100, \"destination\": \"06-01-13-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 13:18:28', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021318299121722575909912', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000109\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 13:18:30', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021318301121722575910112', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000109\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 13:18:30', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021318316451722575911645', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021317038271722575823827\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000105\", \"taskStatus\": 100, \"destination\": \"08-01-13-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 13:18:32', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021318329061722575912906', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000103\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 13:18:33', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021318330061722575913006', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021317470231722575867023\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000151\", \"taskStatus\": 2, \"destination\": \"07-01-13-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 13:18:33', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021318330761722575913076', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"01-01-20-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408021318329021722575912902\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000103\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":0,\\\"message\\\":\\\"任务创建成功,任务号:202408021318329021722575912902\\\",\\\"returnData\\\":[]}\"', 'http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-02 13:18:33', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021318331011722575913101', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000103\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 13:18:33', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021318340551722575914055', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000189\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 13:18:34', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021318343021722575914302', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000189\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 13:18:34', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021318345341722575914534', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021317503161722575870316\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000119\", \"taskStatus\": 2, \"destination\": \"09-01-13-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 13:18:35', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021318361921722575916192', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000161\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 13:18:36', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021318364031722575916403', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000161\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 13:18:36', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021318371171722575917117', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"05-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408021318361891722575916189\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000161\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":0,\\\"message\\\":\\\"任务创建成功,任务号:202408021318361891722575916189\\\",\\\"returnData\\\":[]}\"', 'http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-02 13:18:37', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021318385521722575918552', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000158\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 13:18:39', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021318388031722575918803', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000158\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 13:18:39', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021318392461722575919246', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000158\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 13:18:39', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021318394991722575919499', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000152\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 13:18:39', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021318397151722575919715', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000152\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 13:18:40', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021318411371722575921137', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"07-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408021318394951722575919495\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000152\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":0,\\\"message\\\":\\\"任务创建成功,任务号:202408021318394951722575919495\\\",\\\"returnData\\\":[]}\"', 'http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-02 13:18:41', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021318428721722575922872', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000170\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 13:18:43', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021318430221722575923022', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000170\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 13:18:43', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021318431081722575923108', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"09-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408021318428681722575922868\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000170\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":0,\\\"message\\\":\\\"任务创建成功,任务号:202408021318428681722575922868\\\",\\\"returnData\\\":[]}\"', 'http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-02 13:18:43', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021318433121722575923312', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000111\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 13:18:43', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021318460931722575926093', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000153\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 13:18:46', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021318463111722575926311', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000153\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 13:18:46', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021318471521722575927152', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"03-01-19-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408021318460891722575926089\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000153\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":0,\\\"message\\\":\\\"任务创建成功,任务号:202408021318460891722575926089\\\",\\\"returnData\\\":[]}\"', 'http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-02 13:18:47', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021318535211722575933521', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000103\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 13:18:54', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021318538021722575933802', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000103\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 13:18:54', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021318575031722575937503', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000161\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 13:18:58', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021318577131722575937713', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000161\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 13:18:58', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021319013941722575941394', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000152\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 13:19:01', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021319016121722575941612', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000152\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 13:19:02', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021319052721722575945272', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000170\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 13:19:05', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021319091631722575949163', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000153\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 13:19:09', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021319115311722575951531', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021317470231722575867023\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000151\", \"taskStatus\": 100, \"destination\": \"07-01-13-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 13:19:12', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021319131751722575953175', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021318182611722575898261\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000158\", \"taskStatus\": 2, \"destination\": \"08-01-14-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 13:19:13', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021319135231722575953523', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021317503161722575870316\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000119\", \"taskStatus\": 100, \"destination\": \"09-01-13-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 13:19:14', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021319218691722575961869', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000108\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 13:19:22', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021319232991722575963299', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"01-01-21-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408021319218651722575961865\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000108\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":0,\\\"message\\\":\\\"任务创建成功,任务号:202408021319218651722575961865\\\",\\\"returnData\\\":[]}\"', 'http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-02 13:19:23', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021319268831722575966883', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000108\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 13:19:27', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021319284151722575968415', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000110\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 13:19:28', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021319293081722575969308', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"04-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408021319284121722575968412\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000110\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":0,\\\"message\\\":\\\"任务创建成功,任务号:202408021319284121722575968412\\\",\\\"returnData\\\":[]}\"', 'http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-02 13:19:29', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021319334441722575973444', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000110\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 13:19:33', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021319424641722575982464', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000108\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 13:19:42', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021319475741722575987574', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000108\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 13:19:48', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021319491141722575989114', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000110\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 13:19:49', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021319526021722575992602', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021318182611722575898261\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000158\", \"taskStatus\": 100, \"destination\": \"08-01-14-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 13:19:53', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021320512451722576051245', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000171\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 13:20:51', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021320514051722576051405', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000171\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 13:20:51', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021320516791722576051679', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"06-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408021320512391722576051239\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000171\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":0,\\\"message\\\":\\\"任务创建成功,任务号:202408021320512391722576051239\\\",\\\"returnData\\\":[]}\"', 'http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-02 13:20:52', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021320545491722576054549', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000159\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 13:20:55', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021320547161722576054716', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000159\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 13:20:55', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021320556601722576055660', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"08-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408021320545451722576054545\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000159\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":0,\\\"message\\\":\\\"任务创建成功,任务号:202408021320545451722576054545\\\",\\\"returnData\\\":[]}\"', 'http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-02 13:20:56', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021320577871722576057787', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000156\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 13:20:58', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021320580161722576058016', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000156\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 13:20:58', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021320597101722576059710', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"02-01-20-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408021320577831722576057783\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000156\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":0,\\\"message\\\":\\\"任务创建成功,任务号:202408021320577831722576057783\\\",\\\"returnData\\\":[]}\"', 'http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-02 13:21:00', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021321011041722576061104', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000157\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 13:21:01', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021321013161722576061316', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000157\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 13:21:01', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021321017091722576061709', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"02-01-21-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408021321011001722576061100\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000157\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":0,\\\"message\\\":\\\"任务创建成功,任务号:202408021321011001722576061100\\\",\\\"returnData\\\":[]}\"', 'http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-02 13:21:02', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021321044761722576064476', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000164\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 13:21:04', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021321046261722576064626', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000164\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 13:21:05', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021321057301722576065730', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"05-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408021321044711722576064471\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000164\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":0,\\\"message\\\":\\\"任务创建成功,任务号:202408021321044711722576064471\\\",\\\"returnData\\\":[]}\"', 'http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-02 13:21:06', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021321078011722576067801', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000162\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 13:21:08', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021321079671722576067967', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000162\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 13:21:08', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021321098101722576069810', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"07-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408021321077931722576067793\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000162\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":0,\\\"message\\\":\\\"任务创建成功,任务号:202408021321077931722576067793\\\",\\\"returnData\\\":[]}\"', 'http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-02 13:21:10', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021321119461722576071946', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000171\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 13:21:12', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021321121151722576072115', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000171\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 13:21:12', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021321149571722576074957', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000104\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 13:21:15', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021321156891722576075689', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000159\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 13:21:16', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021321157311722576075731', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"09-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408021321149521722576074952\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000104\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":0,\\\"message\\\":\\\"任务创建成功,任务号:202408021321149521722576074952\\\",\\\"returnData\\\":[]}\"', 'http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-02 13:21:16', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021321160061722576076006', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000159\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 13:21:16', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021321196361722576079636', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000156\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 13:21:20', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021321199051722576079905', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000156\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 13:21:20', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021321236371722576083637', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000157\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 13:21:24', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021321238161722576083816', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000157\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 13:21:24', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021321275181722576087518', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000164\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 13:21:28', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021321277171722576087717', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000164\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 13:21:28', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021321329471722576092947', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000162\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 13:21:33', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021321331371722576093137', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000162\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 13:21:33', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021321595801722576119580', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021317245831722575844583\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000169\", \"taskStatus\": 2, \"destination\": \"05-01-13-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 13:22:00', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021322017271722576121727', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000157\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 13:22:02', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021322019171722576121917', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000157\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 13:22:02', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021322056011722576125601', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021318137951722575893795\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000189\", \"taskStatus\": 2, \"destination\": \"06-01-14-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 13:22:06', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021322076581722576127658', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000164\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 13:22:08', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021322134121722576133412', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000162\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 13:22:13', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021322136071722576133607', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000162\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 13:22:14', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021322139071722576133907', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000162\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '192.168.8.62', '2024-08-02 13:22:14', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021322375671722576157567', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021317245831722575844583\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000169\", \"taskStatus\": 100, \"destination\": \"05-01-13-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 13:22:38', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021322446391722576164639', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021318137951722575893795\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000189\", \"taskStatus\": 100, \"destination\": \"06-01-14-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 13:22:45', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021322520761722576172076', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021317083251722575828325\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000155\", \"taskStatus\": 2, \"destination\": \"03-01-17-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 13:22:52', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021322520901722576172090', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021317548071722575874807\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000192\", \"taskStatus\": 2, \"destination\": \"02-01-18-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 13:22:52', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021322556121722576175612', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021318428681722575922868\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000170\", \"taskStatus\": 2, \"destination\": \"09-01-14-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 13:22:56', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021322566821722576176682', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021317176301722575837630\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000194\", \"taskStatus\": 2, \"destination\": \"01-01-19-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 13:22:57', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021322566971722576176697', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021318056851722575885685\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000190\", \"taskStatus\": 2, \"destination\": \"02-01-19-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 13:22:57', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021323012131722576181213', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021318394951722575919495\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000152\", \"taskStatus\": 2, \"destination\": \"07-01-14-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 13:23:01', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021323115331722576191533', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021319284121722575968412\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000110\", \"taskStatus\": 2, \"destination\": \"04-01-15-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 13:23:12', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021323115341722576191534', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021318361891722575916189\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000161\", \"taskStatus\": 2, \"destination\": \"05-01-14-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 13:23:12', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021323306091722576210609', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021317083251722575828325\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000155\", \"taskStatus\": 100, \"destination\": \"03-01-17-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 13:23:31', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021323356041722576215604', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021320545451722576054545\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000159\", \"taskStatus\": 2, \"destination\": \"08-01-15-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 13:23:36', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021323356111722576215611', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021318428681722575922868\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000170\", \"taskStatus\": 100, \"destination\": \"09-01-14-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 13:23:36', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021323405191722576220519', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021320512391722576051239\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000171\", \"taskStatus\": 2, \"destination\": \"06-01-15-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 13:23:41', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021323405271722576220527', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021318394951722575919495\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000152\", \"taskStatus\": 100, \"destination\": \"07-01-14-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 13:23:41', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021323415601722576221560', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021317548071722575874807\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000192\", \"taskStatus\": 100, \"destination\": \"02-01-18-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 13:23:42', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021323415761722576221576', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021318227721722575902772\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000111\", \"taskStatus\": 2, \"destination\": \"03-01-18-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 13:23:42', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021323415771722576221577', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021318460891722575926089\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000153\", \"taskStatus\": 2, \"destination\": \"03-01-19-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 13:23:42', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021323436201722576223620', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021317176301722575837630\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000194\", \"taskStatus\": 100, \"destination\": \"01-01-19-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 13:23:44', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021323516201722576231620', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021318361891722575916189\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000161\", \"taskStatus\": 100, \"destination\": \"05-01-14-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 13:23:52', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021323545511722576234551', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021321011001722576061100\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000157\", \"taskStatus\": 2, \"destination\": \"02-01-21-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 13:23:55', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021323545651722576234565', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021318056851722575885685\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000190\", \"taskStatus\": 100, \"destination\": \"02-01-19-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 13:23:55', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021323545821722576234582', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021319218651722575961865\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000108\", \"taskStatus\": 2, \"destination\": \"01-01-21-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 13:23:55', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021324036011722576243601', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021319284121722575968412\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000110\", \"taskStatus\": 100, \"destination\": \"04-01-15-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 13:24:04', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021324165911722576256591', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021320545451722576054545\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000159\", \"taskStatus\": 100, \"destination\": \"08-01-15-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 13:24:17', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021324205731722576260573', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021321077931722576067793\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000162\", \"taskStatus\": 2, \"destination\": \"07-01-15-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 13:24:21', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021324216131722576261613', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021320512391722576051239\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000171\", \"taskStatus\": 100, \"destination\": \"06-01-15-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 13:24:22', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021324216211722576261621', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021321044711722576064471\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000164\", \"taskStatus\": 2, \"destination\": \"05-01-15-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 13:24:22', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021324276511722576267651', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021318227721722575902772\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000111\", \"taskStatus\": 100, \"destination\": \"03-01-18-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 13:24:28', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021324391131722576279113', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021320577831722576057783\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000156\", \"taskStatus\": 2, \"destination\": \"02-01-20-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 13:24:39', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021324396201722576279620', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021318460891722575926089\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000153\", \"taskStatus\": 100, \"destination\": \"03-01-19-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 13:24:40', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021324446501722576284650', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021319218651722575961865\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000108\", \"taskStatus\": 100, \"destination\": \"01-01-21-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 13:24:45', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021324556311722576295631', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021321011001722576061100\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000157\", \"taskStatus\": 100, \"destination\": \"02-01-21-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 13:24:56', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021325016271722576301627', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021321077931722576067793\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000162\", \"taskStatus\": 100, \"destination\": \"07-01-15-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 13:25:02', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021325016291722576301629', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021321044711722576064471\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000164\", \"taskStatus\": 100, \"destination\": \"05-01-15-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 13:25:02', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021325252031722576325203', 'Wcs请求载具入库', 'wcsVehicleIn', '[{\"point\": \"R1\", \"remark\": \"\", \"vehicleNo\": \"ASRS000167\", \"codeMessage\": \"ASRS000167\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求载具入库发生错误:当前载具没有入库或回库任务\\\"}\"', '192.168.8.62', '2024-08-02 13:25:25', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021325255331722576325533', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021320577831722576057783\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000156\", \"taskStatus\": 100, \"destination\": \"02-01-20-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 13:25:26', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021325281611722576328161', 'Wcs请求载具入库', 'wcsVehicleIn', '[{\"point\": \"R1\", \"remark\": \"\", \"vehicleNo\": \"ASRS000200\", \"codeMessage\": \"ASRS000200\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求载具入库发生错误:当前载具没有入库或回库任务\\\"}\"', '192.168.8.62', '2024-08-02 13:25:28', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021325311331722576331133', 'Wcs请求载具入库', 'wcsVehicleIn', '[{\"point\": \"R1\", \"remark\": \"\", \"vehicleNo\": \"ASRS000109\", \"codeMessage\": \"ASRS000109\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求载具入库发生错误:当前载具没有入库或回库任务\\\"}\"', '192.168.8.62', '2024-08-02 13:25:31', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021325342131722576334213', 'Wcs请求载具入库', 'wcsVehicleIn', '[{\"point\": \"R1\", \"remark\": \"\", \"vehicleNo\": \"ASRS000103\", \"codeMessage\": \"ASRS000103\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求载具入库发生错误:当前载具没有入库或回库任务\\\"}\"', '192.168.8.62', '2024-08-02 13:25:34', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021325392231722576339223', 'Wcs请求载具入库', 'wcsVehicleIn', '[{\"point\": \"R1\", \"remark\": \"\", \"vehicleNo\": \"ASRS000103\", \"codeMessage\": \"ASRS000103\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求载具入库发生错误:当前载具没有入库或回库任务\\\"}\"', '192.168.8.62', '2024-08-02 13:25:39', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021325481561722576348156', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021316437391722575803739\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000167\", \"taskStatus\": 2, \"destination\": \"03-01-16-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 13:25:48', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021325516201722576351620', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021318089881722575888988\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000109\", \"taskStatus\": 2, \"destination\": \"04-01-14-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 13:25:52', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021325595701722576359570', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021318329021722575912902\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000103\", \"taskStatus\": 2, \"destination\": \"01-01-20-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 13:26:00', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021325595831722576359583', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021316485071722575808507\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000200\", \"taskStatus\": 2, \"destination\": \"01-01-18-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 13:26:00', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021326315651722576391565', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021318089881722575888988\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000109\", \"taskStatus\": 100, \"destination\": \"04-01-14-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 13:26:32', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021326325881722576392588', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021316437391722575803739\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000167\", \"taskStatus\": 100, \"destination\": \"03-01-16-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 13:26:33', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021326485791722576408579', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021316485071722575808507\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000200\", \"taskStatus\": 100, \"destination\": \"01-01-18-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 13:26:49', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021327006441722576420644', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021318329021722575912902\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000103\", \"taskStatus\": 100, \"destination\": \"01-01-20-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 13:27:01', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021329026981722576542698', 'Wcs请求载具入库', 'wcsVehicleIn', '[{\"point\": \"R1\", \"remark\": \"\", \"vehicleNo\": \"ASRS000094\", \"codeMessage\": \"ASRS000094\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求载具入库发生错误:当前载具没有入库或回库任务\\\"}\"', '192.168.8.62', '2024-08-02 13:29:03', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021329037581722576543758', '入库请求', 'requestIn', '[{\"userName\": \"管理员\", \"goodsList\": [{\"weight\": null, \"goodsId\": \"ASRS000095\", \"goodsNum\": 10, \"goodsDesc\": \"\", \"goodsName\": \"\", \"goodsType\": \"\", \"goodsUnit\": \"\", \"singleWeight\": null}], \"vehicleId\": \"ASRS000095\", \"originPoint\": \"\", \"totalWeight\": null}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"入库请求验证错误!载具号重复入库\\\"}\"', '192.168.8.93', '2024-08-02 13:29:04', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021329077151722576547715', 'Wcs请求载具入库', 'wcsVehicleIn', '[{\"point\": \"R1\", \"remark\": \"\", \"vehicleNo\": \"ASRS000094\", \"codeMessage\": \"ASRS000094\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求载具入库发生错误:当前载具没有入库或回库任务\\\"}\"', '192.168.8.62', '2024-08-02 13:29:08', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021331583621722576718362', '入库请求', 'requestIn', '[{\"userName\": \"管理员\", \"goodsList\": [{\"weight\": null, \"goodsId\": \"ASRS000185\", \"goodsNum\": 100, \"goodsDesc\": \"\", \"goodsName\": \"\", \"goodsType\": \"\", \"goodsUnit\": \"\", \"singleWeight\": null}], \"vehicleId\": \"ASRS000185\", \"originPoint\": \"\", \"totalWeight\": null}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"接收入库请求成功!\\\"}\"', '192.168.8.93', '2024-08-02 13:31:58', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021332039411722576723941', 'Wcs请求载具入库', 'wcsVehicleIn', '[{\"point\": \"R1\", \"remark\": \"\", \"vehicleNo\": \"ASRS000185\", \"codeMessage\": \"ASRS000185\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理载具入库请求成功!\\\"}\"', '192.168.8.62', '2024-08-02 13:32:04', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021332044111722576724411', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"03-01-20-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408021331583491722576718349\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000185\\\",\\\"vehicleSize\\\":1}]\"', '\"{\\\"code\\\":0,\\\"message\\\":\\\"任务创建成功,任务号:202408021331583491722576718349\\\",\\\"returnData\\\":[]}\"', 'http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-02 13:32:04', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021332089711722576728971', 'Wcs请求载具入库', 'wcsVehicleIn', '[{\"point\": \"R1\", \"remark\": \"\", \"vehicleNo\": \"ASRS000185\", \"codeMessage\": \"ASRS000185\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求载具入库发生错误:当前载具没有入库或回库任务\\\"}\"', '192.168.8.62', '2024-08-02 13:32:09', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021332271031722576747103', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021331583491722576718349\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000185\", \"taskStatus\": 2, \"destination\": \"03-01-20-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 13:32:27', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021332530331722576773033', '入库请求', 'requestIn', '[{\"userName\": \"管理员\", \"goodsList\": [{\"weight\": null, \"goodsId\": \"ASRS000172\", \"goodsNum\": 100, \"goodsDesc\": \"\", \"goodsName\": \"\", \"goodsType\": \"\", \"goodsUnit\": \"\", \"singleWeight\": null}], \"vehicleId\": \"ASRS000172\", \"originPoint\": \"\", \"totalWeight\": null}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"接收入库请求成功!\\\"}\"', '192.168.8.93', '2024-08-02 13:32:53', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021333013131722576781313', 'Wcs请求载具入库', 'wcsVehicleIn', '[{\"point\": \"R1\", \"remark\": \"\", \"vehicleNo\": \"ASRS000172\", \"codeMessage\": \"ASRS000172\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理载具入库请求成功!\\\"}\"', '192.168.8.62', '2024-08-02 13:33:01', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021333025071722576782507', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"01-01-22-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408021332530221722576773022\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000172\\\",\\\"vehicleSize\\\":1}]\"', '\"{\\\"code\\\":0,\\\"message\\\":\\\"任务创建成功,任务号:202408021332530221722576773022\\\",\\\"returnData\\\":[]}\"', 'http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-02 13:33:03', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021333063241722576786324', 'Wcs请求载具入库', 'wcsVehicleIn', '[{\"point\": \"R1\", \"remark\": \"\", \"vehicleNo\": \"ASRS000172\", \"codeMessage\": \"ASRS000172\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求载具入库发生错误:当前载具没有入库或回库任务\\\"}\"', '192.168.8.62', '2024-08-02 13:33:06', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021333105031722576790503', '入库请求', 'requestIn', '[{\"userName\": \"管理员\", \"goodsList\": [{\"weight\": null, \"goodsId\": \"ASRS000178\", \"goodsNum\": 100, \"goodsDesc\": \"\", \"goodsName\": \"\", \"goodsType\": \"\", \"goodsUnit\": \"\", \"singleWeight\": null}], \"vehicleId\": \"ASRS000178\", \"originPoint\": \"\", \"totalWeight\": null}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"接收入库请求成功!\\\"}\"', '192.168.8.93', '2024-08-02 13:33:11', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021333115601722576791560', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021331583491722576718349\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000185\", \"taskStatus\": 100, \"destination\": \"03-01-20-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 13:33:12', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021333153321722576795332', 'Wcs请求载具入库', 'wcsVehicleIn', '[{\"point\": \"R1\", \"remark\": \"\", \"vehicleNo\": \"ASRS000178\", \"codeMessage\": \"ASRS000178\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理载具入库请求成功!\\\"}\"', '192.168.8.62', '2024-08-02 13:33:15', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021333165661722576796566', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"04-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408021333104991722576790499\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000178\\\",\\\"vehicleSize\\\":1}]\"', '\"{\\\"code\\\":0,\\\"message\\\":\\\"任务创建成功,任务号:202408021333104991722576790499\\\",\\\"returnData\\\":[]}\"', 'http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-02 13:33:17', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021333203231722576800323', 'Wcs请求载具入库', 'wcsVehicleIn', '[{\"point\": \"R1\", \"remark\": \"\", \"vehicleNo\": \"ASRS000178\", \"codeMessage\": \"ASRS000178\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求载具入库发生错误:当前载具没有入库或回库任务\\\"}\"', '192.168.8.62', '2024-08-02 13:33:20', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021333256251722576805625', '入库请求', 'requestIn', '[{\"userName\": \"管理员\", \"goodsList\": [{\"weight\": null, \"goodsId\": \"ASRS000150\", \"goodsNum\": 100, \"goodsDesc\": \"\", \"goodsName\": \"\", \"goodsType\": \"\", \"goodsUnit\": \"\", \"singleWeight\": null}], \"vehicleId\": \"ASRS000150\", \"originPoint\": \"\", \"totalWeight\": null}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"接收入库请求成功!\\\"}\"', '192.168.8.93', '2024-08-02 13:33:26', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021333260571722576806057', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021332530221722576773022\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000172\", \"taskStatus\": 2, \"destination\": \"01-01-22-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 13:33:26', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021333291151722576809115', 'Wcs请求载具入库', 'wcsVehicleIn', '[{\"point\": \"R1\", \"remark\": \"\", \"vehicleNo\": \"ASRS000150\", \"codeMessage\": \"ASRS000150\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理载具入库请求成功!\\\"}\"', '192.168.8.62', '2024-08-02 13:33:29', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021333306151722576810615', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"06-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408021333256191722576805619\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000150\\\",\\\"vehicleSize\\\":1}]\"', '\"{\\\"code\\\":0,\\\"message\\\":\\\"任务创建成功,任务号:202408021333256191722576805619\\\",\\\"returnData\\\":[]}\"', 'http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-02 13:33:31', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021333341461722576814146', 'Wcs请求载具入库', 'wcsVehicleIn', '[{\"point\": \"R1\", \"remark\": \"\", \"vehicleNo\": \"ASRS000150\", \"codeMessage\": \"ASRS000150\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求载具入库发生错误:当前载具没有入库或回库任务\\\"}\"', '192.168.8.62', '2024-08-02 13:33:34', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021333360961722576816096', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021333104991722576790499\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000178\", \"taskStatus\": 2, \"destination\": \"04-01-16-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 13:33:36', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021333392301722576819230', '入库请求', 'requestIn', '[{\"userName\": \"管理员\", \"goodsList\": [{\"weight\": null, \"goodsId\": \"ASRS000131\", \"goodsNum\": 100, \"goodsDesc\": \"\", \"goodsName\": \"\", \"goodsType\": \"\", \"goodsUnit\": \"\", \"singleWeight\": null}], \"vehicleId\": \"ASRS000131\", \"originPoint\": \"\", \"totalWeight\": null}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"接收入库请求成功!\\\"}\"', '192.168.8.93', '2024-08-02 13:33:39', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021333426421722576822642', 'Wcs请求载具入库', 'wcsVehicleIn', '[{\"point\": \"R1\", \"remark\": \"\", \"vehicleNo\": \"ASRS000131\", \"codeMessage\": \"ASRS000131\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理载具入库请求成功!\\\"}\"', '192.168.8.62', '2024-08-02 13:33:43', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021333446831722576824683', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"08-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408021333392131722576819213\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000131\\\",\\\"vehicleSize\\\":1}]\"', '\"{\\\"code\\\":0,\\\"message\\\":\\\"任务创建成功,任务号:202408021333392131722576819213\\\",\\\"returnData\\\":[]}\"', 'http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-02 13:33:45', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021333470761722576827076', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021333256191722576805619\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000150\", \"taskStatus\": 2, \"destination\": \"06-01-16-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 13:33:47', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021333476841722576827684', 'Wcs请求载具入库', 'wcsVehicleIn', '[{\"point\": \"R1\", \"remark\": \"\", \"vehicleNo\": \"ASRS000131\", \"codeMessage\": \"ASRS000131\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求载具入库发生错误:当前载具没有入库或回库任务\\\"}\"', '192.168.8.62', '2024-08-02 13:33:48', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021333527751722576832775', '入库请求', 'requestIn', '[{\"userName\": \"管理员\", \"goodsList\": [{\"weight\": null, \"goodsId\": \"ASRS000145\", \"goodsNum\": 100, \"goodsDesc\": \"\", \"goodsName\": \"\", \"goodsType\": \"\", \"goodsUnit\": \"\", \"singleWeight\": null}], \"vehicleId\": \"ASRS000145\", \"originPoint\": \"\", \"totalWeight\": null}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"接收入库请求成功!\\\"}\"', '192.168.8.93', '2024-08-02 13:33:53', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021333534711722576833471', 'Wcs请求载具入库', 'wcsVehicleIn', '[{\"point\": \"R1\", \"remark\": \"\", \"vehicleNo\": \"ASRS000145\", \"codeMessage\": \"ASRS000145\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理载具入库请求成功!\\\"}\"', '192.168.8.62', '2024-08-02 13:33:53', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021333547361722576834736', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"03-01-21-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408021333527661722576832766\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000145\\\",\\\"vehicleSize\\\":1}]\"', '\"{\\\"code\\\":0,\\\"message\\\":\\\"任务创建成功,任务号:202408021333527661722576832766\\\",\\\"returnData\\\":[]}\"', 'http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-02 13:33:55', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021333581371722576838137', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021333392131722576819213\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000131\", \"taskStatus\": 2, \"destination\": \"08-01-16-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 13:33:58', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021333584221722576838422', 'Wcs请求载具入库', 'wcsVehicleIn', '[{\"point\": \"R1\", \"remark\": \"\", \"vehicleNo\": \"ASRS000145\", \"codeMessage\": \"ASRS000145\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求载具入库发生错误:当前载具没有入库或回库任务\\\"}\"', '192.168.8.62', '2024-08-02 13:33:58', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021334146301722576854630', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021332530221722576773022\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000172\", \"taskStatus\": 100, \"destination\": \"01-01-22-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 13:34:15', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021334166331722576856633', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021333527661722576832766\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000145\", \"taskStatus\": 2, \"destination\": \"03-01-21-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 13:34:17', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021334166491722576856649', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021333104991722576790499\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000178\", \"taskStatus\": 100, \"destination\": \"04-01-16-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 13:34:17', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021334169651722576856965', '入库请求', 'requestIn', '[{\"userName\": \"管理员\", \"goodsList\": [{\"weight\": null, \"goodsId\": \"ASRS000132\", \"goodsNum\": 100, \"goodsDesc\": \"\", \"goodsName\": \"\", \"goodsType\": \"\", \"goodsUnit\": \"\", \"singleWeight\": null}], \"vehicleId\": \"ASRS000132\", \"originPoint\": \"\", \"totalWeight\": null}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"接收入库请求成功!\\\"}\"', '192.168.8.93', '2024-08-02 13:34:17', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021334219641722576861964', 'Wcs请求载具入库', 'wcsVehicleIn', '[{\"point\": \"R1\", \"remark\": \"\", \"vehicleNo\": \"ASRS000132\", \"codeMessage\": \"ASRS000132\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理载具入库请求成功!\\\"}\"', '192.168.8.62', '2024-08-02 13:34:22', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021334228891722576862889', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"01-02-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408021334169561722576856956\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000132\\\",\\\"vehicleSize\\\":1}]\"', '\"{\\\"code\\\":0,\\\"message\\\":\\\"任务创建成功,任务号:202408021334169561722576856956\\\",\\\"returnData\\\":[]}\"', 'http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-02 13:34:23', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021334270151722576867015', 'Wcs请求载具入库', 'wcsVehicleIn', '[{\"point\": \"R1\", \"remark\": \"\", \"vehicleNo\": \"ASRS000132\", \"codeMessage\": \"ASRS000132\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求载具入库发生错误:当前载具没有入库或回库任务\\\"}\"', '192.168.8.62', '2024-08-02 13:34:27', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021334285511722576868551', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021333256191722576805619\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000150\", \"taskStatus\": 100, \"destination\": \"06-01-16-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 13:34:29', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021334395911722576879591', '入库请求', 'requestIn', '[{\"userName\": \"管理员\", \"goodsList\": [{\"weight\": null, \"goodsId\": \"ASRS000186\", \"goodsNum\": 100, \"goodsDesc\": \"\", \"goodsName\": \"\", \"goodsType\": \"\", \"goodsUnit\": \"\", \"singleWeight\": null}], \"vehicleId\": \"ASRS000186\", \"originPoint\": \"\", \"totalWeight\": null}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"接收入库请求成功!\\\"}\"', '192.168.8.93', '2024-08-02 13:34:40', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021334405411722576880541', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021333392131722576819213\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000131\", \"taskStatus\": 100, \"destination\": \"08-01-16-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 13:34:41', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021334426641722576882664', 'Wcs请求载具入库', 'wcsVehicleIn', '[{\"point\": \"R1\", \"remark\": \"\", \"vehicleNo\": \"ASRS000186\", \"codeMessage\": \"ASRS000186\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理载具入库请求成功!\\\"}\"', '192.168.8.62', '2024-08-02 13:34:43', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021334430901722576883090', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"05-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408021334395791722576879579\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000186\\\",\\\"vehicleSize\\\":1}]\"', '\"{\\\"code\\\":0,\\\"message\\\":\\\"任务创建成功,任务号:202408021334395791722576879579\\\",\\\"returnData\\\":[]}\"', 'http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-02 13:34:43', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021334465571722576886557', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021334169561722576856956\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000132\", \"taskStatus\": 2, \"destination\": \"01-02-01-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 13:34:47', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021334476241722576887624', 'Wcs请求载具入库', 'wcsVehicleIn', '[{\"point\": \"R1\", \"remark\": \"\", \"vehicleNo\": \"ASRS000186\", \"codeMessage\": \"ASRS000186\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求载具入库发生错误:当前载具没有入库或回库任务\\\"}\"', '192.168.8.62', '2024-08-02 13:34:48', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021335028351722576902835', '入库请求', 'requestIn', '[{\"userName\": \"管理员\", \"goodsList\": [{\"weight\": null, \"goodsId\": \"ASRS000129\", \"goodsNum\": 100, \"goodsDesc\": \"\", \"goodsName\": \"\", \"goodsType\": \"\", \"goodsUnit\": \"\", \"singleWeight\": null}], \"vehicleId\": \"ASRS000129\", \"originPoint\": \"\", \"totalWeight\": null}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"接收入库请求成功!\\\"}\"', '192.168.8.93', '2024-08-02 13:35:03', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021335030601722576903060', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021334395791722576879579\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000186\", \"taskStatus\": 2, \"destination\": \"05-01-16-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 13:35:03', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021335035831722576903583', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021333527661722576832766\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000145\", \"taskStatus\": 100, \"destination\": \"03-01-21-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 13:35:04', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021335060111722576906011', 'Wcs请求载具入库', 'wcsVehicleIn', '[{\"point\": \"R1\", \"remark\": \"\", \"vehicleNo\": \"ASRS000129\", \"codeMessage\": \"ASRS000129\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理载具入库请求成功!\\\"}\"', '192.168.8.62', '2024-08-02 13:35:06', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021335071521722576907152', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"07-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408021335028251722576902825\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000129\\\",\\\"vehicleSize\\\":1}]\"', '\"{\\\"code\\\":0,\\\"message\\\":\\\"任务创建成功,任务号:202408021335028251722576902825\\\",\\\"returnData\\\":[]}\"', 'http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-02 13:35:07', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021335110041722576911004', 'Wcs请求载具入库', 'wcsVehicleIn', '[{\"point\": \"R1\", \"remark\": \"\", \"vehicleNo\": \"ASRS000129\", \"codeMessage\": \"ASRS000129\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求载具入库发生错误:当前载具没有入库或回库任务\\\"}\"', '192.168.8.62', '2024-08-02 13:35:11', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021335151451722576915145', '入库请求', 'requestIn', '[{\"userName\": \"管理员\", \"goodsList\": [{\"weight\": null, \"goodsId\": \"ASRS000146\", \"goodsNum\": 100, \"goodsDesc\": \"\", \"goodsName\": \"\", \"goodsType\": \"\", \"goodsUnit\": \"\", \"singleWeight\": null}], \"vehicleId\": \"ASRS000146\", \"originPoint\": \"\", \"totalWeight\": null}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"接收入库请求成功!\\\"}\"', '192.168.8.93', '2024-08-02 13:35:15', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021335181161722576918116', 'Wcs请求载具入库', 'wcsVehicleIn', '[{\"point\": \"R1\", \"remark\": \"\", \"vehicleNo\": \"ASRS000146\", \"codeMessage\": \"ASRS000146\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理载具入库请求成功!\\\"}\"', '192.168.8.62', '2024-08-02 13:35:18', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021335191911722576919191', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"09-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408021335151331722576915133\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000146\\\",\\\"vehicleSize\\\":1}]\"', '\"{\\\"code\\\":0,\\\"message\\\":\\\"任务创建成功,任务号:202408021335151331722576915133\\\",\\\"returnData\\\":[]}\"', 'http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-02 13:35:19', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021335241481722576924148', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021335028251722576902825\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000129\", \"taskStatus\": 2, \"destination\": \"07-01-16-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 13:35:24', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021335246331722576924633', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021334169561722576856956\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000132\", \"taskStatus\": 100, \"destination\": \"01-02-01-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 13:35:25', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021335256281722576925628', '入库请求', 'requestIn', '[{\"userName\": \"管理员\", \"goodsList\": [{\"weight\": null, \"goodsId\": \"ASRS000141\", \"goodsNum\": 100, \"goodsDesc\": \"\", \"goodsName\": \"\", \"goodsType\": \"\", \"goodsUnit\": \"\", \"singleWeight\": null}], \"vehicleId\": \"ASRS000141\", \"originPoint\": \"\", \"totalWeight\": null}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"接收入库请求成功!\\\"}\"', '192.168.8.93', '2024-08-02 13:35:26', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021335282131722576928213', 'Wcs请求载具入库', 'wcsVehicleIn', '[{\"point\": \"R1\", \"remark\": \"\", \"vehicleNo\": \"ASRS000141\", \"codeMessage\": \"ASRS000141\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理载具入库请求成功!\\\"}\"', '192.168.8.62', '2024-08-02 13:35:28', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021335292111722576929211', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"02-01-22-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408021335256191722576925619\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000141\\\",\\\"vehicleSize\\\":1}]\"', '\"{\\\"code\\\":0,\\\"message\\\":\\\"任务创建成功,任务号:202408021335256191722576925619\\\",\\\"returnData\\\":[]}\"', 'http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-02 13:35:29', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021335332441722576933244', 'Wcs请求载具入库', 'wcsVehicleIn', '[{\"point\": \"R1\", \"remark\": \"\", \"vehicleNo\": \"ASRS000141\", \"codeMessage\": \"ASRS000141\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求载具入库发生错误:当前载具没有入库或回库任务\\\"}\"', '192.168.8.62', '2024-08-02 13:35:33', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021335335821722576933582', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021335151331722576915133\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000146\", \"taskStatus\": 2, \"destination\": \"09-01-16-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 13:35:34', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021335369861722576936986', '入库请求', 'requestIn', '[{\"userName\": \"管理员\", \"goodsList\": [{\"weight\": null, \"goodsId\": \"ASRS000181\", \"goodsNum\": 100, \"goodsDesc\": \"\", \"goodsName\": \"\", \"goodsType\": \"\", \"goodsUnit\": \"\", \"singleWeight\": null}], \"vehicleId\": \"ASRS000181\", \"originPoint\": \"\", \"totalWeight\": null}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"接收入库请求成功!\\\"}\"', '192.168.8.93', '2024-08-02 13:35:37', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021335399511722576939951', 'Wcs请求载具入库', 'wcsVehicleIn', '[{\"point\": \"R1\", \"remark\": \"\", \"vehicleNo\": \"ASRS000181\", \"codeMessage\": \"ASRS000181\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理载具入库请求成功!\\\"}\"', '192.168.8.62', '2024-08-02 13:35:40', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021335412581722576941258', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"02-02-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408021335369821722576936982\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000181\\\",\\\"vehicleSize\\\":1}]\"', '\"{\\\"code\\\":0,\\\"message\\\":\\\"任务创建成功,任务号:202408021335369821722576936982\\\",\\\"returnData\\\":[]}\"', 'http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-02 13:35:41', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021335446541722576944654', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021334395791722576879579\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000186\", \"taskStatus\": 100, \"destination\": \"05-01-16-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 13:35:45', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021335449251722576944925', 'Wcs请求载具入库', 'wcsVehicleIn', '[{\"point\": \"R1\", \"remark\": \"\", \"vehicleNo\": \"ASRS000181\", \"codeMessage\": \"ASRS000181\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求载具入库发生错误:当前载具没有入库或回库任务\\\"}\"', '192.168.8.62', '2024-08-02 13:35:45', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021335510801722576951080', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021335256191722576925619\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000141\", \"taskStatus\": 2, \"destination\": \"02-01-22-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 13:35:51', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021335523931722576952393', '入库请求', 'requestIn', '[{\"userName\": \"管理员\", \"goodsList\": [{\"weight\": null, \"goodsId\": \"ASRS000182\", \"goodsNum\": 100, \"goodsDesc\": \"\", \"goodsName\": \"\", \"goodsType\": \"\", \"goodsUnit\": \"\", \"singleWeight\": null}], \"vehicleId\": \"ASRS000182\", \"originPoint\": \"\", \"totalWeight\": null}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"接收入库请求成功!\\\"}\"', '192.168.8.93', '2024-08-02 13:35:52', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021335548861722576954886', 'Wcs请求载具入库', 'wcsVehicleIn', '[{\"point\": \"R1\", \"remark\": \"\", \"vehicleNo\": \"ASRS000182\", \"codeMessage\": \"ASRS000182\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理载具入库请求成功!\\\"}\"', '192.168.8.62', '2024-08-02 13:35:55', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021335553101722576955310', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"04-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408021335523891722576952389\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000182\\\",\\\"vehicleSize\\\":1}]\"', '\"{\\\"code\\\":0,\\\"message\\\":\\\"任务创建成功,任务号:202408021335523891722576952389\\\",\\\"returnData\\\":[]}\"', 'http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-02 13:35:55', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021335599761722576959976', 'Wcs请求载具入库', 'wcsVehicleIn', '[{\"point\": \"R1\", \"remark\": \"\", \"vehicleNo\": \"ASRS000182\", \"codeMessage\": \"ASRS000182\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求载具入库发生错误:当前载具没有入库或回库任务\\\"}\"', '192.168.8.62', '2024-08-02 13:36:00', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021336028621722576962862', '入库请求', 'requestIn', '[{\"userName\": \"管理员\", \"goodsList\": [{\"weight\": null, \"goodsId\": \"ASRS000187\", \"goodsNum\": 100, \"goodsDesc\": \"\", \"goodsName\": \"\", \"goodsType\": \"\", \"goodsUnit\": \"\", \"singleWeight\": null}], \"vehicleId\": \"ASRS000187\", \"originPoint\": \"\", \"totalWeight\": null}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"接收入库请求成功!\\\"}\"', '192.168.8.93', '2024-08-02 13:36:03', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021336045901722576964590', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021335369821722576936982\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000181\", \"taskStatus\": 2, \"destination\": \"02-02-01-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 13:36:05', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021336056071722576965607', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021335028251722576902825\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000129\", \"taskStatus\": 100, \"destination\": \"07-01-16-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 13:36:06', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021336056751722576965675', 'Wcs请求载具入库', 'wcsVehicleIn', '[{\"point\": \"R1\", \"remark\": \"\", \"vehicleNo\": \"ASRS000187\", \"codeMessage\": \"ASRS000187\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理载具入库请求成功!\\\"}\"', '192.168.8.62', '2024-08-02 13:36:06', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021336073871722576967387', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"06-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408021336028521722576962852\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000187\\\",\\\"vehicleSize\\\":1}]\"', '\"{\\\"code\\\":0,\\\"message\\\":\\\"任务创建成功,任务号:202408021336028521722576962852\\\",\\\"returnData\\\":[]}\"', 'http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-02 13:36:07', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021336107351722576970735', 'Wcs请求载具入库', 'wcsVehicleIn', '[{\"point\": \"R1\", \"remark\": \"\", \"vehicleNo\": \"ASRS000187\", \"codeMessage\": \"ASRS000187\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求载具入库发生错误:当前载具没有入库或回库任务\\\"}\"', '192.168.8.62', '2024-08-02 13:36:11', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021336140771722576974077', '入库请求', 'requestIn', '[{\"userName\": \"管理员\", \"goodsList\": [{\"weight\": null, \"goodsId\": \"ASRS000183\", \"goodsNum\": 100, \"goodsDesc\": \"\", \"goodsName\": \"\", \"goodsType\": \"\", \"goodsUnit\": \"\", \"singleWeight\": null}], \"vehicleId\": \"ASRS000183\", \"originPoint\": \"\", \"totalWeight\": null}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"接收入库请求成功!\\\"}\"', '192.168.8.93', '2024-08-02 13:36:14', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021336156601722576975660', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021335523891722576952389\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000182\", \"taskStatus\": 2, \"destination\": \"04-01-17-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 13:36:16', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021336165941722576976594', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021335151331722576915133\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000146\", \"taskStatus\": 100, \"destination\": \"09-01-16-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 13:36:17', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021336174711722576977471', 'Wcs请求载具入库', 'wcsVehicleIn', '[{\"point\": \"R1\", \"remark\": \"\", \"vehicleNo\": \"ASRS000183\", \"codeMessage\": \"ASRS000183\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理载具入库请求成功!\\\"}\"', '192.168.8.62', '2024-08-02 13:36:17', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021336194181722576979418', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"08-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408021336140731722576974073\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000183\\\",\\\"vehicleSize\\\":1}]\"', '\"{\\\"code\\\":0,\\\"message\\\":\\\"任务创建成功,任务号:202408021336140731722576974073\\\",\\\"returnData\\\":[]}\"', 'http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-02 13:36:19', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021336235591722576983559', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021336028521722576962852\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000187\", \"taskStatus\": 2, \"destination\": \"06-01-17-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 13:36:24', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021336249691722576984969', '入库请求', 'requestIn', '[{\"userName\": \"管理员\", \"goodsList\": [{\"weight\": null, \"goodsId\": \"ASRS000128\", \"goodsNum\": 100, \"goodsDesc\": \"\", \"goodsName\": \"\", \"goodsType\": \"\", \"goodsUnit\": \"\", \"singleWeight\": null}], \"vehicleId\": \"ASRS000128\", \"originPoint\": \"\", \"totalWeight\": null}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"接收入库请求成功!\\\"}\"', '192.168.8.93', '2024-08-02 13:36:25', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021336282231722576988223', 'Wcs请求载具入库', 'wcsVehicleIn', '[{\"point\": \"R1\", \"remark\": \"\", \"vehicleNo\": \"ASRS000128\", \"codeMessage\": \"ASRS000128\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理载具入库请求成功!\\\"}\"', '192.168.8.62', '2024-08-02 13:36:28', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021336294861722576989486', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"03-01-22-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408021336249611722576984961\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000128\\\",\\\"vehicleSize\\\":1}]\"', '\"{\\\"code\\\":0,\\\"message\\\":\\\"任务创建成功,任务号:202408021336249611722576984961\\\",\\\"returnData\\\":[]}\"', 'http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-02 13:36:29', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021336306421722576990642', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021335369821722576936982\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000181\", \"taskStatus\": 100, \"destination\": \"02-02-01-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 13:36:31', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021336330591722576993059', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021336140731722576974073\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000183\", \"taskStatus\": 2, \"destination\": \"08-01-17-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 13:36:33', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021336345341722576994534', '入库请求', 'requestIn', '[{\"userName\": \"管理员\", \"goodsList\": [{\"weight\": null, \"goodsId\": \"ASRS000126\", \"goodsNum\": 100, \"goodsDesc\": \"\", \"goodsName\": \"\", \"goodsType\": \"\", \"goodsUnit\": \"\", \"singleWeight\": null}], \"vehicleId\": \"ASRS000126\", \"originPoint\": \"\", \"totalWeight\": null}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"接收入库请求成功!\\\"}\"', '192.168.8.93', '2024-08-02 13:36:35', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021336381291722576998129', 'Wcs请求载具入库', 'wcsVehicleIn', '[{\"point\": \"R1\", \"remark\": \"\", \"vehicleNo\": \"ASRS000126\", \"codeMessage\": \"ASRS000126\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理载具入库请求成功!\\\"}\"', '192.168.8.62', '2024-08-02 13:36:38', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021336395351722576999535', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"01-02-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408021336345301722576994530\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000126\\\",\\\"vehicleSize\\\":1}]\"', '\"{\\\"code\\\":0,\\\"message\\\":\\\"任务创建成功,任务号:202408021336345301722576994530\\\",\\\"returnData\\\":[]}\"', 'http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-02 13:36:40', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021336405621722577000562', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021335256191722576925619\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000141\", \"taskStatus\": 100, \"destination\": \"02-01-22-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 13:36:41', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021336510421722577011042', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021336249611722576984961\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000128\", \"taskStatus\": 2, \"destination\": \"03-01-22-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 13:36:51', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021336586711722577018671', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021335523891722576952389\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000182\", \"taskStatus\": 100, \"destination\": \"04-01-17-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 13:36:59', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021336590641722577019064', '入库请求', 'requestIn', '[{\"userName\": \"管理员\", \"goodsList\": [{\"weight\": null, \"goodsId\": \"ASRS000173\", \"goodsNum\": 100, \"goodsDesc\": \"\", \"goodsName\": \"\", \"goodsType\": \"\", \"goodsUnit\": \"\", \"singleWeight\": null}], \"vehicleId\": \"ASRS000173\", \"originPoint\": \"\", \"totalWeight\": null}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"接收入库请求成功!\\\"}\"', '192.168.8.93', '2024-08-02 13:36:59', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021337021521722577022152', 'Wcs请求载具入库', 'wcsVehicleIn', '[{\"point\": \"R1\", \"remark\": \"\", \"vehicleNo\": \"ASRS000173\", \"codeMessage\": \"ASRS000173\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理载具入库请求成功!\\\"}\"', '192.168.8.62', '2024-08-02 13:37:02', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021337030731722577023073', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021336345301722576994530\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000126\", \"taskStatus\": 2, \"destination\": \"01-02-02-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 13:37:03', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021337035941722577023594', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"05-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408021336590591722577019059\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000173\\\",\\\"vehicleSize\\\":1}]\"', '\"{\\\"code\\\":0,\\\"message\\\":\\\"任务创建成功,任务号:202408021336590591722577019059\\\",\\\"returnData\\\":[]}\"', 'http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-02 13:37:04', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021337066621722577026662', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021336028521722576962852\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000187\", \"taskStatus\": 100, \"destination\": \"06-01-17-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 13:37:07', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021337071481722577027148', 'Wcs请求载具入库', 'wcsVehicleIn', '[{\"point\": \"R1\", \"remark\": \"\", \"vehicleNo\": \"ASRS000173\", \"codeMessage\": \"ASRS000173\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求载具入库发生错误:当前载具没有入库或回库任务\\\"}\"', '192.168.8.62', '2024-08-02 13:37:07', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021337082951722577028295', '入库请求', 'requestIn', '[{\"userName\": \"管理员\", \"goodsList\": [{\"weight\": null, \"goodsId\": \"ASRS000127\", \"goodsNum\": 100, \"goodsDesc\": \"\", \"goodsName\": \"\", \"goodsType\": \"\", \"goodsUnit\": \"\", \"singleWeight\": null}], \"vehicleId\": \"ASRS000127\", \"originPoint\": \"\", \"totalWeight\": null}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"接收入库请求成功!\\\"}\"', '192.168.8.93', '2024-08-02 13:37:08', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021337111581722577031158', 'Wcs请求载具入库', 'wcsVehicleIn', '[{\"point\": \"R1\", \"remark\": \"\", \"vehicleNo\": \"ASRS000127\", \"codeMessage\": \"ASRS000127\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理载具入库请求成功!\\\"}\"', '192.168.8.62', '2024-08-02 13:37:11', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021337116721722577031672', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"07-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408021337082881722577028288\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000127\\\",\\\"vehicleSize\\\":1}]\"', '\"{\\\"code\\\":0,\\\"message\\\":\\\"任务创建成功,任务号:202408021337082881722577028288\\\",\\\"returnData\\\":[]}\"', 'http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-02 13:37:12', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021337165921722577036592', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021336140731722576974073\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000183\", \"taskStatus\": 100, \"destination\": \"08-01-17-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 13:37:17', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021337177501722577037750', '入库请求', 'requestIn', '[{\"userName\": \"管理员\", \"goodsList\": [{\"weight\": null, \"goodsId\": \"ASRS000174\", \"goodsNum\": 100, \"goodsDesc\": \"\", \"goodsName\": \"\", \"goodsType\": \"\", \"goodsUnit\": \"\", \"singleWeight\": null}], \"vehicleId\": \"ASRS000174\", \"originPoint\": \"\", \"totalWeight\": null}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"接收入库请求成功!\\\"}\"', '192.168.8.93', '2024-08-02 13:37:18', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021337210231722577041023', 'Wcs请求载具入库', 'wcsVehicleIn', '[{\"point\": \"R1\", \"remark\": \"\", \"vehicleNo\": \"ASRS000174\", \"codeMessage\": \"ASRS000174\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理载具入库请求成功!\\\"}\"', '192.168.8.62', '2024-08-02 13:37:21', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021337216831722577041683', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"09-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408021337177411722577037741\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000174\\\",\\\"vehicleSize\\\":1}]\"', '\"{\\\"code\\\":0,\\\"message\\\":\\\"任务创建成功,任务号:202408021337177411722577037741\\\",\\\"returnData\\\":[]}\"', 'http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-02 13:37:22', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021337226321722577042632', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021336590591722577019059\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000173\", \"taskStatus\": 2, \"destination\": \"05-01-17-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 13:37:23', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021337279121722577047912', '入库请求', 'requestIn', '[{\"userName\": \"管理员\", \"goodsList\": [{\"weight\": null, \"goodsId\": \"ASRS000122\", \"goodsNum\": 100, \"goodsDesc\": \"\", \"goodsName\": \"\", \"goodsType\": \"\", \"goodsUnit\": \"\", \"singleWeight\": null}], \"vehicleId\": \"ASRS000122\", \"originPoint\": \"\", \"totalWeight\": null}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"接收入库请求成功!\\\"}\"', '192.168.8.93', '2024-08-02 13:37:28', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021337292021722577049202', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021337082881722577028288\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000127\", \"taskStatus\": 2, \"destination\": \"07-01-17-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 13:37:29', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021337295511722577049551', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021336345301722576994530\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000126\", \"taskStatus\": 100, \"destination\": \"01-02-02-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 13:37:30', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021337306821722577050682', 'Wcs请求载具入库', 'wcsVehicleIn', '[{\"point\": \"R1\", \"remark\": \"\", \"vehicleNo\": \"ASRS000122\", \"codeMessage\": \"ASRS000122\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理载具入库请求成功!\\\"}\"', '192.168.8.62', '2024-08-02 13:37:31', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021337316791722577051679', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"03-02-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408021337278971722577047897\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000122\\\",\\\"vehicleSize\\\":1}]\"', '\"{\\\"code\\\":0,\\\"message\\\":\\\"任务创建成功,任务号:202408021337278971722577047897\\\",\\\"returnData\\\":[]}\"', 'http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-02 13:37:32', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021337357281722577055728', 'Wcs请求载具入库', 'wcsVehicleIn', '[{\"point\": \"R1\", \"remark\": \"\", \"vehicleNo\": \"ASRS000122\", \"codeMessage\": \"ASRS000122\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求载具入库发生错误:当前载具没有入库或回库任务\\\"}\"', '192.168.8.62', '2024-08-02 13:37:36', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021337366521722577056652', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021337177411722577037741\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000174\", \"taskStatus\": 2, \"destination\": \"09-01-17-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 13:37:37', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021337381311722577058131', '入库请求', 'requestIn', '[{\"userName\": \"管理员\", \"goodsList\": [{\"weight\": null, \"goodsId\": \"ASRS000175\", \"goodsNum\": 100, \"goodsDesc\": \"\", \"goodsName\": \"\", \"goodsType\": \"\", \"goodsUnit\": \"\", \"singleWeight\": null}], \"vehicleId\": \"ASRS000175\", \"originPoint\": \"\", \"totalWeight\": null}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"接收入库请求成功!\\\"}\"', '192.168.8.93', '2024-08-02 13:37:38', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021337405211722577060521', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021336249611722576984961\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000128\", \"taskStatus\": 100, \"destination\": \"03-01-22-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 13:37:41', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021337413831722577061383', 'Wcs请求载具入库', 'wcsVehicleIn', '[{\"point\": \"R1\", \"remark\": \"\", \"vehicleNo\": \"ASRS000175\", \"codeMessage\": \"ASRS000175\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理载具入库请求成功!\\\"}\"', '192.168.8.62', '2024-08-02 13:37:41', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021337417311722577061731', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"01-02-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408021337381131722577058113\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000175\\\",\\\"vehicleSize\\\":1}]\"', '\"{\\\"code\\\":0,\\\"message\\\":\\\"任务创建成功,任务号:202408021337381131722577058113\\\",\\\"returnData\\\":[]}\"', 'http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-02 13:37:42', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021337524631722577072463', '入库请求', 'requestIn', '[{\"userName\": \"管理员\", \"goodsList\": [{\"weight\": null, \"goodsId\": \"ASRS000142\", \"goodsNum\": 100, \"goodsDesc\": \"\", \"goodsName\": \"\", \"goodsType\": \"\", \"goodsUnit\": \"\", \"singleWeight\": null}], \"vehicleId\": \"ASRS000142\", \"originPoint\": \"\", \"totalWeight\": null}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"接收入库请求成功!\\\"}\"', '192.168.8.93', '2024-08-02 13:37:52', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021337536511722577073651', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021337278971722577047897\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000122\", \"taskStatus\": 2, \"destination\": \"03-02-01-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 13:37:54', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021337558801722577075880', 'Wcs请求载具入库', 'wcsVehicleIn', '[{\"point\": \"R1\", \"remark\": \"\", \"vehicleNo\": \"ASRS000142\", \"codeMessage\": \"ASRS000142\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理载具入库请求成功!\\\"}\"', '192.168.8.62', '2024-08-02 13:37:56', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021337578351722577077835', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"04-01-18-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408021337524561722577072456\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000142\\\",\\\"vehicleSize\\\":1}]\"', '\"{\\\"code\\\":0,\\\"message\\\":\\\"任务创建成功,任务号:202408021337524561722577072456\\\",\\\"returnData\\\":[]}\"', 'http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-02 13:37:58', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021338009291722577080929', 'Wcs请求载具入库', 'wcsVehicleIn', '[{\"point\": \"R1\", \"remark\": \"\", \"vehicleNo\": \"ASRS000142\", \"codeMessage\": \"ASRS000142\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求载具入库发生错误:当前载具没有入库或回库任务\\\"}\"', '192.168.8.62', '2024-08-02 13:38:01', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021338056461722577085646', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021336590591722577019059\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000173\", \"taskStatus\": 100, \"destination\": \"05-01-17-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 13:38:06', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021338061111722577086111', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021337381131722577058113\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000175\", \"taskStatus\": 2, \"destination\": \"01-02-03-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 13:38:06', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021338126031722577092603', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021337082881722577028288\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000127\", \"taskStatus\": 100, \"destination\": \"07-01-17-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 13:38:13', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021338167031722577096703', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021337524561722577072456\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000142\", \"taskStatus\": 2, \"destination\": \"04-01-18-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 13:38:17', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021338206031722577100603', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021337177411722577037741\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000174\", \"taskStatus\": 100, \"destination\": \"09-01-17-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 13:38:21', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021338316531722577111653', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021337278971722577047897\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000122\", \"taskStatus\": 100, \"destination\": \"03-02-01-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 13:38:32', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021338325951722577112595', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021337381131722577058113\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000175\", \"taskStatus\": 100, \"destination\": \"01-02-03-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 13:38:33', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021339006451722577140645', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021337524561722577072456\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000142\", \"taskStatus\": 100, \"destination\": \"04-01-18-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 13:39:01', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021343587891722577438789', '获取当前站台任务完成信息', 'getFinishedWorkInfo', '[{\"goodsId\": \"\", \"standId\": \"ASRS-#1\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"获取工作信息成功\\\",\\\"returnData\\\":{\\\"actualCounts\\\":0,\\\"actualRows\\\":0,\\\"planCounts\\\":0,\\\"planRows\\\":0,\\\"standId\\\":\\\"ASRS-#1\\\",\\\"tip\\\":\\\"当前站台没有工作\\\"}}\"', '192.168.8.93', '2024-08-02 13:43:59', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021354410701722578081070', '入库请求', 'requestIn', '[{\"userName\": \"管理员\", \"goodsList\": [{\"weight\": null, \"goodsId\": \"ASRS000134\", \"goodsNum\": 99, \"goodsDesc\": \"\", \"goodsName\": \"\", \"goodsType\": \"\", \"goodsUnit\": \"\", \"singleWeight\": null}], \"vehicleId\": \"ASRS000134\", \"originPoint\": \"\", \"totalWeight\": null}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"接收入库请求成功!\\\"}\"', '192.168.8.93', '2024-08-02 13:54:41', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021354448721722578084872', 'Wcs请求载具入库', 'wcsVehicleIn', '[{\"point\": \"R1\", \"remark\": \"\", \"vehicleNo\": \"ASRS000134\", \"codeMessage\": \"ASRS000134\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理载具入库请求成功!\\\"}\"', '192.168.8.62', '2024-08-02 13:54:45', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021354461941722578086194', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"06-01-18-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408021354410641722578081064\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000134\\\",\\\"vehicleSize\\\":1}]\"', '\"{\\\"code\\\":0,\\\"message\\\":\\\"任务创建成功,任务号:202408021354410641722578081064\\\",\\\"returnData\\\":[]}\"', 'http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-02 13:54:46', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021354495611722578089561', 'Wcs请求载具入库', 'wcsVehicleIn', '[{\"point\": \"R1\", \"remark\": \"\", \"vehicleNo\": \"ASRS000134\", \"codeMessage\": \"ASRS000134\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求载具入库发生错误:当前载具没有入库或回库任务\\\"}\"', '192.168.8.62', '2024-08-02 13:54:50', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021354546671722578094667', '入库请求', 'requestIn', '[{\"userName\": \"管理员\", \"goodsList\": [{\"weight\": null, \"goodsId\": \"ASRS000133\", \"goodsNum\": 99, \"goodsDesc\": \"\", \"goodsName\": \"\", \"goodsType\": \"\", \"goodsUnit\": \"\", \"singleWeight\": null}], \"vehicleId\": \"ASRS000133\", \"originPoint\": \"\", \"totalWeight\": null}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"接收入库请求成功!\\\"}\"', '192.168.8.93', '2024-08-02 13:54:55', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021354592021722578099202', 'Wcs请求载具入库', 'wcsVehicleIn', '[{\"point\": \"R1\", \"remark\": \"\", \"vehicleNo\": \"ASRS000133\", \"codeMessage\": \"ASRS000133\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理载具入库请求成功!\\\"}\"', '192.168.8.62', '2024-08-02 13:54:59', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021355002591722578100259', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"08-01-18-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408021354546571722578094657\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000133\\\",\\\"vehicleSize\\\":1}]\"', '\"{\\\"code\\\":0,\\\"message\\\":\\\"任务创建成功,任务号:202408021354546571722578094657\\\",\\\"returnData\\\":[]}\"', 'http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-02 13:55:00', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021355024231722578102423', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021354410641722578081064\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000134\", \"taskStatus\": 2, \"destination\": \"06-01-18-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 13:55:02', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021355042611722578104261', 'Wcs请求载具入库', 'wcsVehicleIn', '[{\"point\": \"R1\", \"remark\": \"\", \"vehicleNo\": \"ASRS000133\", \"codeMessage\": \"ASRS000133\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求载具入库发生错误:当前载具没有入库或回库任务\\\"}\"', '192.168.8.62', '2024-08-02 13:55:04', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021355149671722578114967', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021354546571722578094657\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000133\", \"taskStatus\": 2, \"destination\": \"08-01-18-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 13:55:15', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021355257631722578125763', '入库请求', 'requestIn', '[{\"userName\": \"管理员\", \"goodsList\": [{\"weight\": null, \"goodsId\": \"ASRS000095\", \"goodsNum\": 99, \"goodsDesc\": \"\", \"goodsName\": \"\", \"goodsType\": \"\", \"goodsUnit\": \"\", \"singleWeight\": null}], \"vehicleId\": \"ASRS000095\", \"originPoint\": \"\", \"totalWeight\": null}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"接收入库请求成功!\\\"}\"', '192.168.8.93', '2024-08-02 13:55:26', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021355292241722578129224', 'Wcs请求载具入库', 'wcsVehicleIn', '[{\"point\": \"R1\", \"remark\": \"\", \"vehicleNo\": \"ASRS000095\", \"codeMessage\": \"ASRS000095\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理载具入库请求成功!\\\"}\"', '192.168.8.62', '2024-08-02 13:55:29', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021355303931722578130393', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"02-02-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408021355257571722578125757\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000095\\\",\\\"vehicleSize\\\":1}]\"', '\"{\\\"code\\\":0,\\\"message\\\":\\\"任务创建成功,任务号:202408021355257571722578125757\\\",\\\"returnData\\\":[]}\"', 'http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-02 13:55:30', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021355342531722578134253', 'Wcs请求载具入库', 'wcsVehicleIn', '[{\"point\": \"R1\", \"remark\": \"\", \"vehicleNo\": \"ASRS000095\", \"codeMessage\": \"ASRS000095\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求载具入库发生错误:当前载具没有入库或回库任务\\\"}\"', '192.168.8.62', '2024-08-02 13:55:34', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021355428471722578142847', '入库请求', 'requestIn', '[{\"userName\": \"管理员\", \"goodsList\": [{\"weight\": null, \"goodsId\": \"ASRS000147\", \"goodsNum\": 99, \"goodsDesc\": \"\", \"goodsName\": \"\", \"goodsType\": \"\", \"goodsUnit\": \"\", \"singleWeight\": null}], \"vehicleId\": \"ASRS000147\", \"originPoint\": \"\", \"totalWeight\": null}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"接收入库请求成功!\\\"}\"', '192.168.8.93', '2024-08-02 13:55:43', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021355463471722578146347', 'Wcs请求载具入库', 'wcsVehicleIn', '[{\"point\": \"R1\", \"remark\": \"\", \"vehicleNo\": \"ASRS000147\", \"codeMessage\": \"ASRS000147\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理载具入库请求成功!\\\"}\"', '192.168.8.62', '2024-08-02 13:55:46', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021355466241722578146624', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021354410641722578081064\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000134\", \"taskStatus\": 100, \"destination\": \"06-01-18-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 13:55:47', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021355484591722578148459', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"02-02-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408021355428441722578142844\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000147\\\",\\\"vehicleSize\\\":1}]\"', '\"{\\\"code\\\":0,\\\"message\\\":\\\"任务创建成功,任务号:202408021355428441722578142844\\\",\\\"returnData\\\":[]}\"', 'http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-02 13:55:48', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021355524461722578152446', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021355257571722578125757\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000095\", \"taskStatus\": 2, \"destination\": \"02-02-02-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 13:55:52', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021355555351722578155535', '入库请求', 'requestIn', '[{\"userName\": \"管理员\", \"goodsList\": [{\"weight\": null, \"goodsId\": \"ASRS000196\", \"goodsNum\": 99, \"goodsDesc\": \"\", \"goodsName\": \"\", \"goodsType\": \"\", \"goodsUnit\": \"\", \"singleWeight\": null}], \"vehicleId\": \"ASRS000196\", \"originPoint\": \"\", \"totalWeight\": null}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"接收入库请求成功!\\\"}\"', '192.168.8.93', '2024-08-02 13:55:56', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021355586181722578158618', 'Wcs请求载具入库', 'wcsVehicleIn', '[{\"point\": \"R1\", \"remark\": \"\", \"vehicleNo\": \"ASRS000196\", \"codeMessage\": \"ASRS000196\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理载具入库请求成功!\\\"}\"', '192.168.8.62', '2024-08-02 13:55:59', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021355595751722578159575', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021354546571722578094657\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000133\", \"taskStatus\": 100, \"destination\": \"08-01-18-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 13:56:00', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021356004861722578160486', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"05-01-18-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408021355555271722578155527\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000196\\\",\\\"vehicleSize\\\":1}]\"', '\"{\\\"code\\\":0,\\\"message\\\":\\\"任务创建成功,任务号:202408021355555271722578155527\\\",\\\"returnData\\\":[]}\"', 'http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-02 13:56:00', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021356036531722578163653', 'Wcs请求载具入库', 'wcsVehicleIn', '[{\"point\": \"R1\", \"remark\": \"\", \"vehicleNo\": \"ASRS000196\", \"codeMessage\": \"ASRS000196\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求载具入库发生错误:当前载具没有入库或回库任务\\\"}\"', '192.168.8.62', '2024-08-02 13:56:04', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021356109631722578170963', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021355428441722578142844\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000147\", \"taskStatus\": 2, \"destination\": \"02-02-03-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 13:56:11', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021356189351722578178935', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021355555271722578155527\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000196\", \"taskStatus\": 2, \"destination\": \"05-01-18-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 13:56:19', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021356195841722578179584', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021355257571722578125757\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000095\", \"taskStatus\": 100, \"destination\": \"02-02-02-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 13:56:20', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021356366141722578196614', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021355428441722578142844\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000147\", \"taskStatus\": 100, \"destination\": \"02-02-03-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 13:56:37', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021357025831722578222583', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021355555271722578155527\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000196\", \"taskStatus\": 100, \"destination\": \"05-01-18-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '192.168.8.62', '2024-08-02 13:57:03', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021427175161722580037516', 'Wcs请求载具入库', 'wcsVehicleIn', '[{\"point\": \"R1\", \"remark\": \"\", \"vehicleNo\": \"ASRS000126\", \"codeMessage\": \"ASRS000126\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求载具入库发生错误:当前载具没有入库或回库任务\\\"}\"', '192.168.8.62', '2024-08-02 14:27:18', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021427226041722580042604', 'Wcs请求载具入库', 'wcsVehicleIn', '[{\"point\": \"R1\", \"remark\": \"\", \"vehicleNo\": \"ASRS000126\", \"codeMessage\": \"ASRS000126\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求载具入库发生错误:当前载具没有入库或回库任务\\\"}\"', '192.168.8.62', '2024-08-02 14:27:23', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021428064251722580086425', 'Wcs请求载具入库', 'wcsVehicleIn', '[{\"point\": \"R1\", \"remark\": \"\", \"vehicleNo\": \"ASRS000126\", \"codeMessage\": \"ASRS000126\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求载具入库发生错误:当前载具没有入库或回库任务\\\"}\"', '192.168.8.62', '2024-08-02 14:28:06', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408021428115061722580091506', 'Wcs请求载具入库', 'wcsVehicleIn', '[{\"point\": \"R1\", \"remark\": \"\", \"vehicleNo\": \"ASRS000126\", \"codeMessage\": \"ASRS000126\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求载具入库发生错误:当前载具没有入库或回库任务\\\"}\"', '192.168.8.62', '2024-08-02 14:28:12', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408022209237761722607763776', '带密码登录', 'loginWithAuth', '[{\"isAsc\": true, \"pageNo\": 1, \"roleId\": null, \"sortBy\": \"\", \"userId\": null, \"addTime\": null, \"addUser\": \"\", \"pageSize\": 10, \"userName\": \"\", \"updateTime\": null, \"loginAccount\": \"admin\", \"loginPassword\": \"admin\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"登录成功\\\",\\\"returnData\\\":{\\\"menuList\\\":[{\\\"children\\\":[{\\\"children\\\":[],\\\"id\\\":\\\"11\\\",\\\"labelName\\\":\\\"入库\\\",\\\"path\\\":\\\"/goodsIn\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"12\\\",\\\"labelName\\\":\\\"出库\\\",\\\"path\\\":\\\"/goodsOut\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"13\\\",\\\"labelName\\\":\\\"盘点\\\",\\\"path\\\":\\\"/inventory\\\"}],\\\"iconValue\\\":\\\"Operation\\\",\\\"id\\\":\\\"1\\\",\\\"labelName\\\":\\\"操作\\\",\\\"path\\\":\\\"\\\"},{\\\"children\\\":[{\\\"children\\\":[],\\\"id\\\":\\\"21\\\",\\\"labelName\\\":\\\"库存信息\\\",\\\"path\\\":\\\"/stock\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"22\\\",\\\"labelName\\\":\\\"物料信息\\\",\\\"path\\\":\\\"/goods\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"23\\\",\\\"labelName\\\":\\\"入库记录\\\",\\\"path\\\":\\\"/inTaskRecord\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"24\\\",\\\"labelName\\\":\\\"出库记录\\\",\\\"path\\\":\\\"/outTaskRecord\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"241\\\",\\\"labelName\\\":\\\"盘点记录\\\",\\\"path\\\":\\\"/inventoryRecord\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"25\\\",\\\"labelName\\\":\\\"任务监控\\\",\\\"path\\\":\\\"/taskMonitor\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"26\\\",\\\"labelName\\\":\\\"库位监控\\\",\\\"path\\\":\\\"/location\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"28\\\",\\\"labelName\\\":\\\"接口日志\\\",\\\"path\\\":\\\"/wmsLog\\\"}],\\\"iconValue\\\":\\\"Histogram\\\",\\\"id\\\":\\\"2\\\",\\\"labelName\\\":\\\"数据\\\",\\\"path\\\":\\\"\\\"},{\\\"children\\\":[{\\\"children\\\":[],\\\"id\\\":\\\"35\\\",\\\"labelName\\\":\\\"系统配置\\\",\\\"path\\\":\\\"/config\\\"}],\\\"iconValue\\\":\\\"Setting\\\",\\\"id\\\":\\\"3\\\",\\\"labelName\\\":\\\"系统\\\"},{\\\"children\\\":[{\\\"children\\\":[],\\\"id\\\":\\\"41\\\",\\\"labelName\\\":\\\"备料执行\\\",\\\"path\\\":\\\"/testDoKitting\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"42\\\",\\\"labelName\\\":\\\"备料完成\\\",\\\"path\\\":\\\"/testFinishKitting\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"43\\\",\\\"labelName\\\":\\\"呼叫空箱\\\",\\\"path\\\":\\\"/testCallEmptyVehicle\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"44\\\",\\\"labelName\\\":\\\"整理盒子\\\",\\\"path\\\":\\\"/testSortBoxs\\\"}],\\\"iconValue\\\":\\\"Lock\\\",\\\"id\\\":\\\"4\\\",\\\"labelName\\\":\\\"测试\\\"}],\\\"standId\\\":\\\"ASRS-#1\\\",\\\"user\\\":{\\\"addTime\\\":\\\"2023-03-23 11:17:06\\\",\\\"addUser\\\":\\\"系统\\\",\\\"loginAccount\\\":\\\"admin\\\",\\\"loginPassword\\\":\\\"812C0C84E2970FA98456DDC5B0B59594\\\",\\\"roleId\\\":1,\\\"updateTime\\\":\\\"2023-03-23 11:17:10\\\",\\\"userId\\\":1,\\\"userName\\\":\\\"管理员\\\"}}}\"', '192.168.8.93', '2024-08-02 22:09:24', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408022232592701722609179270', '带密码登录', 'loginWithAuth', '[{\"isAsc\": true, \"pageNo\": 1, \"roleId\": null, \"sortBy\": \"\", \"userId\": null, \"addTime\": null, \"addUser\": \"\", \"pageSize\": 10, \"userName\": \"\", \"updateTime\": null, \"loginAccount\": \"admin\", \"loginPassword\": \"admin\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"登录成功\\\",\\\"returnData\\\":{\\\"menuList\\\":[{\\\"children\\\":[{\\\"children\\\":[],\\\"id\\\":\\\"11\\\",\\\"labelName\\\":\\\"入库\\\",\\\"path\\\":\\\"/goodsIn\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"12\\\",\\\"labelName\\\":\\\"出库\\\",\\\"path\\\":\\\"/goodsOut\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"13\\\",\\\"labelName\\\":\\\"盘点\\\",\\\"path\\\":\\\"/inventory\\\"}],\\\"iconValue\\\":\\\"Operation\\\",\\\"id\\\":\\\"1\\\",\\\"labelName\\\":\\\"操作\\\",\\\"path\\\":\\\"\\\"},{\\\"children\\\":[{\\\"children\\\":[],\\\"id\\\":\\\"21\\\",\\\"labelName\\\":\\\"库存信息\\\",\\\"path\\\":\\\"/stock\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"22\\\",\\\"labelName\\\":\\\"物料信息\\\",\\\"path\\\":\\\"/goods\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"23\\\",\\\"labelName\\\":\\\"入库记录\\\",\\\"path\\\":\\\"/inTaskRecord\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"24\\\",\\\"labelName\\\":\\\"出库记录\\\",\\\"path\\\":\\\"/outTaskRecord\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"241\\\",\\\"labelName\\\":\\\"盘点记录\\\",\\\"path\\\":\\\"/inventoryRecord\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"25\\\",\\\"labelName\\\":\\\"任务监控\\\",\\\"path\\\":\\\"/taskMonitor\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"26\\\",\\\"labelName\\\":\\\"库位监控\\\",\\\"path\\\":\\\"/location\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"28\\\",\\\"labelName\\\":\\\"接口日志\\\",\\\"path\\\":\\\"/wmsLog\\\"}],\\\"iconValue\\\":\\\"Histogram\\\",\\\"id\\\":\\\"2\\\",\\\"labelName\\\":\\\"数据\\\",\\\"path\\\":\\\"\\\"},{\\\"children\\\":[{\\\"children\\\":[],\\\"id\\\":\\\"35\\\",\\\"labelName\\\":\\\"系统配置\\\",\\\"path\\\":\\\"/config\\\"}],\\\"iconValue\\\":\\\"Setting\\\",\\\"id\\\":\\\"3\\\",\\\"labelName\\\":\\\"系统\\\"},{\\\"children\\\":[{\\\"children\\\":[],\\\"id\\\":\\\"41\\\",\\\"labelName\\\":\\\"备料执行\\\",\\\"path\\\":\\\"/testDoKitting\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"42\\\",\\\"labelName\\\":\\\"备料完成\\\",\\\"path\\\":\\\"/testFinishKitting\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"43\\\",\\\"labelName\\\":\\\"呼叫空箱\\\",\\\"path\\\":\\\"/testCallEmptyVehicle\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"44\\\",\\\"labelName\\\":\\\"整理盒子\\\",\\\"path\\\":\\\"/testSortBoxs\\\"}],\\\"iconValue\\\":\\\"Lock\\\",\\\"id\\\":\\\"4\\\",\\\"labelName\\\":\\\"测试\\\"}],\\\"standId\\\":\\\"ASRS-#1\\\",\\\"user\\\":{\\\"addTime\\\":\\\"2023-03-23 11:17:06\\\",\\\"addUser\\\":\\\"系统\\\",\\\"loginAccount\\\":\\\"admin\\\",\\\"loginPassword\\\":\\\"812C0C84E2970FA98456DDC5B0B59594\\\",\\\"roleId\\\":1,\\\"updateTime\\\":\\\"2023-03-23 11:17:10\\\",\\\"userId\\\":1,\\\"userName\\\":\\\"管理员\\\"}}}\"', '192.168.8.93', '2024-08-02 22:32:59', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408022233580521722609238052', '查询系统配置', 'getConfigsByPage', '[{\"isAsc\": true, \"pageNo\": 1, \"sortBy\": \"\", \"configId\": null, \"pageSize\": 10, \"configKey\": \"\", \"configName\": \"\", \"configType\": \"\", \"configValue\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"查询系统配置成功。\\\",\\\"returnData\\\":{\\\"lists\\\":[{\\\"configId\\\":1,\\\"configKey\\\":\\\"URL_WCS_TASK\\\",\\\"configName\\\":\\\"WCS接收任务URL\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask\\\"},{\\\"configId\\\":2,\\\"configKey\\\":\\\"WCS_TASK_CHANGE\\\",\\\"configName\\\":\\\"WCS接收任务状态变更URL\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"http://192.168.103.110:2000\\\"},{\\\"configId\\\":3,\\\"configKey\\\":\\\"MAX_VEHICLE_NUMS\\\",\\\"configName\\\":\\\"最大任务数量\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"54\\\"},{\\\"configId\\\":4,\\\"configKey\\\":\\\"URL_WCS_DISPOSE_VEHICLE\\\",\\\"configName\\\":\\\"Wcs释放箱子URL\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"http://192.168.8.62:18990/api/wms/convey/disposeVehicle\\\"},{\\\"configId\\\":5,\\\"configKey\\\":\\\"URL_WCS_E_TASK\\\",\\\"configName\\\":\\\"电子标签亮灯地址\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"http://192.168.8.62:18990/api/wms/elTag/elTagTask\\\"},{\\\"configId\\\":6,\\\"configKey\\\":\\\"SLOC_FILTER_STRING\\\",\\\"configName\\\":\\\"kitting物料筛选字符\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"DM05\\\"},{\\\"configId\\\":7,\\\"configKey\\\":\\\"URL_WCS_PICK_TASK\\\",\\\"configName\\\":\\\"WCS接收拣选任务URL\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"http://192.168.8.62:18990/api/wms/convey/conveyTask\\\"},{\\\"configId\\\":8,\\\"configKey\\\":\\\"START_WORK\\\",\\\"configName\\\":\\\"开始工作\\\",\\\"configType\\\":\\\"3\\\",\\\"configValue\\\":\\\"0\\\"},{\\\"configId\\\":9,\\\"configKey\\\":\\\"SEND_TASK\\\",\\\"configName\\\":\\\"发送任务\\\",\\\"configType\\\":\\\"3\\\",\\\"configValue\\\":\\\"1\\\"}],\\\"pages\\\":1,\\\"total\\\":9}}\"', '192.168.8.93', '2024-08-02 22:33:58', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408022234363541722609276354', '查询系统配置', 'getConfigsByPage', '[{\"isAsc\": true, \"pageNo\": 1, \"sortBy\": \"\", \"configId\": null, \"pageSize\": 10, \"configKey\": \"\", \"configName\": \"\", \"configType\": \"\", \"configValue\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"查询系统配置成功。\\\",\\\"returnData\\\":{\\\"lists\\\":[{\\\"configId\\\":1,\\\"configKey\\\":\\\"URL_WCS_TASK\\\",\\\"configName\\\":\\\"WCS接收任务URL\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask\\\"},{\\\"configId\\\":2,\\\"configKey\\\":\\\"WCS_TASK_CHANGE\\\",\\\"configName\\\":\\\"WCS接收任务状态变更URL\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"http://192.168.103.110:2000\\\"},{\\\"configId\\\":3,\\\"configKey\\\":\\\"MAX_VEHICLE_NUMS\\\",\\\"configName\\\":\\\"最大任务数量\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"54\\\"},{\\\"configId\\\":4,\\\"configKey\\\":\\\"URL_WCS_DISPOSE_VEHICLE\\\",\\\"configName\\\":\\\"Wcs释放箱子URL\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"http://192.168.8.62:18990/api/wms/convey/disposeVehicle\\\"},{\\\"configId\\\":5,\\\"configKey\\\":\\\"URL_WCS_E_TASK\\\",\\\"configName\\\":\\\"电子标签亮灯地址\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"http://192.168.8.62:18990/api/wms/elTag/elTagTask\\\"},{\\\"configId\\\":6,\\\"configKey\\\":\\\"SLOC_FILTER_STRING\\\",\\\"configName\\\":\\\"kitting物料筛选字符\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"DM05\\\"},{\\\"configId\\\":7,\\\"configKey\\\":\\\"URL_WCS_PICK_TASK\\\",\\\"configName\\\":\\\"WCS接收拣选任务URL\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"http://192.168.8.62:18990/api/wms/convey/conveyTask\\\"},{\\\"configId\\\":8,\\\"configKey\\\":\\\"START_WORK\\\",\\\"configName\\\":\\\"开始工作\\\",\\\"configType\\\":\\\"3\\\",\\\"configValue\\\":\\\"0\\\"},{\\\"configId\\\":9,\\\"configKey\\\":\\\"SEND_TASK\\\",\\\"configName\\\":\\\"发送任务\\\",\\\"configType\\\":\\\"3\\\",\\\"configValue\\\":\\\"1\\\"}],\\\"pages\\\":1,\\\"total\\\":9}}\"', '192.168.8.93', '2024-08-02 22:34:36', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408022234512031722609291203', '查询系统配置', 'getConfigsByPage', '[{\"isAsc\": true, \"pageNo\": 1, \"sortBy\": \"\", \"configId\": null, \"pageSize\": 10, \"configKey\": \"\", \"configName\": \"\", \"configType\": \"\", \"configValue\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"查询系统配置成功。\\\",\\\"returnData\\\":{\\\"lists\\\":[{\\\"configId\\\":1,\\\"configKey\\\":\\\"URL_WCS_TASK\\\",\\\"configName\\\":\\\"WCS接收任务URL\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask\\\"},{\\\"configId\\\":2,\\\"configKey\\\":\\\"WCS_TASK_CHANGE\\\",\\\"configName\\\":\\\"WCS接收任务状态变更URL\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"http://192.168.103.110:2000\\\"},{\\\"configId\\\":3,\\\"configKey\\\":\\\"MAX_VEHICLE_NUMS\\\",\\\"configName\\\":\\\"最大任务数量\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"54\\\"},{\\\"configId\\\":4,\\\"configKey\\\":\\\"URL_WCS_DISPOSE_VEHICLE\\\",\\\"configName\\\":\\\"Wcs释放箱子URL\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"http://192.168.8.62:18990/api/wms/convey/disposeVehicle\\\"},{\\\"configId\\\":5,\\\"configKey\\\":\\\"URL_WCS_E_TASK\\\",\\\"configName\\\":\\\"电子标签亮灯地址\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"http://192.168.8.62:18990/api/wms/elTag/elTagTask\\\"},{\\\"configId\\\":6,\\\"configKey\\\":\\\"SLOC_FILTER_STRING\\\",\\\"configName\\\":\\\"kitting物料筛选字符\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"DM05\\\"},{\\\"configId\\\":7,\\\"configKey\\\":\\\"URL_WCS_PICK_TASK\\\",\\\"configName\\\":\\\"WCS接收拣选任务URL\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"http://192.168.8.62:18990/api/wms/convey/conveyTask\\\"},{\\\"configId\\\":8,\\\"configKey\\\":\\\"START_WORK\\\",\\\"configName\\\":\\\"开始工作\\\",\\\"configType\\\":\\\"3\\\",\\\"configValue\\\":\\\"0\\\"},{\\\"configId\\\":9,\\\"configKey\\\":\\\"SEND_TASK\\\",\\\"configName\\\":\\\"发送任务\\\",\\\"configType\\\":\\\"3\\\",\\\"configValue\\\":\\\"1\\\"}],\\\"pages\\\":1,\\\"total\\\":9}}\"', '192.168.8.93', '2024-08-02 22:34:51', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408022235058801722609305880', '查询系统配置', 'getConfigsByPage', '[{\"isAsc\": true, \"pageNo\": 1, \"sortBy\": \"\", \"configId\": null, \"pageSize\": 25, \"configKey\": \"\", \"configName\": \"\", \"configType\": \"\", \"configValue\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"查询系统配置成功。\\\",\\\"returnData\\\":{\\\"lists\\\":[{\\\"configId\\\":1,\\\"configKey\\\":\\\"URL_WCS_TASK\\\",\\\"configName\\\":\\\"WCS接收任务URL\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask\\\"},{\\\"configId\\\":2,\\\"configKey\\\":\\\"WCS_TASK_CHANGE\\\",\\\"configName\\\":\\\"WCS接收任务状态变更URL\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"http://192.168.103.110:2000\\\"},{\\\"configId\\\":3,\\\"configKey\\\":\\\"MAX_VEHICLE_NUMS\\\",\\\"configName\\\":\\\"最大任务数量\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"54\\\"},{\\\"configId\\\":4,\\\"configKey\\\":\\\"URL_WCS_DISPOSE_VEHICLE\\\",\\\"configName\\\":\\\"Wcs释放箱子URL\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"http://192.168.8.62:18990/api/wms/convey/disposeVehicle\\\"},{\\\"configId\\\":5,\\\"configKey\\\":\\\"URL_WCS_E_TASK\\\",\\\"configName\\\":\\\"电子标签亮灯地址\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"http://192.168.8.62:18990/api/wms/elTag/elTagTask\\\"},{\\\"configId\\\":6,\\\"configKey\\\":\\\"SLOC_FILTER_STRING\\\",\\\"configName\\\":\\\"kitting物料筛选字符\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"DM05\\\"},{\\\"configId\\\":7,\\\"configKey\\\":\\\"URL_WCS_PICK_TASK\\\",\\\"configName\\\":\\\"WCS接收拣选任务URL\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"http://192.168.8.62:18990/api/wms/convey/conveyTask\\\"},{\\\"configId\\\":8,\\\"configKey\\\":\\\"START_WORK\\\",\\\"configName\\\":\\\"开始工作\\\",\\\"configType\\\":\\\"3\\\",\\\"configValue\\\":\\\"0\\\"},{\\\"configId\\\":9,\\\"configKey\\\":\\\"SEND_TASK\\\",\\\"configName\\\":\\\"发送任务\\\",\\\"configType\\\":\\\"3\\\",\\\"configValue\\\":\\\"1\\\"}],\\\"pages\\\":1,\\\"total\\\":9}}\"', '192.168.8.93', '2024-08-02 22:35:06', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408022235074781722609307478', '查询系统配置', 'getConfigsByPage', '[{\"isAsc\": true, \"pageNo\": 1, \"sortBy\": \"\", \"configId\": null, \"pageSize\": 10, \"configKey\": \"\", \"configName\": \"\", \"configType\": \"\", \"configValue\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"查询系统配置成功。\\\",\\\"returnData\\\":{\\\"lists\\\":[{\\\"configId\\\":1,\\\"configKey\\\":\\\"URL_WCS_TASK\\\",\\\"configName\\\":\\\"WCS接收任务URL\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask\\\"},{\\\"configId\\\":2,\\\"configKey\\\":\\\"WCS_TASK_CHANGE\\\",\\\"configName\\\":\\\"WCS接收任务状态变更URL\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"http://192.168.103.110:2000\\\"},{\\\"configId\\\":3,\\\"configKey\\\":\\\"MAX_VEHICLE_NUMS\\\",\\\"configName\\\":\\\"最大任务数量\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"54\\\"},{\\\"configId\\\":4,\\\"configKey\\\":\\\"URL_WCS_DISPOSE_VEHICLE\\\",\\\"configName\\\":\\\"Wcs释放箱子URL\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"http://192.168.8.62:18990/api/wms/convey/disposeVehicle\\\"},{\\\"configId\\\":5,\\\"configKey\\\":\\\"URL_WCS_E_TASK\\\",\\\"configName\\\":\\\"电子标签亮灯地址\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"http://192.168.8.62:18990/api/wms/elTag/elTagTask\\\"},{\\\"configId\\\":6,\\\"configKey\\\":\\\"SLOC_FILTER_STRING\\\",\\\"configName\\\":\\\"kitting物料筛选字符\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"DM05\\\"},{\\\"configId\\\":7,\\\"configKey\\\":\\\"URL_WCS_PICK_TASK\\\",\\\"configName\\\":\\\"WCS接收拣选任务URL\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"http://192.168.8.62:18990/api/wms/convey/conveyTask\\\"},{\\\"configId\\\":8,\\\"configKey\\\":\\\"START_WORK\\\",\\\"configName\\\":\\\"开始工作\\\",\\\"configType\\\":\\\"3\\\",\\\"configValue\\\":\\\"0\\\"},{\\\"configId\\\":9,\\\"configKey\\\":\\\"SEND_TASK\\\",\\\"configName\\\":\\\"发送任务\\\",\\\"configType\\\":\\\"3\\\",\\\"configValue\\\":\\\"1\\\"}],\\\"pages\\\":1,\\\"total\\\":9}}\"', '192.168.8.93', '2024-08-02 22:35:07', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408022236071631722609367163', '查询系统配置', 'getConfigsByPage', '[{\"isAsc\": true, \"pageNo\": 1, \"sortBy\": \"\", \"configId\": null, \"pageSize\": 10, \"configKey\": \"\", \"configName\": \"\", \"configType\": \"\", \"configValue\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"查询系统配置成功。\\\",\\\"returnData\\\":{\\\"lists\\\":[{\\\"configId\\\":1,\\\"configKey\\\":\\\"URL_WCS_TASK\\\",\\\"configName\\\":\\\"WCS接收任务URL\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask\\\"},{\\\"configId\\\":2,\\\"configKey\\\":\\\"WCS_TASK_CHANGE\\\",\\\"configName\\\":\\\"WCS接收任务状态变更URL\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"http://192.168.103.110:2000\\\"},{\\\"configId\\\":3,\\\"configKey\\\":\\\"MAX_VEHICLE_NUMS\\\",\\\"configName\\\":\\\"最大任务数量\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"54\\\"},{\\\"configId\\\":4,\\\"configKey\\\":\\\"URL_WCS_DISPOSE_VEHICLE\\\",\\\"configName\\\":\\\"Wcs释放箱子URL\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"http://192.168.8.62:18990/api/wms/convey/disposeVehicle\\\"},{\\\"configId\\\":5,\\\"configKey\\\":\\\"URL_WCS_E_TASK\\\",\\\"configName\\\":\\\"电子标签亮灯地址\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"http://192.168.8.62:18990/api/wms/elTag/elTagTask\\\"},{\\\"configId\\\":6,\\\"configKey\\\":\\\"SLOC_FILTER_STRING\\\",\\\"configName\\\":\\\"kitting物料筛选字符\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"DM05\\\"},{\\\"configId\\\":7,\\\"configKey\\\":\\\"URL_WCS_PICK_TASK\\\",\\\"configName\\\":\\\"WCS接收拣选任务URL\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"http://192.168.8.62:18990/api/wms/convey/conveyTask\\\"},{\\\"configId\\\":8,\\\"configKey\\\":\\\"START_WORK\\\",\\\"configName\\\":\\\"开始工作\\\",\\\"configType\\\":\\\"3\\\",\\\"configValue\\\":\\\"0\\\"},{\\\"configId\\\":9,\\\"configKey\\\":\\\"SEND_TASK\\\",\\\"configName\\\":\\\"发送任务\\\",\\\"configType\\\":\\\"3\\\",\\\"configValue\\\":\\\"1\\\"}],\\\"pages\\\":1,\\\"total\\\":9}}\"', '192.168.8.93', '2024-08-02 22:36:07', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408022237539941722609473994', '查询系统配置', 'getConfigsByPage', '[{\"isAsc\": true, \"pageNo\": 1, \"sortBy\": \"\", \"configId\": null, \"pageSize\": 10, \"configKey\": \"\", \"configName\": \"\", \"configType\": \"\", \"configValue\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"查询系统配置成功。\\\",\\\"returnData\\\":{\\\"lists\\\":[{\\\"configId\\\":1,\\\"configKey\\\":\\\"URL_WCS_TASK\\\",\\\"configName\\\":\\\"WCS接收任务URL\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask\\\"},{\\\"configId\\\":2,\\\"configKey\\\":\\\"WCS_TASK_CHANGE\\\",\\\"configName\\\":\\\"WCS接收任务状态变更URL\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"http://192.168.103.110:2000\\\"},{\\\"configId\\\":3,\\\"configKey\\\":\\\"MAX_VEHICLE_NUMS\\\",\\\"configName\\\":\\\"最大任务数量\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"54\\\"},{\\\"configId\\\":4,\\\"configKey\\\":\\\"URL_WCS_DISPOSE_VEHICLE\\\",\\\"configName\\\":\\\"Wcs释放箱子URL\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"http://192.168.8.62:18990/api/wms/convey/disposeVehicle\\\"},{\\\"configId\\\":5,\\\"configKey\\\":\\\"URL_WCS_E_TASK\\\",\\\"configName\\\":\\\"电子标签亮灯地址\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"http://192.168.8.62:18990/api/wms/elTag/elTagTask\\\"},{\\\"configId\\\":6,\\\"configKey\\\":\\\"SLOC_FILTER_STRING\\\",\\\"configName\\\":\\\"kitting物料筛选字符\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"DM05\\\"},{\\\"configId\\\":7,\\\"configKey\\\":\\\"URL_WCS_PICK_TASK\\\",\\\"configName\\\":\\\"WCS接收拣选任务URL\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"http://192.168.8.62:18990/api/wms/convey/conveyTask\\\"},{\\\"configId\\\":8,\\\"configKey\\\":\\\"START_WORK\\\",\\\"configName\\\":\\\"开始工作\\\",\\\"configType\\\":\\\"3\\\",\\\"configValue\\\":\\\"0\\\"},{\\\"configId\\\":9,\\\"configKey\\\":\\\"SEND_TASK\\\",\\\"configName\\\":\\\"发送任务\\\",\\\"configType\\\":\\\"3\\\",\\\"configValue\\\":\\\"1\\\"}],\\\"pages\\\":1,\\\"total\\\":9}}\"', '192.168.8.93', '2024-08-02 22:37:54', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408022238198301722609499830', '查询系统配置', 'getConfigsByPage', '[{\"isAsc\": true, \"pageNo\": 1, \"sortBy\": \"\", \"configId\": null, \"pageSize\": 10, \"configKey\": \"\", \"configName\": \"\", \"configType\": \"\", \"configValue\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"查询系统配置成功。\\\",\\\"returnData\\\":{\\\"lists\\\":[{\\\"configId\\\":1,\\\"configKey\\\":\\\"URL_WCS_TASK\\\",\\\"configName\\\":\\\"WCS接收任务URL\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask\\\"},{\\\"configId\\\":2,\\\"configKey\\\":\\\"WCS_TASK_CHANGE\\\",\\\"configName\\\":\\\"WCS接收任务状态变更URL\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"http://192.168.103.110:2000\\\"},{\\\"configId\\\":3,\\\"configKey\\\":\\\"MAX_VEHICLE_NUMS\\\",\\\"configName\\\":\\\"最大任务数量\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"54\\\"},{\\\"configId\\\":4,\\\"configKey\\\":\\\"URL_WCS_DISPOSE_VEHICLE\\\",\\\"configName\\\":\\\"Wcs释放箱子URL\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"http://192.168.8.62:18990/api/wms/convey/disposeVehicle\\\"},{\\\"configId\\\":5,\\\"configKey\\\":\\\"URL_WCS_E_TASK\\\",\\\"configName\\\":\\\"电子标签亮灯地址\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"http://192.168.8.62:18990/api/wms/elTag/elTagTask\\\"},{\\\"configId\\\":6,\\\"configKey\\\":\\\"SLOC_FILTER_STRING\\\",\\\"configName\\\":\\\"kitting物料筛选字符\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"DM05\\\"},{\\\"configId\\\":7,\\\"configKey\\\":\\\"URL_WCS_PICK_TASK\\\",\\\"configName\\\":\\\"WCS接收拣选任务URL\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"http://192.168.8.62:18990/api/wms/convey/conveyTask\\\"},{\\\"configId\\\":8,\\\"configKey\\\":\\\"START_WORK\\\",\\\"configName\\\":\\\"开始工作\\\",\\\"configType\\\":\\\"3\\\",\\\"configValue\\\":\\\"0\\\"},{\\\"configId\\\":9,\\\"configKey\\\":\\\"SEND_TASK\\\",\\\"configName\\\":\\\"发送任务\\\",\\\"configType\\\":\\\"3\\\",\\\"configValue\\\":\\\"1\\\"}],\\\"pages\\\":1,\\\"total\\\":9}}\"', '192.168.8.93', '2024-08-02 22:38:20', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408022238285681722609508568', '查询系统配置', 'getConfigsByPage', '[{\"isAsc\": true, \"pageNo\": 1, \"sortBy\": \"\", \"configId\": null, \"pageSize\": 10, \"configKey\": \"\", \"configName\": \"\", \"configType\": \"\", \"configValue\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"查询系统配置成功。\\\",\\\"returnData\\\":{\\\"lists\\\":[{\\\"configId\\\":1,\\\"configKey\\\":\\\"URL_WCS_TASK\\\",\\\"configName\\\":\\\"WCS接收任务URL\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask\\\"},{\\\"configId\\\":2,\\\"configKey\\\":\\\"WCS_TASK_CHANGE\\\",\\\"configName\\\":\\\"WCS接收任务状态变更URL\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"http://192.168.103.110:2000\\\"},{\\\"configId\\\":3,\\\"configKey\\\":\\\"MAX_VEHICLE_NUMS\\\",\\\"configName\\\":\\\"最大任务数量\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"54\\\"},{\\\"configId\\\":4,\\\"configKey\\\":\\\"URL_WCS_DISPOSE_VEHICLE\\\",\\\"configName\\\":\\\"Wcs释放箱子URL\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"http://192.168.8.62:18990/api/wms/convey/disposeVehicle\\\"},{\\\"configId\\\":5,\\\"configKey\\\":\\\"URL_WCS_E_TASK\\\",\\\"configName\\\":\\\"电子标签亮灯地址\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"http://192.168.8.62:18990/api/wms/elTag/elTagTask\\\"},{\\\"configId\\\":6,\\\"configKey\\\":\\\"SLOC_FILTER_STRING\\\",\\\"configName\\\":\\\"kitting物料筛选字符\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"DM05\\\"},{\\\"configId\\\":7,\\\"configKey\\\":\\\"URL_WCS_PICK_TASK\\\",\\\"configName\\\":\\\"WCS接收拣选任务URL\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"http://192.168.8.62:18990/api/wms/convey/conveyTask\\\"},{\\\"configId\\\":8,\\\"configKey\\\":\\\"START_WORK\\\",\\\"configName\\\":\\\"开始工作\\\",\\\"configType\\\":\\\"3\\\",\\\"configValue\\\":\\\"0\\\"},{\\\"configId\\\":9,\\\"configKey\\\":\\\"SEND_TASK\\\",\\\"configName\\\":\\\"发送任务\\\",\\\"configType\\\":\\\"3\\\",\\\"configValue\\\":\\\"1\\\"}],\\\"pages\\\":1,\\\"total\\\":9}}\"', '192.168.8.93', '2024-08-02 22:38:29', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408022238424161722609522416', '查询系统配置', 'getConfigsByPage', '[{\"isAsc\": true, \"pageNo\": 1, \"sortBy\": \"\", \"configId\": null, \"pageSize\": 10, \"configKey\": \"\", \"configName\": \"\", \"configType\": \"\", \"configValue\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"查询系统配置成功。\\\",\\\"returnData\\\":{\\\"lists\\\":[{\\\"configId\\\":1,\\\"configKey\\\":\\\"URL_WCS_TASK\\\",\\\"configName\\\":\\\"WCS接收任务URL\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask\\\"},{\\\"configId\\\":2,\\\"configKey\\\":\\\"WCS_TASK_CHANGE\\\",\\\"configName\\\":\\\"WCS接收任务状态变更URL\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"http://192.168.103.110:2000\\\"},{\\\"configId\\\":3,\\\"configKey\\\":\\\"MAX_VEHICLE_NUMS\\\",\\\"configName\\\":\\\"最大任务数量\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"54\\\"},{\\\"configId\\\":4,\\\"configKey\\\":\\\"URL_WCS_DISPOSE_VEHICLE\\\",\\\"configName\\\":\\\"Wcs释放箱子URL\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"http://192.168.8.62:18990/api/wms/convey/disposeVehicle\\\"},{\\\"configId\\\":5,\\\"configKey\\\":\\\"URL_WCS_E_TASK\\\",\\\"configName\\\":\\\"电子标签亮灯地址\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"http://192.168.8.62:18990/api/wms/elTag/elTagTask\\\"},{\\\"configId\\\":6,\\\"configKey\\\":\\\"SLOC_FILTER_STRING\\\",\\\"configName\\\":\\\"kitting物料筛选字符\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"DM05\\\"},{\\\"configId\\\":7,\\\"configKey\\\":\\\"URL_WCS_PICK_TASK\\\",\\\"configName\\\":\\\"WCS接收拣选任务URL\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"http://192.168.8.62:18990/api/wms/convey/conveyTask\\\"},{\\\"configId\\\":8,\\\"configKey\\\":\\\"START_WORK\\\",\\\"configName\\\":\\\"开始工作\\\",\\\"configType\\\":\\\"3\\\",\\\"configValue\\\":\\\"0\\\"},{\\\"configId\\\":9,\\\"configKey\\\":\\\"SEND_TASK\\\",\\\"configName\\\":\\\"发送任务\\\",\\\"configType\\\":\\\"3\\\",\\\"configValue\\\":\\\"1\\\"}],\\\"pages\\\":1,\\\"total\\\":9}}\"', '192.168.8.93', '2024-08-02 22:38:42', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408022243062711722609786271', '查询系统配置', 'getConfigsByPage', '[{\"isAsc\": true, \"pageNo\": 1, \"sortBy\": \"\", \"configId\": null, \"pageSize\": 10, \"configKey\": \"\", \"configName\": \"\", \"configType\": \"\", \"configValue\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"查询系统配置成功。\\\",\\\"returnData\\\":{\\\"lists\\\":[{\\\"configId\\\":1,\\\"configKey\\\":\\\"URL_WCS_TASK\\\",\\\"configName\\\":\\\"WCS接收任务URL\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask\\\"},{\\\"configId\\\":2,\\\"configKey\\\":\\\"WCS_TASK_CHANGE\\\",\\\"configName\\\":\\\"WCS接收任务状态变更URL\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"http://192.168.103.110:2000\\\"},{\\\"configId\\\":3,\\\"configKey\\\":\\\"MAX_VEHICLE_NUMS\\\",\\\"configName\\\":\\\"最大任务数量\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"54\\\"},{\\\"configId\\\":4,\\\"configKey\\\":\\\"URL_WCS_DISPOSE_VEHICLE\\\",\\\"configName\\\":\\\"Wcs释放箱子URL\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"http://192.168.8.62:18990/api/wms/convey/disposeVehicle\\\"},{\\\"configId\\\":5,\\\"configKey\\\":\\\"URL_WCS_E_TASK\\\",\\\"configName\\\":\\\"电子标签亮灯地址\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"http://192.168.8.62:18990/api/wms/elTag/elTagTask\\\"},{\\\"configId\\\":6,\\\"configKey\\\":\\\"SLOC_FILTER_STRING\\\",\\\"configName\\\":\\\"kitting物料筛选字符\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"DM05\\\"},{\\\"configId\\\":7,\\\"configKey\\\":\\\"URL_WCS_PICK_TASK\\\",\\\"configName\\\":\\\"WCS接收拣选任务URL\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"http://192.168.8.62:18990/api/wms/convey/conveyTask\\\"},{\\\"configId\\\":8,\\\"configKey\\\":\\\"START_WORK\\\",\\\"configName\\\":\\\"开始工作\\\",\\\"configType\\\":\\\"3\\\",\\\"configValue\\\":\\\"0\\\"},{\\\"configId\\\":9,\\\"configKey\\\":\\\"SEND_TASK\\\",\\\"configName\\\":\\\"发送任务\\\",\\\"configType\\\":\\\"3\\\",\\\"configValue\\\":\\\"1\\\"}],\\\"pages\\\":1,\\\"total\\\":9}}\"', '192.168.8.93', '2024-08-02 22:43:06', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408022244019201722609841920', '查询系统配置', 'getConfigsByPage', '[{\"isAsc\": true, \"pageNo\": 1, \"sortBy\": \"\", \"configId\": null, \"pageSize\": 10, \"configKey\": \"\", \"configName\": \"\", \"configType\": \"\", \"configValue\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"查询系统配置成功。\\\",\\\"returnData\\\":{\\\"lists\\\":[{\\\"configId\\\":1,\\\"configKey\\\":\\\"URL_WCS_TASK\\\",\\\"configName\\\":\\\"WCS接收任务URL\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask\\\"},{\\\"configId\\\":2,\\\"configKey\\\":\\\"WCS_TASK_CHANGE\\\",\\\"configName\\\":\\\"WCS接收任务状态变更URL\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"http://192.168.103.110:2000\\\"},{\\\"configId\\\":3,\\\"configKey\\\":\\\"MAX_VEHICLE_NUMS\\\",\\\"configName\\\":\\\"最大任务数量\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"54\\\"},{\\\"configId\\\":4,\\\"configKey\\\":\\\"URL_WCS_DISPOSE_VEHICLE\\\",\\\"configName\\\":\\\"Wcs释放箱子URL\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"http://192.168.8.62:18990/api/wms/convey/disposeVehicle\\\"},{\\\"configId\\\":5,\\\"configKey\\\":\\\"URL_WCS_E_TASK\\\",\\\"configName\\\":\\\"电子标签亮灯地址\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"http://192.168.8.62:18990/api/wms/elTag/elTagTask\\\"},{\\\"configId\\\":6,\\\"configKey\\\":\\\"SLOC_FILTER_STRING\\\",\\\"configName\\\":\\\"kitting物料筛选字符\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"DM05\\\"},{\\\"configId\\\":7,\\\"configKey\\\":\\\"URL_WCS_PICK_TASK\\\",\\\"configName\\\":\\\"WCS接收拣选任务URL\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"http://192.168.8.62:18990/api/wms/convey/conveyTask\\\"},{\\\"configId\\\":8,\\\"configKey\\\":\\\"START_WORK\\\",\\\"configName\\\":\\\"开始工作\\\",\\\"configType\\\":\\\"3\\\",\\\"configValue\\\":\\\"0\\\"},{\\\"configId\\\":9,\\\"configKey\\\":\\\"SEND_TASK\\\",\\\"configName\\\":\\\"发送任务\\\",\\\"configType\\\":\\\"3\\\",\\\"configValue\\\":\\\"1\\\"}],\\\"pages\\\":1,\\\"total\\\":9}}\"', '192.168.8.93', '2024-08-02 22:44:02', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408022244055301722609845530', '查询系统配置', 'getConfigsByPage', '[{\"isAsc\": true, \"pageNo\": 1, \"sortBy\": \"\", \"configId\": null, \"pageSize\": 10, \"configKey\": \"\", \"configName\": \"\", \"configType\": \"\", \"configValue\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"查询系统配置成功。\\\",\\\"returnData\\\":{\\\"lists\\\":[{\\\"configId\\\":1,\\\"configKey\\\":\\\"URL_WCS_TASK\\\",\\\"configName\\\":\\\"WCS接收任务URL\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask\\\"},{\\\"configId\\\":2,\\\"configKey\\\":\\\"WCS_TASK_CHANGE\\\",\\\"configName\\\":\\\"WCS接收任务状态变更URL\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"http://192.168.103.110:2000\\\"},{\\\"configId\\\":3,\\\"configKey\\\":\\\"MAX_VEHICLE_NUMS\\\",\\\"configName\\\":\\\"最大任务数量\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"54\\\"},{\\\"configId\\\":4,\\\"configKey\\\":\\\"URL_WCS_DISPOSE_VEHICLE\\\",\\\"configName\\\":\\\"Wcs释放箱子URL\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"http://192.168.8.62:18990/api/wms/convey/disposeVehicle\\\"},{\\\"configId\\\":5,\\\"configKey\\\":\\\"URL_WCS_E_TASK\\\",\\\"configName\\\":\\\"电子标签亮灯地址\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"http://192.168.8.62:18990/api/wms/elTag/elTagTask\\\"},{\\\"configId\\\":6,\\\"configKey\\\":\\\"SLOC_FILTER_STRING\\\",\\\"configName\\\":\\\"kitting物料筛选字符\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"DM05\\\"},{\\\"configId\\\":7,\\\"configKey\\\":\\\"URL_WCS_PICK_TASK\\\",\\\"configName\\\":\\\"WCS接收拣选任务URL\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"http://192.168.8.62:18990/api/wms/convey/conveyTask\\\"},{\\\"configId\\\":8,\\\"configKey\\\":\\\"START_WORK\\\",\\\"configName\\\":\\\"开始工作\\\",\\\"configType\\\":\\\"3\\\",\\\"configValue\\\":\\\"0\\\"},{\\\"configId\\\":9,\\\"configKey\\\":\\\"SEND_TASK\\\",\\\"configName\\\":\\\"发送任务\\\",\\\"configType\\\":\\\"3\\\",\\\"configValue\\\":\\\"1\\\"}],\\\"pages\\\":1,\\\"total\\\":9}}\"', '192.168.8.93', '2024-08-02 22:44:06', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408022244232001722609863200', '查询系统配置', 'getConfigsByPage', '[{\"isAsc\": true, \"pageNo\": 1, \"sortBy\": \"\", \"configId\": null, \"pageSize\": 10, \"configKey\": \"\", \"configName\": \"\", \"configType\": \"\", \"configValue\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"查询系统配置成功。\\\",\\\"returnData\\\":{\\\"lists\\\":[{\\\"configId\\\":1,\\\"configKey\\\":\\\"URL_WCS_TASK\\\",\\\"configName\\\":\\\"WCS接收任务URL\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask\\\"},{\\\"configId\\\":2,\\\"configKey\\\":\\\"WCS_TASK_CHANGE\\\",\\\"configName\\\":\\\"WCS接收任务状态变更URL\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"http://192.168.103.110:2000\\\"},{\\\"configId\\\":3,\\\"configKey\\\":\\\"MAX_VEHICLE_NUMS\\\",\\\"configName\\\":\\\"最大任务数量\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"54\\\"},{\\\"configId\\\":4,\\\"configKey\\\":\\\"URL_WCS_DISPOSE_VEHICLE\\\",\\\"configName\\\":\\\"Wcs释放箱子URL\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"http://192.168.8.62:18990/api/wms/convey/disposeVehicle\\\"},{\\\"configId\\\":5,\\\"configKey\\\":\\\"URL_WCS_E_TASK\\\",\\\"configName\\\":\\\"电子标签亮灯地址\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"http://192.168.8.62:18990/api/wms/elTag/elTagTask\\\"},{\\\"configId\\\":6,\\\"configKey\\\":\\\"SLOC_FILTER_STRING\\\",\\\"configName\\\":\\\"kitting物料筛选字符\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"DM05\\\"},{\\\"configId\\\":7,\\\"configKey\\\":\\\"URL_WCS_PICK_TASK\\\",\\\"configName\\\":\\\"WCS接收拣选任务URL\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"http://192.168.8.62:18990/api/wms/convey/conveyTask\\\"},{\\\"configId\\\":8,\\\"configKey\\\":\\\"START_WORK\\\",\\\"configName\\\":\\\"开始工作\\\",\\\"configType\\\":\\\"3\\\",\\\"configValue\\\":\\\"0\\\"},{\\\"configId\\\":9,\\\"configKey\\\":\\\"SEND_TASK\\\",\\\"configName\\\":\\\"发送任务\\\",\\\"configType\\\":\\\"3\\\",\\\"configValue\\\":\\\"1\\\"}],\\\"pages\\\":1,\\\"total\\\":9}}\"', '192.168.8.93', '2024-08-02 22:44:23', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408022244437371722609883737', '查询系统配置', 'getConfigsByPage', '[{\"isAsc\": true, \"pageNo\": 1, \"sortBy\": \"\", \"configId\": null, \"pageSize\": 10, \"configKey\": \"\", \"configName\": \"\", \"configType\": \"\", \"configValue\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"查询系统配置成功。\\\",\\\"returnData\\\":{\\\"lists\\\":[{\\\"configId\\\":1,\\\"configKey\\\":\\\"URL_WCS_TASK\\\",\\\"configName\\\":\\\"WCS接收任务URL\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask\\\"},{\\\"configId\\\":2,\\\"configKey\\\":\\\"WCS_TASK_CHANGE\\\",\\\"configName\\\":\\\"WCS接收任务状态变更URL\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"http://192.168.103.110:2000\\\"},{\\\"configId\\\":3,\\\"configKey\\\":\\\"MAX_VEHICLE_NUMS\\\",\\\"configName\\\":\\\"最大任务数量\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"54\\\"},{\\\"configId\\\":4,\\\"configKey\\\":\\\"URL_WCS_DISPOSE_VEHICLE\\\",\\\"configName\\\":\\\"Wcs释放箱子URL\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"http://192.168.8.62:18990/api/wms/convey/disposeVehicle\\\"},{\\\"configId\\\":5,\\\"configKey\\\":\\\"URL_WCS_E_TASK\\\",\\\"configName\\\":\\\"电子标签亮灯地址\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"http://192.168.8.62:18990/api/wms/elTag/elTagTask\\\"},{\\\"configId\\\":6,\\\"configKey\\\":\\\"SLOC_FILTER_STRING\\\",\\\"configName\\\":\\\"kitting物料筛选字符\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"DM05\\\"},{\\\"configId\\\":7,\\\"configKey\\\":\\\"URL_WCS_PICK_TASK\\\",\\\"configName\\\":\\\"WCS接收拣选任务URL\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"http://192.168.8.62:18990/api/wms/convey/conveyTask\\\"},{\\\"configId\\\":8,\\\"configKey\\\":\\\"START_WORK\\\",\\\"configName\\\":\\\"开始工作\\\",\\\"configType\\\":\\\"3\\\",\\\"configValue\\\":\\\"0\\\"},{\\\"configId\\\":9,\\\"configKey\\\":\\\"SEND_TASK\\\",\\\"configName\\\":\\\"发送任务\\\",\\\"configType\\\":\\\"3\\\",\\\"configValue\\\":\\\"1\\\"}],\\\"pages\\\":1,\\\"total\\\":9}}\"', '192.168.8.93', '2024-08-02 22:44:44', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408022245140701722609914070', '查询系统配置', 'getConfigsByPage', '[{\"isAsc\": true, \"pageNo\": 1, \"sortBy\": \"\", \"configId\": null, \"pageSize\": 10, \"configKey\": \"\", \"configName\": \"\", \"configType\": \"\", \"configValue\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"查询系统配置成功。\\\",\\\"returnData\\\":{\\\"lists\\\":[{\\\"configId\\\":1,\\\"configKey\\\":\\\"URL_WCS_TASK\\\",\\\"configName\\\":\\\"WCS接收任务URL\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask\\\"},{\\\"configId\\\":2,\\\"configKey\\\":\\\"WCS_TASK_CHANGE\\\",\\\"configName\\\":\\\"WCS接收任务状态变更URL\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"http://192.168.103.110:2000\\\"},{\\\"configId\\\":3,\\\"configKey\\\":\\\"MAX_VEHICLE_NUMS\\\",\\\"configName\\\":\\\"最大任务数量\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"54\\\"},{\\\"configId\\\":4,\\\"configKey\\\":\\\"URL_WCS_DISPOSE_VEHICLE\\\",\\\"configName\\\":\\\"Wcs释放箱子URL\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"http://192.168.8.62:18990/api/wms/convey/disposeVehicle\\\"},{\\\"configId\\\":5,\\\"configKey\\\":\\\"URL_WCS_E_TASK\\\",\\\"configName\\\":\\\"电子标签亮灯地址\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"http://192.168.8.62:18990/api/wms/elTag/elTagTask\\\"},{\\\"configId\\\":6,\\\"configKey\\\":\\\"SLOC_FILTER_STRING\\\",\\\"configName\\\":\\\"kitting物料筛选字符\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"DM05\\\"},{\\\"configId\\\":7,\\\"configKey\\\":\\\"URL_WCS_PICK_TASK\\\",\\\"configName\\\":\\\"WCS接收拣选任务URL\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"http://192.168.8.62:18990/api/wms/convey/conveyTask\\\"},{\\\"configId\\\":8,\\\"configKey\\\":\\\"START_WORK\\\",\\\"configName\\\":\\\"开始工作\\\",\\\"configType\\\":\\\"3\\\",\\\"configValue\\\":\\\"0\\\"},{\\\"configId\\\":9,\\\"configKey\\\":\\\"SEND_TASK\\\",\\\"configName\\\":\\\"发送任务\\\",\\\"configType\\\":\\\"3\\\",\\\"configValue\\\":\\\"1\\\"}],\\\"pages\\\":1,\\\"total\\\":9}}\"', '192.168.8.93', '2024-08-02 22:45:14', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408022245334631722609933463', '查询系统配置', 'getConfigsByPage', '[{\"isAsc\": true, \"pageNo\": 1, \"sortBy\": \"\", \"configId\": null, \"pageSize\": 10, \"configKey\": \"\", \"configName\": \"\", \"configType\": \"\", \"configValue\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"查询系统配置成功。\\\",\\\"returnData\\\":{\\\"lists\\\":[{\\\"configId\\\":1,\\\"configKey\\\":\\\"URL_WCS_TASK\\\",\\\"configName\\\":\\\"WCS接收任务URL\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask\\\"},{\\\"configId\\\":2,\\\"configKey\\\":\\\"WCS_TASK_CHANGE\\\",\\\"configName\\\":\\\"WCS接收任务状态变更URL\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"http://192.168.103.110:2000\\\"},{\\\"configId\\\":3,\\\"configKey\\\":\\\"MAX_VEHICLE_NUMS\\\",\\\"configName\\\":\\\"最大任务数量\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"54\\\"},{\\\"configId\\\":4,\\\"configKey\\\":\\\"URL_WCS_DISPOSE_VEHICLE\\\",\\\"configName\\\":\\\"Wcs释放箱子URL\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"http://192.168.8.62:18990/api/wms/convey/disposeVehicle\\\"},{\\\"configId\\\":5,\\\"configKey\\\":\\\"URL_WCS_E_TASK\\\",\\\"configName\\\":\\\"电子标签亮灯地址\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"http://192.168.8.62:18990/api/wms/elTag/elTagTask\\\"},{\\\"configId\\\":6,\\\"configKey\\\":\\\"SLOC_FILTER_STRING\\\",\\\"configName\\\":\\\"kitting物料筛选字符\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"DM05\\\"},{\\\"configId\\\":7,\\\"configKey\\\":\\\"URL_WCS_PICK_TASK\\\",\\\"configName\\\":\\\"WCS接收拣选任务URL\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"http://192.168.8.62:18990/api/wms/convey/conveyTask\\\"},{\\\"configId\\\":8,\\\"configKey\\\":\\\"START_WORK\\\",\\\"configName\\\":\\\"开始工作\\\",\\\"configType\\\":\\\"3\\\",\\\"configValue\\\":\\\"0\\\"},{\\\"configId\\\":9,\\\"configKey\\\":\\\"SEND_TASK\\\",\\\"configName\\\":\\\"发送任务\\\",\\\"configType\\\":\\\"3\\\",\\\"configValue\\\":\\\"1\\\"}],\\\"pages\\\":1,\\\"total\\\":9}}\"', '192.168.8.93', '2024-08-02 22:45:33', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408022245470511722609947051', '查询系统配置', 'getConfigsByPage', '[{\"isAsc\": true, \"pageNo\": 1, \"sortBy\": \"\", \"configId\": null, \"pageSize\": 10, \"configKey\": \"\", \"configName\": \"\", \"configType\": \"\", \"configValue\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"查询系统配置成功。\\\",\\\"returnData\\\":{\\\"lists\\\":[{\\\"configId\\\":1,\\\"configKey\\\":\\\"URL_WCS_TASK\\\",\\\"configName\\\":\\\"WCS接收任务URL\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask\\\"},{\\\"configId\\\":2,\\\"configKey\\\":\\\"WCS_TASK_CHANGE\\\",\\\"configName\\\":\\\"WCS接收任务状态变更URL\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"http://192.168.103.110:2000\\\"},{\\\"configId\\\":3,\\\"configKey\\\":\\\"MAX_VEHICLE_NUMS\\\",\\\"configName\\\":\\\"最大任务数量\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"54\\\"},{\\\"configId\\\":4,\\\"configKey\\\":\\\"URL_WCS_DISPOSE_VEHICLE\\\",\\\"configName\\\":\\\"Wcs释放箱子URL\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"http://192.168.8.62:18990/api/wms/convey/disposeVehicle\\\"},{\\\"configId\\\":5,\\\"configKey\\\":\\\"URL_WCS_E_TASK\\\",\\\"configName\\\":\\\"电子标签亮灯地址\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"http://192.168.8.62:18990/api/wms/elTag/elTagTask\\\"},{\\\"configId\\\":6,\\\"configKey\\\":\\\"SLOC_FILTER_STRING\\\",\\\"configName\\\":\\\"kitting物料筛选字符\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"DM05\\\"},{\\\"configId\\\":7,\\\"configKey\\\":\\\"URL_WCS_PICK_TASK\\\",\\\"configName\\\":\\\"WCS接收拣选任务URL\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"http://192.168.8.62:18990/api/wms/convey/conveyTask\\\"},{\\\"configId\\\":8,\\\"configKey\\\":\\\"START_WORK\\\",\\\"configName\\\":\\\"开始工作\\\",\\\"configType\\\":\\\"3\\\",\\\"configValue\\\":\\\"0\\\"},{\\\"configId\\\":9,\\\"configKey\\\":\\\"SEND_TASK\\\",\\\"configName\\\":\\\"发送任务\\\",\\\"configType\\\":\\\"3\\\",\\\"configValue\\\":\\\"1\\\"}],\\\"pages\\\":1,\\\"total\\\":9}}\"', '192.168.8.93', '2024-08-02 22:45:47', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408022245581881722609958188', '查询系统配置', 'getConfigsByPage', '[{\"isAsc\": true, \"pageNo\": 1, \"sortBy\": \"\", \"configId\": null, \"pageSize\": 10, \"configKey\": \"\", \"configName\": \"\", \"configType\": \"\", \"configValue\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"查询系统配置成功。\\\",\\\"returnData\\\":{\\\"lists\\\":[{\\\"configId\\\":1,\\\"configKey\\\":\\\"URL_WCS_TASK\\\",\\\"configName\\\":\\\"WCS接收任务URL\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask\\\"},{\\\"configId\\\":2,\\\"configKey\\\":\\\"WCS_TASK_CHANGE\\\",\\\"configName\\\":\\\"WCS接收任务状态变更URL\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"http://192.168.103.110:2000\\\"},{\\\"configId\\\":3,\\\"configKey\\\":\\\"MAX_VEHICLE_NUMS\\\",\\\"configName\\\":\\\"最大任务数量\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"54\\\"},{\\\"configId\\\":4,\\\"configKey\\\":\\\"URL_WCS_DISPOSE_VEHICLE\\\",\\\"configName\\\":\\\"Wcs释放箱子URL\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"http://192.168.8.62:18990/api/wms/convey/disposeVehicle\\\"},{\\\"configId\\\":5,\\\"configKey\\\":\\\"URL_WCS_E_TASK\\\",\\\"configName\\\":\\\"电子标签亮灯地址\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"http://192.168.8.62:18990/api/wms/elTag/elTagTask\\\"},{\\\"configId\\\":6,\\\"configKey\\\":\\\"SLOC_FILTER_STRING\\\",\\\"configName\\\":\\\"kitting物料筛选字符\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"DM05\\\"},{\\\"configId\\\":7,\\\"configKey\\\":\\\"URL_WCS_PICK_TASK\\\",\\\"configName\\\":\\\"WCS接收拣选任务URL\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"http://192.168.8.62:18990/api/wms/convey/conveyTask\\\"},{\\\"configId\\\":8,\\\"configKey\\\":\\\"START_WORK\\\",\\\"configName\\\":\\\"开始工作\\\",\\\"configType\\\":\\\"3\\\",\\\"configValue\\\":\\\"0\\\"},{\\\"configId\\\":9,\\\"configKey\\\":\\\"SEND_TASK\\\",\\\"configName\\\":\\\"发送任务\\\",\\\"configType\\\":\\\"3\\\",\\\"configValue\\\":\\\"1\\\"}],\\\"pages\\\":1,\\\"total\\\":9}}\"', '192.168.8.93', '2024-08-02 22:45:58', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408022248060381722610086038', '查询系统配置', 'getConfigsByPage', '[{\"isAsc\": true, \"pageNo\": 1, \"sortBy\": \"\", \"configId\": null, \"pageSize\": 10, \"configKey\": \"\", \"configName\": \"\", \"configType\": \"\", \"configValue\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"查询系统配置成功。\\\",\\\"returnData\\\":{\\\"lists\\\":[{\\\"configId\\\":1,\\\"configKey\\\":\\\"URL_WCS_TASK\\\",\\\"configName\\\":\\\"WCS接收任务URL\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask\\\"},{\\\"configId\\\":2,\\\"configKey\\\":\\\"WCS_TASK_CHANGE\\\",\\\"configName\\\":\\\"WCS接收任务状态变更URL\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"http://192.168.103.110:2000\\\"},{\\\"configId\\\":3,\\\"configKey\\\":\\\"MAX_VEHICLE_NUMS\\\",\\\"configName\\\":\\\"最大任务数量\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"54\\\"},{\\\"configId\\\":4,\\\"configKey\\\":\\\"URL_WCS_DISPOSE_VEHICLE\\\",\\\"configName\\\":\\\"Wcs释放箱子URL\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"http://192.168.8.62:18990/api/wms/convey/disposeVehicle\\\"},{\\\"configId\\\":5,\\\"configKey\\\":\\\"URL_WCS_E_TASK\\\",\\\"configName\\\":\\\"电子标签亮灯地址\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"http://192.168.8.62:18990/api/wms/elTag/elTagTask\\\"},{\\\"configId\\\":6,\\\"configKey\\\":\\\"SLOC_FILTER_STRING\\\",\\\"configName\\\":\\\"kitting物料筛选字符\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"DM05\\\"},{\\\"configId\\\":7,\\\"configKey\\\":\\\"URL_WCS_PICK_TASK\\\",\\\"configName\\\":\\\"WCS接收拣选任务URL\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"http://192.168.8.62:18990/api/wms/convey/conveyTask\\\"},{\\\"configId\\\":8,\\\"configKey\\\":\\\"START_WORK\\\",\\\"configName\\\":\\\"开始工作\\\",\\\"configType\\\":\\\"3\\\",\\\"configValue\\\":\\\"0\\\"},{\\\"configId\\\":9,\\\"configKey\\\":\\\"SEND_TASK\\\",\\\"configName\\\":\\\"发送任务\\\",\\\"configType\\\":\\\"3\\\",\\\"configValue\\\":\\\"1\\\"}],\\\"pages\\\":1,\\\"total\\\":9}}\"', '192.168.8.93', '2024-08-02 22:48:06', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408022248164141722610096414', '查询系统配置', 'getConfigsByPage', '[{\"isAsc\": true, \"pageNo\": 1, \"sortBy\": \"\", \"configId\": null, \"pageSize\": 10, \"configKey\": \"\", \"configName\": \"\", \"configType\": \"\", \"configValue\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"查询系统配置成功。\\\",\\\"returnData\\\":{\\\"lists\\\":[{\\\"configId\\\":1,\\\"configKey\\\":\\\"URL_WCS_TASK\\\",\\\"configName\\\":\\\"WCS接收任务URL\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask\\\"},{\\\"configId\\\":2,\\\"configKey\\\":\\\"WCS_TASK_CHANGE\\\",\\\"configName\\\":\\\"WCS接收任务状态变更URL\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"http://192.168.103.110:2000\\\"},{\\\"configId\\\":3,\\\"configKey\\\":\\\"MAX_VEHICLE_NUMS\\\",\\\"configName\\\":\\\"最大任务数量\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"54\\\"},{\\\"configId\\\":4,\\\"configKey\\\":\\\"URL_WCS_DISPOSE_VEHICLE\\\",\\\"configName\\\":\\\"Wcs释放箱子URL\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"http://192.168.8.62:18990/api/wms/convey/disposeVehicle\\\"},{\\\"configId\\\":5,\\\"configKey\\\":\\\"URL_WCS_E_TASK\\\",\\\"configName\\\":\\\"电子标签亮灯地址\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"http://192.168.8.62:18990/api/wms/elTag/elTagTask\\\"},{\\\"configId\\\":6,\\\"configKey\\\":\\\"SLOC_FILTER_STRING\\\",\\\"configName\\\":\\\"kitting物料筛选字符\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"DM05\\\"},{\\\"configId\\\":7,\\\"configKey\\\":\\\"URL_WCS_PICK_TASK\\\",\\\"configName\\\":\\\"WCS接收拣选任务URL\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"http://192.168.8.62:18990/api/wms/convey/conveyTask\\\"},{\\\"configId\\\":8,\\\"configKey\\\":\\\"START_WORK\\\",\\\"configName\\\":\\\"开始工作\\\",\\\"configType\\\":\\\"3\\\",\\\"configValue\\\":\\\"0\\\"},{\\\"configId\\\":9,\\\"configKey\\\":\\\"SEND_TASK\\\",\\\"configName\\\":\\\"发送任务\\\",\\\"configType\\\":\\\"3\\\",\\\"configValue\\\":\\\"1\\\"}],\\\"pages\\\":1,\\\"total\\\":9}}\"', '192.168.8.93', '2024-08-02 22:48:16', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408022256402041722610600204', '查询系统配置', 'getConfigsByPage', '[{\"isAsc\": true, \"pageNo\": 1, \"sortBy\": \"\", \"configId\": null, \"pageSize\": 10, \"configKey\": \"\", \"configName\": \"\", \"configType\": \"\", \"configValue\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"查询系统配置成功。\\\",\\\"returnData\\\":{\\\"lists\\\":[{\\\"configId\\\":1,\\\"configKey\\\":\\\"URL_WCS_TASK\\\",\\\"configName\\\":\\\"WCS接收任务URL\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask\\\"},{\\\"configId\\\":2,\\\"configKey\\\":\\\"WCS_TASK_CHANGE\\\",\\\"configName\\\":\\\"WCS接收任务状态变更URL\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"http://192.168.103.110:2000\\\"},{\\\"configId\\\":3,\\\"configKey\\\":\\\"MAX_VEHICLE_NUMS\\\",\\\"configName\\\":\\\"最大任务数量\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"54\\\"},{\\\"configId\\\":4,\\\"configKey\\\":\\\"URL_WCS_DISPOSE_VEHICLE\\\",\\\"configName\\\":\\\"Wcs释放箱子URL\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"http://192.168.8.62:18990/api/wms/convey/disposeVehicle\\\"},{\\\"configId\\\":5,\\\"configKey\\\":\\\"URL_WCS_E_TASK\\\",\\\"configName\\\":\\\"电子标签亮灯地址\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"http://192.168.8.62:18990/api/wms/elTag/elTagTask\\\"},{\\\"configId\\\":6,\\\"configKey\\\":\\\"SLOC_FILTER_STRING\\\",\\\"configName\\\":\\\"kitting物料筛选字符\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"DM05\\\"},{\\\"configId\\\":7,\\\"configKey\\\":\\\"URL_WCS_PICK_TASK\\\",\\\"configName\\\":\\\"WCS接收拣选任务URL\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"http://192.168.8.62:18990/api/wms/convey/conveyTask\\\"},{\\\"configId\\\":8,\\\"configKey\\\":\\\"START_WORK\\\",\\\"configName\\\":\\\"开始工作\\\",\\\"configType\\\":\\\"3\\\",\\\"configValue\\\":\\\"0\\\"},{\\\"configId\\\":9,\\\"configKey\\\":\\\"SEND_TASK\\\",\\\"configName\\\":\\\"发送任务\\\",\\\"configType\\\":\\\"3\\\",\\\"configValue\\\":\\\"1\\\"}],\\\"pages\\\":1,\\\"total\\\":9}}\"', '192.168.8.93', '2024-08-02 22:56:40', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408022256597781722610619778', '查询系统配置', 'getConfigsByPage', '[{\"isAsc\": true, \"pageNo\": 1, \"sortBy\": \"\", \"configId\": null, \"pageSize\": 10, \"configKey\": \"\", \"configName\": \"\", \"configType\": \"\", \"configValue\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"查询系统配置成功。\\\",\\\"returnData\\\":{\\\"lists\\\":[{\\\"configId\\\":1,\\\"configKey\\\":\\\"URL_WCS_TASK\\\",\\\"configName\\\":\\\"WCS接收任务URL\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask\\\"},{\\\"configId\\\":2,\\\"configKey\\\":\\\"WCS_TASK_CHANGE\\\",\\\"configName\\\":\\\"WCS接收任务状态变更URL\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"http://192.168.103.110:2000\\\"},{\\\"configId\\\":3,\\\"configKey\\\":\\\"MAX_VEHICLE_NUMS\\\",\\\"configName\\\":\\\"最大任务数量\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"54\\\"},{\\\"configId\\\":4,\\\"configKey\\\":\\\"URL_WCS_DISPOSE_VEHICLE\\\",\\\"configName\\\":\\\"Wcs释放箱子URL\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"http://192.168.8.62:18990/api/wms/convey/disposeVehicle\\\"},{\\\"configId\\\":5,\\\"configKey\\\":\\\"URL_WCS_E_TASK\\\",\\\"configName\\\":\\\"电子标签亮灯地址\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"http://192.168.8.62:18990/api/wms/elTag/elTagTask\\\"},{\\\"configId\\\":6,\\\"configKey\\\":\\\"SLOC_FILTER_STRING\\\",\\\"configName\\\":\\\"kitting物料筛选字符\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"DM05\\\"},{\\\"configId\\\":7,\\\"configKey\\\":\\\"URL_WCS_PICK_TASK\\\",\\\"configName\\\":\\\"WCS接收拣选任务URL\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"http://192.168.8.62:18990/api/wms/convey/conveyTask\\\"},{\\\"configId\\\":8,\\\"configKey\\\":\\\"START_WORK\\\",\\\"configName\\\":\\\"开始工作\\\",\\\"configType\\\":\\\"3\\\",\\\"configValue\\\":\\\"0\\\"},{\\\"configId\\\":9,\\\"configKey\\\":\\\"SEND_TASK\\\",\\\"configName\\\":\\\"发送任务\\\",\\\"configType\\\":\\\"3\\\",\\\"configValue\\\":\\\"1\\\"}],\\\"pages\\\":1,\\\"total\\\":9}}\"', '192.168.8.93', '2024-08-02 22:57:00', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408022257099431722610629943', '查询系统配置', 'getConfigsByPage', '[{\"isAsc\": true, \"pageNo\": 1, \"sortBy\": \"\", \"configId\": null, \"pageSize\": 10, \"configKey\": \"\", \"configName\": \"\", \"configType\": \"\", \"configValue\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"查询系统配置成功。\\\",\\\"returnData\\\":{\\\"lists\\\":[{\\\"configId\\\":1,\\\"configKey\\\":\\\"URL_WCS_TASK\\\",\\\"configName\\\":\\\"WCS接收任务URL\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask\\\"},{\\\"configId\\\":2,\\\"configKey\\\":\\\"WCS_TASK_CHANGE\\\",\\\"configName\\\":\\\"WCS接收任务状态变更URL\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"http://192.168.103.110:2000\\\"},{\\\"configId\\\":3,\\\"configKey\\\":\\\"MAX_VEHICLE_NUMS\\\",\\\"configName\\\":\\\"最大任务数量\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"54\\\"},{\\\"configId\\\":4,\\\"configKey\\\":\\\"URL_WCS_DISPOSE_VEHICLE\\\",\\\"configName\\\":\\\"Wcs释放箱子URL\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"http://192.168.8.62:18990/api/wms/convey/disposeVehicle\\\"},{\\\"configId\\\":5,\\\"configKey\\\":\\\"URL_WCS_E_TASK\\\",\\\"configName\\\":\\\"电子标签亮灯地址\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"http://192.168.8.62:18990/api/wms/elTag/elTagTask\\\"},{\\\"configId\\\":6,\\\"configKey\\\":\\\"SLOC_FILTER_STRING\\\",\\\"configName\\\":\\\"kitting物料筛选字符\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"DM05\\\"},{\\\"configId\\\":7,\\\"configKey\\\":\\\"URL_WCS_PICK_TASK\\\",\\\"configName\\\":\\\"WCS接收拣选任务URL\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"http://192.168.8.62:18990/api/wms/convey/conveyTask\\\"},{\\\"configId\\\":8,\\\"configKey\\\":\\\"START_WORK\\\",\\\"configName\\\":\\\"开始工作\\\",\\\"configType\\\":\\\"3\\\",\\\"configValue\\\":\\\"0\\\"},{\\\"configId\\\":9,\\\"configKey\\\":\\\"SEND_TASK\\\",\\\"configName\\\":\\\"发送任务\\\",\\\"configType\\\":\\\"3\\\",\\\"configValue\\\":\\\"1\\\"}],\\\"pages\\\":1,\\\"total\\\":9}}\"', '192.168.8.93', '2024-08-02 22:57:10', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408022257220791722610642079', '查询系统配置', 'getConfigsByPage', '[{\"isAsc\": true, \"pageNo\": 1, \"sortBy\": \"\", \"configId\": null, \"pageSize\": 10, \"configKey\": \"\", \"configName\": \"\", \"configType\": \"\", \"configValue\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"查询系统配置成功。\\\",\\\"returnData\\\":{\\\"lists\\\":[{\\\"configId\\\":1,\\\"configKey\\\":\\\"URL_WCS_TASK\\\",\\\"configName\\\":\\\"WCS接收任务URL\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask\\\"},{\\\"configId\\\":2,\\\"configKey\\\":\\\"WCS_TASK_CHANGE\\\",\\\"configName\\\":\\\"WCS接收任务状态变更URL\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"http://192.168.103.110:2000\\\"},{\\\"configId\\\":3,\\\"configKey\\\":\\\"MAX_VEHICLE_NUMS\\\",\\\"configName\\\":\\\"最大任务数量\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"54\\\"},{\\\"configId\\\":4,\\\"configKey\\\":\\\"URL_WCS_DISPOSE_VEHICLE\\\",\\\"configName\\\":\\\"Wcs释放箱子URL\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"http://192.168.8.62:18990/api/wms/convey/disposeVehicle\\\"},{\\\"configId\\\":5,\\\"configKey\\\":\\\"URL_WCS_E_TASK\\\",\\\"configName\\\":\\\"电子标签亮灯地址\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"http://192.168.8.62:18990/api/wms/elTag/elTagTask\\\"},{\\\"configId\\\":6,\\\"configKey\\\":\\\"SLOC_FILTER_STRING\\\",\\\"configName\\\":\\\"kitting物料筛选字符\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"DM05\\\"},{\\\"configId\\\":7,\\\"configKey\\\":\\\"URL_WCS_PICK_TASK\\\",\\\"configName\\\":\\\"WCS接收拣选任务URL\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"http://192.168.8.62:18990/api/wms/convey/conveyTask\\\"},{\\\"configId\\\":8,\\\"configKey\\\":\\\"START_WORK\\\",\\\"configName\\\":\\\"开始工作\\\",\\\"configType\\\":\\\"3\\\",\\\"configValue\\\":\\\"0\\\"},{\\\"configId\\\":9,\\\"configKey\\\":\\\"SEND_TASK\\\",\\\"configName\\\":\\\"发送任务\\\",\\\"configType\\\":\\\"3\\\",\\\"configValue\\\":\\\"1\\\"}],\\\"pages\\\":1,\\\"total\\\":9}}\"', '192.168.8.93', '2024-08-02 22:57:22', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408022257300411722610650041', '查询系统配置', 'getConfigsByPage', '[{\"isAsc\": true, \"pageNo\": 1, \"sortBy\": \"\", \"configId\": null, \"pageSize\": 10, \"configKey\": \"\", \"configName\": \"\", \"configType\": \"\", \"configValue\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"查询系统配置成功。\\\",\\\"returnData\\\":{\\\"lists\\\":[{\\\"configId\\\":1,\\\"configKey\\\":\\\"URL_WCS_TASK\\\",\\\"configName\\\":\\\"WCS接收任务URL\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask\\\"},{\\\"configId\\\":2,\\\"configKey\\\":\\\"WCS_TASK_CHANGE\\\",\\\"configName\\\":\\\"WCS接收任务状态变更URL\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"http://192.168.103.110:2000\\\"},{\\\"configId\\\":3,\\\"configKey\\\":\\\"MAX_VEHICLE_NUMS\\\",\\\"configName\\\":\\\"最大任务数量\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"54\\\"},{\\\"configId\\\":4,\\\"configKey\\\":\\\"URL_WCS_DISPOSE_VEHICLE\\\",\\\"configName\\\":\\\"Wcs释放箱子URL\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"http://192.168.8.62:18990/api/wms/convey/disposeVehicle\\\"},{\\\"configId\\\":5,\\\"configKey\\\":\\\"URL_WCS_E_TASK\\\",\\\"configName\\\":\\\"电子标签亮灯地址\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"http://192.168.8.62:18990/api/wms/elTag/elTagTask\\\"},{\\\"configId\\\":6,\\\"configKey\\\":\\\"SLOC_FILTER_STRING\\\",\\\"configName\\\":\\\"kitting物料筛选字符\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"DM05\\\"},{\\\"configId\\\":7,\\\"configKey\\\":\\\"URL_WCS_PICK_TASK\\\",\\\"configName\\\":\\\"WCS接收拣选任务URL\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"http://192.168.8.62:18990/api/wms/convey/conveyTask\\\"},{\\\"configId\\\":8,\\\"configKey\\\":\\\"START_WORK\\\",\\\"configName\\\":\\\"开始工作\\\",\\\"configType\\\":\\\"3\\\",\\\"configValue\\\":\\\"0\\\"},{\\\"configId\\\":9,\\\"configKey\\\":\\\"SEND_TASK\\\",\\\"configName\\\":\\\"发送任务\\\",\\\"configType\\\":\\\"3\\\",\\\"configValue\\\":\\\"1\\\"}],\\\"pages\\\":1,\\\"total\\\":9}}\"', '192.168.8.93', '2024-08-02 22:57:30', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408022257415411722610661541', '查询系统配置', 'getConfigsByPage', '[{\"isAsc\": true, \"pageNo\": 1, \"sortBy\": \"\", \"configId\": null, \"pageSize\": 10, \"configKey\": \"\", \"configName\": \"\", \"configType\": \"\", \"configValue\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"查询系统配置成功。\\\",\\\"returnData\\\":{\\\"lists\\\":[{\\\"configId\\\":1,\\\"configKey\\\":\\\"URL_WCS_TASK\\\",\\\"configName\\\":\\\"WCS接收任务URL\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask\\\"},{\\\"configId\\\":2,\\\"configKey\\\":\\\"WCS_TASK_CHANGE\\\",\\\"configName\\\":\\\"WCS接收任务状态变更URL\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"http://192.168.103.110:2000\\\"},{\\\"configId\\\":3,\\\"configKey\\\":\\\"MAX_VEHICLE_NUMS\\\",\\\"configName\\\":\\\"最大任务数量\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"54\\\"},{\\\"configId\\\":4,\\\"configKey\\\":\\\"URL_WCS_DISPOSE_VEHICLE\\\",\\\"configName\\\":\\\"Wcs释放箱子URL\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"http://192.168.8.62:18990/api/wms/convey/disposeVehicle\\\"},{\\\"configId\\\":5,\\\"configKey\\\":\\\"URL_WCS_E_TASK\\\",\\\"configName\\\":\\\"电子标签亮灯地址\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"http://192.168.8.62:18990/api/wms/elTag/elTagTask\\\"},{\\\"configId\\\":6,\\\"configKey\\\":\\\"SLOC_FILTER_STRING\\\",\\\"configName\\\":\\\"kitting物料筛选字符\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"DM05\\\"},{\\\"configId\\\":7,\\\"configKey\\\":\\\"URL_WCS_PICK_TASK\\\",\\\"configName\\\":\\\"WCS接收拣选任务URL\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"http://192.168.8.62:18990/api/wms/convey/conveyTask\\\"},{\\\"configId\\\":8,\\\"configKey\\\":\\\"START_WORK\\\",\\\"configName\\\":\\\"开始工作\\\",\\\"configType\\\":\\\"3\\\",\\\"configValue\\\":\\\"0\\\"},{\\\"configId\\\":9,\\\"configKey\\\":\\\"SEND_TASK\\\",\\\"configName\\\":\\\"发送任务\\\",\\\"configType\\\":\\\"3\\\",\\\"configValue\\\":\\\"1\\\"}],\\\"pages\\\":1,\\\"total\\\":9}}\"', '192.168.8.93', '2024-08-02 22:57:42', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408022257460971722610666097', '查询系统配置', 'getConfigsByPage', '[{\"isAsc\": true, \"pageNo\": 1, \"sortBy\": \"\", \"configId\": null, \"pageSize\": 10, \"configKey\": \"\", \"configName\": \"\", \"configType\": \"\", \"configValue\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"查询系统配置成功。\\\",\\\"returnData\\\":{\\\"lists\\\":[{\\\"configId\\\":1,\\\"configKey\\\":\\\"URL_WCS_TASK\\\",\\\"configName\\\":\\\"WCS接收任务URL\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask\\\"},{\\\"configId\\\":2,\\\"configKey\\\":\\\"WCS_TASK_CHANGE\\\",\\\"configName\\\":\\\"WCS接收任务状态变更URL\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"http://192.168.103.110:2000\\\"},{\\\"configId\\\":3,\\\"configKey\\\":\\\"MAX_VEHICLE_NUMS\\\",\\\"configName\\\":\\\"最大任务数量\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"54\\\"},{\\\"configId\\\":4,\\\"configKey\\\":\\\"URL_WCS_DISPOSE_VEHICLE\\\",\\\"configName\\\":\\\"Wcs释放箱子URL\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"http://192.168.8.62:18990/api/wms/convey/disposeVehicle\\\"},{\\\"configId\\\":5,\\\"configKey\\\":\\\"URL_WCS_E_TASK\\\",\\\"configName\\\":\\\"电子标签亮灯地址\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"http://192.168.8.62:18990/api/wms/elTag/elTagTask\\\"},{\\\"configId\\\":6,\\\"configKey\\\":\\\"SLOC_FILTER_STRING\\\",\\\"configName\\\":\\\"kitting物料筛选字符\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"DM05\\\"},{\\\"configId\\\":7,\\\"configKey\\\":\\\"URL_WCS_PICK_TASK\\\",\\\"configName\\\":\\\"WCS接收拣选任务URL\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"http://192.168.8.62:18990/api/wms/convey/conveyTask\\\"},{\\\"configId\\\":8,\\\"configKey\\\":\\\"START_WORK\\\",\\\"configName\\\":\\\"开始工作\\\",\\\"configType\\\":\\\"3\\\",\\\"configValue\\\":\\\"0\\\"},{\\\"configId\\\":9,\\\"configKey\\\":\\\"SEND_TASK\\\",\\\"configName\\\":\\\"发送任务\\\",\\\"configType\\\":\\\"3\\\",\\\"configValue\\\":\\\"1\\\"}],\\\"pages\\\":1,\\\"total\\\":9}}\"', '192.168.8.93', '2024-08-02 22:57:46', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408022257559621722610675962', '查询系统配置', 'getConfigsByPage', '[{\"isAsc\": true, \"pageNo\": 1, \"sortBy\": \"\", \"configId\": null, \"pageSize\": 10, \"configKey\": \"\", \"configName\": \"\", \"configType\": \"\", \"configValue\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"查询系统配置成功。\\\",\\\"returnData\\\":{\\\"lists\\\":[{\\\"configId\\\":1,\\\"configKey\\\":\\\"URL_WCS_TASK\\\",\\\"configName\\\":\\\"WCS接收任务URL\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask\\\"},{\\\"configId\\\":2,\\\"configKey\\\":\\\"WCS_TASK_CHANGE\\\",\\\"configName\\\":\\\"WCS接收任务状态变更URL\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"http://192.168.103.110:2000\\\"},{\\\"configId\\\":3,\\\"configKey\\\":\\\"MAX_VEHICLE_NUMS\\\",\\\"configName\\\":\\\"最大任务数量\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"54\\\"},{\\\"configId\\\":4,\\\"configKey\\\":\\\"URL_WCS_DISPOSE_VEHICLE\\\",\\\"configName\\\":\\\"Wcs释放箱子URL\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"http://192.168.8.62:18990/api/wms/convey/disposeVehicle\\\"},{\\\"configId\\\":5,\\\"configKey\\\":\\\"URL_WCS_E_TASK\\\",\\\"configName\\\":\\\"电子标签亮灯地址\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"http://192.168.8.62:18990/api/wms/elTag/elTagTask\\\"},{\\\"configId\\\":6,\\\"configKey\\\":\\\"SLOC_FILTER_STRING\\\",\\\"configName\\\":\\\"kitting物料筛选字符\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"DM05\\\"},{\\\"configId\\\":7,\\\"configKey\\\":\\\"URL_WCS_PICK_TASK\\\",\\\"configName\\\":\\\"WCS接收拣选任务URL\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"http://192.168.8.62:18990/api/wms/convey/conveyTask\\\"},{\\\"configId\\\":8,\\\"configKey\\\":\\\"START_WORK\\\",\\\"configName\\\":\\\"开始工作\\\",\\\"configType\\\":\\\"3\\\",\\\"configValue\\\":\\\"0\\\"},{\\\"configId\\\":9,\\\"configKey\\\":\\\"SEND_TASK\\\",\\\"configName\\\":\\\"发送任务\\\",\\\"configType\\\":\\\"3\\\",\\\"configValue\\\":\\\"1\\\"}],\\\"pages\\\":1,\\\"total\\\":9}}\"', '192.168.8.93', '2024-08-02 22:57:56', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408022258082271722610688227', '更新配置', 'updateConfig', '[{\"isAsc\": true, \"pageNo\": 1, \"sortBy\": \"\", \"configId\": 3, \"pageSize\": 10, \"configKey\": \"MAX_VEHICLE_NUMS\", \"configName\": \"最大任务数量\", \"configType\": \"1\", \"configValue\": \"55\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"更新系统配置成功!\\\"}\"', '192.168.8.93', '2024-08-02 22:58:08', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408022258082501722610688250', '查询系统配置', 'getConfigsByPage', '[{\"isAsc\": true, \"pageNo\": 1, \"sortBy\": \"\", \"configId\": null, \"pageSize\": 10, \"configKey\": \"\", \"configName\": \"\", \"configType\": \"\", \"configValue\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"查询系统配置成功。\\\",\\\"returnData\\\":{\\\"lists\\\":[{\\\"configId\\\":1,\\\"configKey\\\":\\\"MAX_VEHICLE_NUMS\\\",\\\"configName\\\":\\\"最大任务数量\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"55\\\"},{\\\"configId\\\":2,\\\"configKey\\\":\\\"MAX_VEHICLE_NUMS\\\",\\\"configName\\\":\\\"最大任务数量\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"55\\\"},{\\\"configId\\\":3,\\\"configKey\\\":\\\"MAX_VEHICLE_NUMS\\\",\\\"configName\\\":\\\"最大任务数量\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"55\\\"},{\\\"configId\\\":4,\\\"configKey\\\":\\\"MAX_VEHICLE_NUMS\\\",\\\"configName\\\":\\\"最大任务数量\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"55\\\"},{\\\"configId\\\":5,\\\"configKey\\\":\\\"MAX_VEHICLE_NUMS\\\",\\\"configName\\\":\\\"最大任务数量\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"55\\\"},{\\\"configId\\\":6,\\\"configKey\\\":\\\"MAX_VEHICLE_NUMS\\\",\\\"configName\\\":\\\"最大任务数量\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"55\\\"},{\\\"configId\\\":7,\\\"configKey\\\":\\\"MAX_VEHICLE_NUMS\\\",\\\"configName\\\":\\\"最大任务数量\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"55\\\"},{\\\"configId\\\":8,\\\"configKey\\\":\\\"MAX_VEHICLE_NUMS\\\",\\\"configName\\\":\\\"最大任务数量\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"55\\\"},{\\\"configId\\\":9,\\\"configKey\\\":\\\"MAX_VEHICLE_NUMS\\\",\\\"configName\\\":\\\"最大任务数量\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"55\\\"}],\\\"pages\\\":1,\\\"total\\\":9}}\"', '192.168.8.93', '2024-08-02 22:58:08', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408022308545041722611334504', '查询系统配置', 'getConfigsByPage', '[{\"isAsc\": true, \"pageNo\": 1, \"sortBy\": \"\", \"configId\": null, \"pageSize\": 10, \"configKey\": \"\", \"configName\": \"\", \"configType\": \"\", \"configValue\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"查询系统配置成功。\\\",\\\"returnData\\\":{\\\"lists\\\":[{\\\"configId\\\":1,\\\"configKey\\\":\\\"URL_WCS_TASK\\\",\\\"configName\\\":\\\"WCS接收任务URL\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask\\\"},{\\\"configId\\\":2,\\\"configKey\\\":\\\"URL_NEW_DESTINATION\\\",\\\"configName\\\":\\\"WCS接收新库位URL\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask\\\"},{\\\"configId\\\":3,\\\"configKey\\\":\\\"URL_WCS_PICK_TASK\\\",\\\"configName\\\":\\\"WCS接收拣选任务URL\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"http://192.168.8.62:18990/api/wms/convey/conveyTask\\\"},{\\\"configId\\\":4,\\\"configKey\\\":\\\"URL_WCS_E_TASK\\\",\\\"configName\\\":\\\"电子标签亮灯地址\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"http://192.168.8.62:18990/api/wms/elTag/elTagTask\\\"},{\\\"configId\\\":5,\\\"configKey\\\":\\\"URL_WCS_DISPOSE_VEHICLE\\\",\\\"configName\\\":\\\"Wcs释放箱子URL\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"http://192.168.8.62:18990/api/wms/convey/disposeVehicle\\\"},{\\\"configId\\\":6,\\\"configKey\\\":\\\"START_WORK\\\",\\\"configName\\\":\\\"开始工作\\\",\\\"configType\\\":\\\"3\\\",\\\"configValue\\\":\\\"0\\\"},{\\\"configId\\\":7,\\\"configKey\\\":\\\"SEND_TASK\\\",\\\"configName\\\":\\\"发送任务\\\",\\\"configType\\\":\\\"3\\\",\\\"configValue\\\":\\\"0\\\"},{\\\"configId\\\":8,\\\"configKey\\\":\\\"MAX_WEIGHT\\\",\\\"configName\\\":\\\"最大负重\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"250\\\"},{\\\"configId\\\":9,\\\"configKey\\\":\\\"MAX_VEHICLE_NUMS\\\",\\\"configName\\\":\\\"最大任务数量\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"54\\\"},{\\\"configId\\\":10,\\\"configKey\\\":\\\"SLOC_FILTER_STRING\\\",\\\"configName\\\":\\\"kitting物料筛选字符\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"DM05\\\"}],\\\"pages\\\":2,\\\"total\\\":11}}\"', '192.168.8.93', '2024-08-02 23:08:55', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408022308546421722611334642', '查询系统配置', 'getConfigsByPage', '[{\"isAsc\": true, \"pageNo\": 1, \"sortBy\": \"\", \"configId\": null, \"pageSize\": 10, \"configKey\": \"\", \"configName\": \"\", \"configType\": \"\", \"configValue\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"查询系统配置成功。\\\",\\\"returnData\\\":{\\\"lists\\\":[{\\\"configId\\\":1,\\\"configKey\\\":\\\"URL_WCS_TASK\\\",\\\"configName\\\":\\\"WCS接收任务URL\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask\\\"},{\\\"configId\\\":2,\\\"configKey\\\":\\\"URL_NEW_DESTINATION\\\",\\\"configName\\\":\\\"WCS接收新库位URL\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask\\\"},{\\\"configId\\\":3,\\\"configKey\\\":\\\"URL_WCS_PICK_TASK\\\",\\\"configName\\\":\\\"WCS接收拣选任务URL\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"http://192.168.8.62:18990/api/wms/convey/conveyTask\\\"},{\\\"configId\\\":4,\\\"configKey\\\":\\\"URL_WCS_E_TASK\\\",\\\"configName\\\":\\\"电子标签亮灯地址\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"http://192.168.8.62:18990/api/wms/elTag/elTagTask\\\"},{\\\"configId\\\":5,\\\"configKey\\\":\\\"URL_WCS_DISPOSE_VEHICLE\\\",\\\"configName\\\":\\\"Wcs释放箱子URL\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"http://192.168.8.62:18990/api/wms/convey/disposeVehicle\\\"},{\\\"configId\\\":6,\\\"configKey\\\":\\\"START_WORK\\\",\\\"configName\\\":\\\"开始工作\\\",\\\"configType\\\":\\\"3\\\",\\\"configValue\\\":\\\"0\\\"},{\\\"configId\\\":7,\\\"configKey\\\":\\\"SEND_TASK\\\",\\\"configName\\\":\\\"发送任务\\\",\\\"configType\\\":\\\"3\\\",\\\"configValue\\\":\\\"0\\\"},{\\\"configId\\\":8,\\\"configKey\\\":\\\"MAX_WEIGHT\\\",\\\"configName\\\":\\\"最大负重\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"250\\\"},{\\\"configId\\\":9,\\\"configKey\\\":\\\"MAX_VEHICLE_NUMS\\\",\\\"configName\\\":\\\"最大任务数量\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"54\\\"},{\\\"configId\\\":10,\\\"configKey\\\":\\\"SLOC_FILTER_STRING\\\",\\\"configName\\\":\\\"kitting物料筛选字符\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"DM05\\\"}],\\\"pages\\\":2,\\\"total\\\":11}}\"', '192.168.8.93', '2024-08-02 23:08:55', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408022308548341722611334834', '查询系统配置', 'getConfigsByPage', '[{\"isAsc\": true, \"pageNo\": 1, \"sortBy\": \"\", \"configId\": null, \"pageSize\": 10, \"configKey\": \"\", \"configName\": \"\", \"configType\": \"\", \"configValue\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"查询系统配置成功。\\\",\\\"returnData\\\":{\\\"lists\\\":[{\\\"configId\\\":1,\\\"configKey\\\":\\\"URL_WCS_TASK\\\",\\\"configName\\\":\\\"WCS接收任务URL\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask\\\"},{\\\"configId\\\":2,\\\"configKey\\\":\\\"URL_NEW_DESTINATION\\\",\\\"configName\\\":\\\"WCS接收新库位URL\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask\\\"},{\\\"configId\\\":3,\\\"configKey\\\":\\\"URL_WCS_PICK_TASK\\\",\\\"configName\\\":\\\"WCS接收拣选任务URL\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"http://192.168.8.62:18990/api/wms/convey/conveyTask\\\"},{\\\"configId\\\":4,\\\"configKey\\\":\\\"URL_WCS_E_TASK\\\",\\\"configName\\\":\\\"电子标签亮灯地址\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"http://192.168.8.62:18990/api/wms/elTag/elTagTask\\\"},{\\\"configId\\\":5,\\\"configKey\\\":\\\"URL_WCS_DISPOSE_VEHICLE\\\",\\\"configName\\\":\\\"Wcs释放箱子URL\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"http://192.168.8.62:18990/api/wms/convey/disposeVehicle\\\"},{\\\"configId\\\":6,\\\"configKey\\\":\\\"START_WORK\\\",\\\"configName\\\":\\\"开始工作\\\",\\\"configType\\\":\\\"3\\\",\\\"configValue\\\":\\\"0\\\"},{\\\"configId\\\":7,\\\"configKey\\\":\\\"SEND_TASK\\\",\\\"configName\\\":\\\"发送任务\\\",\\\"configType\\\":\\\"3\\\",\\\"configValue\\\":\\\"0\\\"},{\\\"configId\\\":8,\\\"configKey\\\":\\\"MAX_WEIGHT\\\",\\\"configName\\\":\\\"最大负重\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"250\\\"},{\\\"configId\\\":9,\\\"configKey\\\":\\\"MAX_VEHICLE_NUMS\\\",\\\"configName\\\":\\\"最大任务数量\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"54\\\"},{\\\"configId\\\":10,\\\"configKey\\\":\\\"SLOC_FILTER_STRING\\\",\\\"configName\\\":\\\"kitting物料筛选字符\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"DM05\\\"}],\\\"pages\\\":2,\\\"total\\\":11}}\"', '192.168.8.93', '2024-08-02 23:08:55', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408022308550301722611335030', '查询系统配置', 'getConfigsByPage', '[{\"isAsc\": true, \"pageNo\": 1, \"sortBy\": \"\", \"configId\": null, \"pageSize\": 10, \"configKey\": \"\", \"configName\": \"\", \"configType\": \"\", \"configValue\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"查询系统配置成功。\\\",\\\"returnData\\\":{\\\"lists\\\":[{\\\"configId\\\":1,\\\"configKey\\\":\\\"URL_WCS_TASK\\\",\\\"configName\\\":\\\"WCS接收任务URL\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask\\\"},{\\\"configId\\\":2,\\\"configKey\\\":\\\"URL_NEW_DESTINATION\\\",\\\"configName\\\":\\\"WCS接收新库位URL\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask\\\"},{\\\"configId\\\":3,\\\"configKey\\\":\\\"URL_WCS_PICK_TASK\\\",\\\"configName\\\":\\\"WCS接收拣选任务URL\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"http://192.168.8.62:18990/api/wms/convey/conveyTask\\\"},{\\\"configId\\\":4,\\\"configKey\\\":\\\"URL_WCS_E_TASK\\\",\\\"configName\\\":\\\"电子标签亮灯地址\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"http://192.168.8.62:18990/api/wms/elTag/elTagTask\\\"},{\\\"configId\\\":5,\\\"configKey\\\":\\\"URL_WCS_DISPOSE_VEHICLE\\\",\\\"configName\\\":\\\"Wcs释放箱子URL\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"http://192.168.8.62:18990/api/wms/convey/disposeVehicle\\\"},{\\\"configId\\\":6,\\\"configKey\\\":\\\"START_WORK\\\",\\\"configName\\\":\\\"开始工作\\\",\\\"configType\\\":\\\"3\\\",\\\"configValue\\\":\\\"0\\\"},{\\\"configId\\\":7,\\\"configKey\\\":\\\"SEND_TASK\\\",\\\"configName\\\":\\\"发送任务\\\",\\\"configType\\\":\\\"3\\\",\\\"configValue\\\":\\\"0\\\"},{\\\"configId\\\":8,\\\"configKey\\\":\\\"MAX_WEIGHT\\\",\\\"configName\\\":\\\"最大负重\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"250\\\"},{\\\"configId\\\":9,\\\"configKey\\\":\\\"MAX_VEHICLE_NUMS\\\",\\\"configName\\\":\\\"最大任务数量\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"54\\\"},{\\\"configId\\\":10,\\\"configKey\\\":\\\"SLOC_FILTER_STRING\\\",\\\"configName\\\":\\\"kitting物料筛选字符\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"DM05\\\"}],\\\"pages\\\":2,\\\"total\\\":11}}\"', '192.168.8.93', '2024-08-02 23:08:55', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408022308551781722611335178', '查询系统配置', 'getConfigsByPage', '[{\"isAsc\": true, \"pageNo\": 1, \"sortBy\": \"\", \"configId\": null, \"pageSize\": 10, \"configKey\": \"\", \"configName\": \"\", \"configType\": \"\", \"configValue\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"查询系统配置成功。\\\",\\\"returnData\\\":{\\\"lists\\\":[{\\\"configId\\\":1,\\\"configKey\\\":\\\"URL_WCS_TASK\\\",\\\"configName\\\":\\\"WCS接收任务URL\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask\\\"},{\\\"configId\\\":2,\\\"configKey\\\":\\\"URL_NEW_DESTINATION\\\",\\\"configName\\\":\\\"WCS接收新库位URL\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask\\\"},{\\\"configId\\\":3,\\\"configKey\\\":\\\"URL_WCS_PICK_TASK\\\",\\\"configName\\\":\\\"WCS接收拣选任务URL\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"http://192.168.8.62:18990/api/wms/convey/conveyTask\\\"},{\\\"configId\\\":4,\\\"configKey\\\":\\\"URL_WCS_E_TASK\\\",\\\"configName\\\":\\\"电子标签亮灯地址\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"http://192.168.8.62:18990/api/wms/elTag/elTagTask\\\"},{\\\"configId\\\":5,\\\"configKey\\\":\\\"URL_WCS_DISPOSE_VEHICLE\\\",\\\"configName\\\":\\\"Wcs释放箱子URL\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"http://192.168.8.62:18990/api/wms/convey/disposeVehicle\\\"},{\\\"configId\\\":6,\\\"configKey\\\":\\\"START_WORK\\\",\\\"configName\\\":\\\"开始工作\\\",\\\"configType\\\":\\\"3\\\",\\\"configValue\\\":\\\"0\\\"},{\\\"configId\\\":7,\\\"configKey\\\":\\\"SEND_TASK\\\",\\\"configName\\\":\\\"发送任务\\\",\\\"configType\\\":\\\"3\\\",\\\"configValue\\\":\\\"0\\\"},{\\\"configId\\\":8,\\\"configKey\\\":\\\"MAX_WEIGHT\\\",\\\"configName\\\":\\\"最大负重\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"250\\\"},{\\\"configId\\\":9,\\\"configKey\\\":\\\"MAX_VEHICLE_NUMS\\\",\\\"configName\\\":\\\"最大任务数量\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"54\\\"},{\\\"configId\\\":10,\\\"configKey\\\":\\\"SLOC_FILTER_STRING\\\",\\\"configName\\\":\\\"kitting物料筛选字符\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"DM05\\\"}],\\\"pages\\\":2,\\\"total\\\":11}}\"', '192.168.8.93', '2024-08-02 23:08:55', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408022308553771722611335377', '查询系统配置', 'getConfigsByPage', '[{\"isAsc\": true, \"pageNo\": 1, \"sortBy\": \"\", \"configId\": null, \"pageSize\": 10, \"configKey\": \"\", \"configName\": \"\", \"configType\": \"\", \"configValue\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"查询系统配置成功。\\\",\\\"returnData\\\":{\\\"lists\\\":[{\\\"configId\\\":1,\\\"configKey\\\":\\\"URL_WCS_TASK\\\",\\\"configName\\\":\\\"WCS接收任务URL\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask\\\"},{\\\"configId\\\":2,\\\"configKey\\\":\\\"URL_NEW_DESTINATION\\\",\\\"configName\\\":\\\"WCS接收新库位URL\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask\\\"},{\\\"configId\\\":3,\\\"configKey\\\":\\\"URL_WCS_PICK_TASK\\\",\\\"configName\\\":\\\"WCS接收拣选任务URL\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"http://192.168.8.62:18990/api/wms/convey/conveyTask\\\"},{\\\"configId\\\":4,\\\"configKey\\\":\\\"URL_WCS_E_TASK\\\",\\\"configName\\\":\\\"电子标签亮灯地址\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"http://192.168.8.62:18990/api/wms/elTag/elTagTask\\\"},{\\\"configId\\\":5,\\\"configKey\\\":\\\"URL_WCS_DISPOSE_VEHICLE\\\",\\\"configName\\\":\\\"Wcs释放箱子URL\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"http://192.168.8.62:18990/api/wms/convey/disposeVehicle\\\"},{\\\"configId\\\":6,\\\"configKey\\\":\\\"START_WORK\\\",\\\"configName\\\":\\\"开始工作\\\",\\\"configType\\\":\\\"3\\\",\\\"configValue\\\":\\\"0\\\"},{\\\"configId\\\":7,\\\"configKey\\\":\\\"SEND_TASK\\\",\\\"configName\\\":\\\"发送任务\\\",\\\"configType\\\":\\\"3\\\",\\\"configValue\\\":\\\"0\\\"},{\\\"configId\\\":8,\\\"configKey\\\":\\\"MAX_WEIGHT\\\",\\\"configName\\\":\\\"最大负重\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"250\\\"},{\\\"configId\\\":9,\\\"configKey\\\":\\\"MAX_VEHICLE_NUMS\\\",\\\"configName\\\":\\\"最大任务数量\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"54\\\"},{\\\"configId\\\":10,\\\"configKey\\\":\\\"SLOC_FILTER_STRING\\\",\\\"configName\\\":\\\"kitting物料筛选字符\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"DM05\\\"}],\\\"pages\\\":2,\\\"total\\\":11}}\"', '192.168.8.93', '2024-08-02 23:08:55', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408022308567061722611336706', '查询系统配置', 'getConfigsByPage', '[{\"isAsc\": true, \"pageNo\": 2, \"sortBy\": \"\", \"configId\": null, \"pageSize\": 10, \"configKey\": \"\", \"configName\": \"\", \"configType\": \"\", \"configValue\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"查询系统配置成功。\\\",\\\"returnData\\\":{\\\"lists\\\":[{\\\"configId\\\":11,\\\"configKey\\\":\\\"URL_WCS_CHANGE_TASK\\\",\\\"configName\\\":\\\"WCS接收任务状态变更URL\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"http://192.168.103.110:2000\\\"}],\\\"pages\\\":2,\\\"total\\\":11}}\"', '192.168.8.93', '2024-08-02 23:08:57', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408022308589971722611338997', '查询系统配置', 'getConfigsByPage', '[{\"isAsc\": true, \"pageNo\": 1, \"sortBy\": \"\", \"configId\": null, \"pageSize\": 10, \"configKey\": \"\", \"configName\": \"\", \"configType\": \"\", \"configValue\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"查询系统配置成功。\\\",\\\"returnData\\\":{\\\"lists\\\":[{\\\"configId\\\":1,\\\"configKey\\\":\\\"URL_WCS_TASK\\\",\\\"configName\\\":\\\"WCS接收任务URL\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask\\\"},{\\\"configId\\\":2,\\\"configKey\\\":\\\"URL_NEW_DESTINATION\\\",\\\"configName\\\":\\\"WCS接收新库位URL\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask\\\"},{\\\"configId\\\":3,\\\"configKey\\\":\\\"URL_WCS_PICK_TASK\\\",\\\"configName\\\":\\\"WCS接收拣选任务URL\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"http://192.168.8.62:18990/api/wms/convey/conveyTask\\\"},{\\\"configId\\\":4,\\\"configKey\\\":\\\"URL_WCS_E_TASK\\\",\\\"configName\\\":\\\"电子标签亮灯地址\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"http://192.168.8.62:18990/api/wms/elTag/elTagTask\\\"},{\\\"configId\\\":5,\\\"configKey\\\":\\\"URL_WCS_DISPOSE_VEHICLE\\\",\\\"configName\\\":\\\"Wcs释放箱子URL\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"http://192.168.8.62:18990/api/wms/convey/disposeVehicle\\\"},{\\\"configId\\\":6,\\\"configKey\\\":\\\"START_WORK\\\",\\\"configName\\\":\\\"开始工作\\\",\\\"configType\\\":\\\"3\\\",\\\"configValue\\\":\\\"0\\\"},{\\\"configId\\\":7,\\\"configKey\\\":\\\"SEND_TASK\\\",\\\"configName\\\":\\\"发送任务\\\",\\\"configType\\\":\\\"3\\\",\\\"configValue\\\":\\\"0\\\"},{\\\"configId\\\":8,\\\"configKey\\\":\\\"MAX_WEIGHT\\\",\\\"configName\\\":\\\"最大负重\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"250\\\"},{\\\"configId\\\":9,\\\"configKey\\\":\\\"MAX_VEHICLE_NUMS\\\",\\\"configName\\\":\\\"最大任务数量\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"54\\\"},{\\\"configId\\\":10,\\\"configKey\\\":\\\"SLOC_FILTER_STRING\\\",\\\"configName\\\":\\\"kitting物料筛选字符\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"DM05\\\"}],\\\"pages\\\":2,\\\"total\\\":11}}\"', '192.168.8.93', '2024-08-02 23:08:59', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408022309009301722611340930', '查询系统配置', 'getConfigsByPage', '[{\"isAsc\": true, \"pageNo\": 1, \"sortBy\": \"\", \"configId\": null, \"pageSize\": 25, \"configKey\": \"\", \"configName\": \"\", \"configType\": \"\", \"configValue\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"查询系统配置成功。\\\",\\\"returnData\\\":{\\\"lists\\\":[{\\\"configId\\\":1,\\\"configKey\\\":\\\"URL_WCS_TASK\\\",\\\"configName\\\":\\\"WCS接收任务URL\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask\\\"},{\\\"configId\\\":2,\\\"configKey\\\":\\\"URL_NEW_DESTINATION\\\",\\\"configName\\\":\\\"WCS接收新库位URL\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask\\\"},{\\\"configId\\\":3,\\\"configKey\\\":\\\"URL_WCS_PICK_TASK\\\",\\\"configName\\\":\\\"WCS接收拣选任务URL\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"http://192.168.8.62:18990/api/wms/convey/conveyTask\\\"},{\\\"configId\\\":4,\\\"configKey\\\":\\\"URL_WCS_E_TASK\\\",\\\"configName\\\":\\\"电子标签亮灯地址\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"http://192.168.8.62:18990/api/wms/elTag/elTagTask\\\"},{\\\"configId\\\":5,\\\"configKey\\\":\\\"URL_WCS_DISPOSE_VEHICLE\\\",\\\"configName\\\":\\\"Wcs释放箱子URL\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"http://192.168.8.62:18990/api/wms/convey/disposeVehicle\\\"},{\\\"configId\\\":6,\\\"configKey\\\":\\\"START_WORK\\\",\\\"configName\\\":\\\"开始工作\\\",\\\"configType\\\":\\\"3\\\",\\\"configValue\\\":\\\"0\\\"},{\\\"configId\\\":7,\\\"configKey\\\":\\\"SEND_TASK\\\",\\\"configName\\\":\\\"发送任务\\\",\\\"configType\\\":\\\"3\\\",\\\"configValue\\\":\\\"0\\\"},{\\\"configId\\\":8,\\\"configKey\\\":\\\"MAX_WEIGHT\\\",\\\"configName\\\":\\\"最大负重\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"250\\\"},{\\\"configId\\\":9,\\\"configKey\\\":\\\"MAX_VEHICLE_NUMS\\\",\\\"configName\\\":\\\"最大任务数量\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"54\\\"},{\\\"configId\\\":10,\\\"configKey\\\":\\\"SLOC_FILTER_STRING\\\",\\\"configName\\\":\\\"kitting物料筛选字符\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"DM05\\\"},{\\\"configId\\\":11,\\\"configKey\\\":\\\"URL_WCS_CHANGE_TASK\\\",\\\"configName\\\":\\\"WCS接收任务状态变更URL\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"http://192.168.103.110:2000\\\"}],\\\"pages\\\":1,\\\"total\\\":11}}\"', '192.168.8.93', '2024-08-02 23:09:01', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408022309179321722611357932', '查询系统配置', 'getConfigsByPage', '[{\"isAsc\": true, \"pageNo\": 1, \"sortBy\": \"\", \"configId\": null, \"pageSize\": 10, \"configKey\": \"\", \"configName\": \"\", \"configType\": \"\", \"configValue\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"查询系统配置成功。\\\",\\\"returnData\\\":{\\\"lists\\\":[{\\\"configId\\\":1,\\\"configKey\\\":\\\"URL_WCS_TASK\\\",\\\"configName\\\":\\\"WCS接收任务URL\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask\\\"},{\\\"configId\\\":2,\\\"configKey\\\":\\\"URL_NEW_DESTINATION\\\",\\\"configName\\\":\\\"WCS接收新库位URL\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask\\\"},{\\\"configId\\\":3,\\\"configKey\\\":\\\"URL_WCS_PICK_TASK\\\",\\\"configName\\\":\\\"WCS接收拣选任务URL\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"http://192.168.8.62:18990/api/wms/convey/conveyTask\\\"},{\\\"configId\\\":4,\\\"configKey\\\":\\\"URL_WCS_E_TASK\\\",\\\"configName\\\":\\\"电子标签亮灯地址\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"http://192.168.8.62:18990/api/wms/elTag/elTagTask\\\"},{\\\"configId\\\":5,\\\"configKey\\\":\\\"URL_WCS_DISPOSE_VEHICLE\\\",\\\"configName\\\":\\\"Wcs释放箱子URL\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"http://192.168.8.62:18990/api/wms/convey/disposeVehicle\\\"},{\\\"configId\\\":6,\\\"configKey\\\":\\\"START_WORK\\\",\\\"configName\\\":\\\"开始工作\\\",\\\"configType\\\":\\\"3\\\",\\\"configValue\\\":\\\"0\\\"},{\\\"configId\\\":7,\\\"configKey\\\":\\\"SEND_TASK\\\",\\\"configName\\\":\\\"发送任务\\\",\\\"configType\\\":\\\"3\\\",\\\"configValue\\\":\\\"0\\\"},{\\\"configId\\\":8,\\\"configKey\\\":\\\"MAX_WEIGHT\\\",\\\"configName\\\":\\\"最大负重\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"250\\\"},{\\\"configId\\\":9,\\\"configKey\\\":\\\"MAX_VEHICLE_NUMS\\\",\\\"configName\\\":\\\"最大任务数量\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"54\\\"},{\\\"configId\\\":10,\\\"configKey\\\":\\\"SLOC_FILTER_STRING\\\",\\\"configName\\\":\\\"kitting物料筛选字符\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"DM05\\\"}],\\\"pages\\\":2,\\\"total\\\":11}}\"', '192.168.8.93', '2024-08-02 23:09:18', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408022309215671722611361567', '查询系统配置', 'getConfigsByPage', '[{\"isAsc\": true, \"pageNo\": 1, \"sortBy\": \"\", \"configId\": null, \"pageSize\": 25, \"configKey\": \"\", \"configName\": \"\", \"configType\": \"\", \"configValue\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"查询系统配置成功。\\\",\\\"returnData\\\":{\\\"lists\\\":[{\\\"configId\\\":1,\\\"configKey\\\":\\\"URL_WCS_TASK\\\",\\\"configName\\\":\\\"WCS接收任务URL\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask\\\"},{\\\"configId\\\":2,\\\"configKey\\\":\\\"URL_NEW_DESTINATION\\\",\\\"configName\\\":\\\"WCS接收新库位URL\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask\\\"},{\\\"configId\\\":3,\\\"configKey\\\":\\\"URL_WCS_PICK_TASK\\\",\\\"configName\\\":\\\"WCS接收拣选任务URL\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"http://192.168.8.62:18990/api/wms/convey/conveyTask\\\"},{\\\"configId\\\":4,\\\"configKey\\\":\\\"URL_WCS_E_TASK\\\",\\\"configName\\\":\\\"电子标签亮灯地址\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"http://192.168.8.62:18990/api/wms/elTag/elTagTask\\\"},{\\\"configId\\\":5,\\\"configKey\\\":\\\"URL_WCS_DISPOSE_VEHICLE\\\",\\\"configName\\\":\\\"Wcs释放箱子URL\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"http://192.168.8.62:18990/api/wms/convey/disposeVehicle\\\"},{\\\"configId\\\":6,\\\"configKey\\\":\\\"START_WORK\\\",\\\"configName\\\":\\\"开始工作\\\",\\\"configType\\\":\\\"3\\\",\\\"configValue\\\":\\\"0\\\"},{\\\"configId\\\":7,\\\"configKey\\\":\\\"SEND_TASK\\\",\\\"configName\\\":\\\"发送任务\\\",\\\"configType\\\":\\\"3\\\",\\\"configValue\\\":\\\"0\\\"},{\\\"configId\\\":8,\\\"configKey\\\":\\\"MAX_WEIGHT\\\",\\\"configName\\\":\\\"最大负重\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"250\\\"},{\\\"configId\\\":9,\\\"configKey\\\":\\\"MAX_VEHICLE_NUMS\\\",\\\"configName\\\":\\\"最大任务数量\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"54\\\"},{\\\"configId\\\":10,\\\"configKey\\\":\\\"SLOC_FILTER_STRING\\\",\\\"configName\\\":\\\"kitting物料筛选字符\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"DM05\\\"},{\\\"configId\\\":11,\\\"configKey\\\":\\\"URL_WCS_CHANGE_TASK\\\",\\\"configName\\\":\\\"WCS接收任务状态变更URL\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"http://192.168.103.110:2000\\\"}],\\\"pages\\\":1,\\\"total\\\":11}}\"', '192.168.8.93', '2024-08-02 23:09:22', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408042045287821722775528782', '带密码登录', 'loginWithAuth', '[{\"isAsc\": true, \"pageNo\": 1, \"roleId\": null, \"sortBy\": \"\", \"userId\": null, \"addTime\": null, \"addUser\": \"\", \"pageSize\": 10, \"userName\": \"\", \"updateTime\": null, \"loginAccount\": \"admin\", \"loginPassword\": \"admin\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"登录成功\\\",\\\"returnData\\\":{\\\"menuList\\\":[{\\\"children\\\":[{\\\"children\\\":[],\\\"id\\\":\\\"11\\\",\\\"labelName\\\":\\\"入库\\\",\\\"path\\\":\\\"/goodsIn\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"12\\\",\\\"labelName\\\":\\\"出库\\\",\\\"path\\\":\\\"/goodsOut\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"13\\\",\\\"labelName\\\":\\\"盘点\\\",\\\"path\\\":\\\"/inventory\\\"}],\\\"iconValue\\\":\\\"Operation\\\",\\\"id\\\":\\\"1\\\",\\\"labelName\\\":\\\"操作\\\",\\\"path\\\":\\\"\\\"},{\\\"children\\\":[{\\\"children\\\":[],\\\"id\\\":\\\"21\\\",\\\"labelName\\\":\\\"库存信息\\\",\\\"path\\\":\\\"/stock\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"22\\\",\\\"labelName\\\":\\\"物料信息\\\",\\\"path\\\":\\\"/goods\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"23\\\",\\\"labelName\\\":\\\"入库记录\\\",\\\"path\\\":\\\"/inTaskRecord\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"24\\\",\\\"labelName\\\":\\\"出库记录\\\",\\\"path\\\":\\\"/outTaskRecord\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"241\\\",\\\"labelName\\\":\\\"盘点记录\\\",\\\"path\\\":\\\"/inventoryRecord\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"25\\\",\\\"labelName\\\":\\\"任务监控\\\",\\\"path\\\":\\\"/taskMonitor\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"26\\\",\\\"labelName\\\":\\\"库位监控\\\",\\\"path\\\":\\\"/location\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"28\\\",\\\"labelName\\\":\\\"接口日志\\\",\\\"path\\\":\\\"/wmsLog\\\"}],\\\"iconValue\\\":\\\"Histogram\\\",\\\"id\\\":\\\"2\\\",\\\"labelName\\\":\\\"数据\\\",\\\"path\\\":\\\"\\\"},{\\\"children\\\":[{\\\"children\\\":[],\\\"id\\\":\\\"35\\\",\\\"labelName\\\":\\\"系统配置\\\",\\\"path\\\":\\\"/config\\\"}],\\\"iconValue\\\":\\\"Setting\\\",\\\"id\\\":\\\"3\\\",\\\"labelName\\\":\\\"系统\\\"},{\\\"children\\\":[{\\\"children\\\":[],\\\"id\\\":\\\"41\\\",\\\"labelName\\\":\\\"备料执行\\\",\\\"path\\\":\\\"/testDoKitting\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"42\\\",\\\"labelName\\\":\\\"备料完成\\\",\\\"path\\\":\\\"/testFinishKitting\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"43\\\",\\\"labelName\\\":\\\"呼叫空箱\\\",\\\"path\\\":\\\"/testCallEmptyVehicle\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"44\\\",\\\"labelName\\\":\\\"整理盒子\\\",\\\"path\\\":\\\"/testSortBoxs\\\"}],\\\"iconValue\\\":\\\"Lock\\\",\\\"id\\\":\\\"4\\\",\\\"labelName\\\":\\\"测试\\\"}],\\\"standId\\\":\\\"ASRS-#1\\\",\\\"user\\\":{\\\"addTime\\\":\\\"2023-03-23 11:17:06\\\",\\\"addUser\\\":\\\"系统\\\",\\\"loginAccount\\\":\\\"admin\\\",\\\"loginPassword\\\":\\\"812C0C84E2970FA98456DDC5B0B59594\\\",\\\"roleId\\\":1,\\\"updateTime\\\":\\\"2023-03-23 11:17:10\\\",\\\"userId\\\":1,\\\"userName\\\":\\\"管理员\\\"}}}\"', '192.168.8.93', '2024-08-04 20:45:29', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408042045389661722775538966', '查询载具信息', 'getVehiclesByPage', '[{\"isAsc\": true, \"pageNo\": 1, \"sortBy\": \"\", \"isEmpty\": null, \"pageSize\": 10, \"vehicleId\": \"\", \"vehicleType\": \"\", \"vehicleStatus\": null, \"currentLocation\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"查询成功\\\",\\\"returnData\\\":{\\\"lists\\\":[],\\\"pages\\\":0,\\\"total\\\":0}}\"', '192.168.8.93', '2024-08-04 20:45:39', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408042046159051722775575905', '查询系统配置', 'getConfigsByPage', '[{\"isAsc\": true, \"pageNo\": 1, \"sortBy\": \"\", \"configId\": null, \"pageSize\": 10, \"configKey\": \"\", \"configName\": \"\", \"configType\": \"\", \"configValue\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"查询系统配置成功。\\\",\\\"returnData\\\":{\\\"lists\\\":[{\\\"configId\\\":1,\\\"configKey\\\":\\\"URL_WCS_TASK\\\",\\\"configName\\\":\\\"WCS接收任务URL\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask\\\"},{\\\"configId\\\":2,\\\"configKey\\\":\\\"URL_NEW_DESTINATION\\\",\\\"configName\\\":\\\"WCS接收新库位URL\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask\\\"},{\\\"configId\\\":3,\\\"configKey\\\":\\\"URL_WCS_PICK_TASK\\\",\\\"configName\\\":\\\"WCS接收拣选任务URL\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"http://192.168.8.62:18990/api/wms/convey/conveyTask\\\"},{\\\"configId\\\":4,\\\"configKey\\\":\\\"URL_WCS_E_TASK\\\",\\\"configName\\\":\\\"电子标签亮灯地址\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"http://192.168.8.62:18990/api/wms/elTag/elTagTask\\\"},{\\\"configId\\\":5,\\\"configKey\\\":\\\"URL_WCS_DISPOSE_VEHICLE\\\",\\\"configName\\\":\\\"Wcs释放箱子URL\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"http://192.168.8.62:18990/api/wms/convey/disposeVehicle\\\"},{\\\"configId\\\":6,\\\"configKey\\\":\\\"START_WORK\\\",\\\"configName\\\":\\\"开始工作\\\",\\\"configType\\\":\\\"3\\\",\\\"configValue\\\":\\\"0\\\"},{\\\"configId\\\":7,\\\"configKey\\\":\\\"SEND_TASK\\\",\\\"configName\\\":\\\"发送任务\\\",\\\"configType\\\":\\\"3\\\",\\\"configValue\\\":\\\"0\\\"},{\\\"configId\\\":8,\\\"configKey\\\":\\\"MAX_WEIGHT\\\",\\\"configName\\\":\\\"最大负重\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"250\\\"},{\\\"configId\\\":9,\\\"configKey\\\":\\\"MAX_VEHICLE_NUMS\\\",\\\"configName\\\":\\\"最大任务数量\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"54\\\"},{\\\"configId\\\":10,\\\"configKey\\\":\\\"SLOC_FILTER_STRING\\\",\\\"configName\\\":\\\"kitting物料筛选字符\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"DM05\\\"}],\\\"pages\\\":2,\\\"total\\\":11}}\"', '192.168.8.93', '2024-08-04 20:46:16', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408042047295241722775649524', '带密码登录', 'loginWithAuth', '[{\"isAsc\": true, \"pageNo\": 1, \"roleId\": null, \"sortBy\": \"\", \"userId\": null, \"addTime\": null, \"addUser\": \"\", \"pageSize\": 10, \"userName\": \"\", \"updateTime\": null, \"loginAccount\": \"admin\", \"loginPassword\": \"admin\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"登录成功\\\",\\\"returnData\\\":{\\\"menuList\\\":[{\\\"children\\\":[{\\\"children\\\":[],\\\"id\\\":\\\"11\\\",\\\"labelName\\\":\\\"入库\\\",\\\"path\\\":\\\"/goodsIn\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"12\\\",\\\"labelName\\\":\\\"出库\\\",\\\"path\\\":\\\"/goodsOut\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"13\\\",\\\"labelName\\\":\\\"盘点\\\",\\\"path\\\":\\\"/inventory\\\"}],\\\"iconValue\\\":\\\"Operation\\\",\\\"id\\\":\\\"1\\\",\\\"labelName\\\":\\\"操作\\\",\\\"path\\\":\\\"\\\"},{\\\"children\\\":[{\\\"children\\\":[],\\\"id\\\":\\\"21\\\",\\\"labelName\\\":\\\"库存信息\\\",\\\"path\\\":\\\"/stock\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"22\\\",\\\"labelName\\\":\\\"物料信息\\\",\\\"path\\\":\\\"/goods\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"23\\\",\\\"labelName\\\":\\\"入库记录\\\",\\\"path\\\":\\\"/inTaskRecord\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"24\\\",\\\"labelName\\\":\\\"出库记录\\\",\\\"path\\\":\\\"/outTaskRecord\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"241\\\",\\\"labelName\\\":\\\"盘点记录\\\",\\\"path\\\":\\\"/inventoryRecord\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"25\\\",\\\"labelName\\\":\\\"任务监控\\\",\\\"path\\\":\\\"/taskMonitor\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"26\\\",\\\"labelName\\\":\\\"库位监控\\\",\\\"path\\\":\\\"/location\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"27\\\",\\\"labelName\\\":\\\"料箱监控\\\",\\\"path\\\":\\\"/vehicles\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"28\\\",\\\"labelName\\\":\\\"接口日志\\\",\\\"path\\\":\\\"/wmsLog\\\"}],\\\"iconValue\\\":\\\"Histogram\\\",\\\"id\\\":\\\"2\\\",\\\"labelName\\\":\\\"数据\\\",\\\"path\\\":\\\"\\\"},{\\\"children\\\":[{\\\"children\\\":[],\\\"id\\\":\\\"35\\\",\\\"labelName\\\":\\\"系统配置\\\",\\\"path\\\":\\\"/config\\\"}],\\\"iconValue\\\":\\\"Setting\\\",\\\"id\\\":\\\"3\\\",\\\"labelName\\\":\\\"系统\\\"},{\\\"children\\\":[{\\\"children\\\":[],\\\"id\\\":\\\"41\\\",\\\"labelName\\\":\\\"备料执行\\\",\\\"path\\\":\\\"/testDoKitting\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"42\\\",\\\"labelName\\\":\\\"备料完成\\\",\\\"path\\\":\\\"/testFinishKitting\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"43\\\",\\\"labelName\\\":\\\"呼叫空箱\\\",\\\"path\\\":\\\"/testCallEmptyVehicle\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"44\\\",\\\"labelName\\\":\\\"整理盒子\\\",\\\"path\\\":\\\"/testSortBoxs\\\"}],\\\"iconValue\\\":\\\"Lock\\\",\\\"id\\\":\\\"4\\\",\\\"labelName\\\":\\\"测试\\\"}],\\\"standId\\\":\\\"ASRS-#1\\\",\\\"user\\\":{\\\"addTime\\\":\\\"2023-03-23 11:17:06\\\",\\\"addUser\\\":\\\"系统\\\",\\\"loginAccount\\\":\\\"admin\\\",\\\"loginPassword\\\":\\\"812C0C84E2970FA98456DDC5B0B59594\\\",\\\"roleId\\\":1,\\\"updateTime\\\":\\\"2023-03-23 11:17:10\\\",\\\"userId\\\":1,\\\"userName\\\":\\\"管理员\\\"}}}\"', '192.168.8.93', '2024-08-04 20:47:30', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408042047341371722775654137', '查询载具信息', 'getVehiclesByPage', '[{\"isAsc\": true, \"pageNo\": 1, \"sortBy\": \"\", \"isEmpty\": null, \"pageSize\": 10, \"vehicleId\": \"\", \"vehicleType\": \"\", \"vehicleStatus\": null, \"currentLocation\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"查询成功\\\",\\\"returnData\\\":{\\\"lists\\\":[],\\\"pages\\\":0,\\\"total\\\":0}}\"', '192.168.8.93', '2024-08-04 20:47:34', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408042047350621722775655062', '查询载具信息', 'getVehiclesByPage', '[{\"isAsc\": true, \"pageNo\": 1, \"sortBy\": \"\", \"isEmpty\": null, \"pageSize\": 10, \"vehicleId\": \"\", \"vehicleType\": \"\", \"vehicleStatus\": null, \"currentLocation\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"查询成功\\\",\\\"returnData\\\":{\\\"lists\\\":[],\\\"pages\\\":0,\\\"total\\\":0}}\"', '192.168.8.93', '2024-08-04 20:47:35', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408042050170131722775817013', '查询载具信息', 'getVehiclesByPage', '[{\"isAsc\": true, \"pageNo\": 1, \"sortBy\": \"\", \"isEmpty\": null, \"pageSize\": 10, \"vehicleId\": \"\", \"vehicleType\": \"\", \"vehicleStatus\": null, \"currentLocation\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"查询成功\\\",\\\"returnData\\\":{\\\"lists\\\":[],\\\"pages\\\":0,\\\"total\\\":0}}\"', '192.168.8.93', '2024-08-04 20:50:17', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408042050192321722775819232', '查询载具信息', 'getVehiclesByPage', '[{\"isAsc\": true, \"pageNo\": 1, \"sortBy\": \"\", \"isEmpty\": null, \"pageSize\": 10, \"vehicleId\": \"\", \"vehicleType\": \"\", \"vehicleStatus\": null, \"currentLocation\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"查询成功\\\",\\\"returnData\\\":{\\\"lists\\\":[],\\\"pages\\\":0,\\\"total\\\":0}}\"', '192.168.8.93', '2024-08-04 20:50:19', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408042054174681722776057468', '查询载具信息', 'getVehiclesByPage', '[{\"isAsc\": true, \"pageNo\": 1, \"sortBy\": \"\", \"isEmpty\": null, \"pageSize\": 10, \"vehicleId\": \"\", \"vehicleType\": \"\", \"vehicleStatus\": null, \"currentLocation\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"查询成功\\\",\\\"returnData\\\":{\\\"lists\\\":[{\\\"currentLocation\\\":\\\"04-01-01-01\\\",\\\"isEmpty\\\":0,\\\"lastInTime\\\":\\\"2024-08-02 09:39:49\\\",\\\"vehicleId\\\":\\\"ASRS000001\\\",\\\"vehicleStatus\\\":2,\\\"vehicleType\\\":\\\"\\\"},{\\\"currentLocation\\\":\\\"07-01-02-01\\\",\\\"isEmpty\\\":1,\\\"lastInTime\\\":\\\"2024-08-02 10:22:20\\\",\\\"vehicleId\\\":\\\"ASRS000002\\\",\\\"vehicleStatus\\\":2,\\\"vehicleType\\\":\\\"\\\"},{\\\"currentLocation\\\":\\\"03-01-03-01\\\",\\\"isEmpty\\\":1,\\\"lastInTime\\\":\\\"2024-08-02 10:26:36\\\",\\\"vehicleId\\\":\\\"ASRS000003\\\",\\\"vehicleStatus\\\":2,\\\"vehicleType\\\":\\\"\\\"},{\\\"currentLocation\\\":\\\"01-01-06-01\\\",\\\"isEmpty\\\":1,\\\"lastInTime\\\":\\\"2024-08-02 10:25:48\\\",\\\"vehicleId\\\":\\\"ASRS000004\\\",\\\"vehicleStatus\\\":2,\\\"vehicleType\\\":\\\"\\\"},{\\\"currentLocation\\\":\\\"06-01-04-01\\\",\\\"isEmpty\\\":1,\\\"lastInTime\\\":\\\"2024-08-02 10:24:52\\\",\\\"vehicleId\\\":\\\"ASRS000005\\\",\\\"vehicleStatus\\\":2,\\\"vehicleType\\\":\\\"\\\"},{\\\"currentLocation\\\":\\\"08-01-03-01\\\",\\\"isEmpty\\\":1,\\\"lastInTime\\\":\\\"2024-08-02 10:23:47\\\",\\\"vehicleId\\\":\\\"ASRS000006\\\",\\\"vehicleStatus\\\":2,\\\"vehicleType\\\":\\\"\\\"},{\\\"currentLocation\\\":\\\"05-01-04-01\\\",\\\"isEmpty\\\":1,\\\"lastInTime\\\":\\\"2024-08-02 10:27:08\\\",\\\"vehicleId\\\":\\\"ASRS000007\\\",\\\"vehicleStatus\\\":2,\\\"vehicleType\\\":\\\"\\\"},{\\\"currentLocation\\\":\\\"04-01-03-01\\\",\\\"isEmpty\\\":1,\\\"lastInTime\\\":\\\"2024-08-02 10:23:17\\\",\\\"vehicleId\\\":\\\"ASRS000008\\\",\\\"vehicleStatus\\\":2,\\\"vehicleType\\\":\\\"\\\"},{\\\"currentLocation\\\":\\\"01-01-07-01\\\",\\\"isEmpty\\\":1,\\\"lastInTime\\\":\\\"2024-08-02 10:28:46\\\",\\\"vehicleId\\\":\\\"ASRS000009\\\",\\\"vehicleStatus\\\":2,\\\"vehicleType\\\":\\\"\\\"},{\\\"currentLocation\\\":\\\"06-01-03-01\\\",\\\"isEmpty\\\":1,\\\"lastInTime\\\":\\\"2024-08-02 10:23:45\\\",\\\"vehicleId\\\":\\\"ASRS000010\\\",\\\"vehicleStatus\\\":2,\\\"vehicleType\\\":\\\"\\\"}],\\\"pages\\\":18,\\\"total\\\":175}}\"', '192.168.8.93', '2024-08-04 20:54:17', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408042054177291722776057729', '查询载具信息', 'getVehiclesByPage', '[{\"isAsc\": true, \"pageNo\": 1, \"sortBy\": \"\", \"isEmpty\": null, \"pageSize\": 10, \"vehicleId\": \"\", \"vehicleType\": \"\", \"vehicleStatus\": null, \"currentLocation\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"查询成功\\\",\\\"returnData\\\":{\\\"lists\\\":[{\\\"currentLocation\\\":\\\"04-01-01-01\\\",\\\"isEmpty\\\":0,\\\"lastInTime\\\":\\\"2024-08-02 09:39:49\\\",\\\"vehicleId\\\":\\\"ASRS000001\\\",\\\"vehicleStatus\\\":2,\\\"vehicleType\\\":\\\"\\\"},{\\\"currentLocation\\\":\\\"07-01-02-01\\\",\\\"isEmpty\\\":1,\\\"lastInTime\\\":\\\"2024-08-02 10:22:20\\\",\\\"vehicleId\\\":\\\"ASRS000002\\\",\\\"vehicleStatus\\\":2,\\\"vehicleType\\\":\\\"\\\"},{\\\"currentLocation\\\":\\\"03-01-03-01\\\",\\\"isEmpty\\\":1,\\\"lastInTime\\\":\\\"2024-08-02 10:26:36\\\",\\\"vehicleId\\\":\\\"ASRS000003\\\",\\\"vehicleStatus\\\":2,\\\"vehicleType\\\":\\\"\\\"},{\\\"currentLocation\\\":\\\"01-01-06-01\\\",\\\"isEmpty\\\":1,\\\"lastInTime\\\":\\\"2024-08-02 10:25:48\\\",\\\"vehicleId\\\":\\\"ASRS000004\\\",\\\"vehicleStatus\\\":2,\\\"vehicleType\\\":\\\"\\\"},{\\\"currentLocation\\\":\\\"06-01-04-01\\\",\\\"isEmpty\\\":1,\\\"lastInTime\\\":\\\"2024-08-02 10:24:52\\\",\\\"vehicleId\\\":\\\"ASRS000005\\\",\\\"vehicleStatus\\\":2,\\\"vehicleType\\\":\\\"\\\"},{\\\"currentLocation\\\":\\\"08-01-03-01\\\",\\\"isEmpty\\\":1,\\\"lastInTime\\\":\\\"2024-08-02 10:23:47\\\",\\\"vehicleId\\\":\\\"ASRS000006\\\",\\\"vehicleStatus\\\":2,\\\"vehicleType\\\":\\\"\\\"},{\\\"currentLocation\\\":\\\"05-01-04-01\\\",\\\"isEmpty\\\":1,\\\"lastInTime\\\":\\\"2024-08-02 10:27:08\\\",\\\"vehicleId\\\":\\\"ASRS000007\\\",\\\"vehicleStatus\\\":2,\\\"vehicleType\\\":\\\"\\\"},{\\\"currentLocation\\\":\\\"04-01-03-01\\\",\\\"isEmpty\\\":1,\\\"lastInTime\\\":\\\"2024-08-02 10:23:17\\\",\\\"vehicleId\\\":\\\"ASRS000008\\\",\\\"vehicleStatus\\\":2,\\\"vehicleType\\\":\\\"\\\"},{\\\"currentLocation\\\":\\\"01-01-07-01\\\",\\\"isEmpty\\\":1,\\\"lastInTime\\\":\\\"2024-08-02 10:28:46\\\",\\\"vehicleId\\\":\\\"ASRS000009\\\",\\\"vehicleStatus\\\":2,\\\"vehicleType\\\":\\\"\\\"},{\\\"currentLocation\\\":\\\"06-01-03-01\\\",\\\"isEmpty\\\":1,\\\"lastInTime\\\":\\\"2024-08-02 10:23:45\\\",\\\"vehicleId\\\":\\\"ASRS000010\\\",\\\"vehicleStatus\\\":2,\\\"vehicleType\\\":\\\"\\\"}],\\\"pages\\\":18,\\\"total\\\":175}}\"', '192.168.8.93', '2024-08-04 20:54:18', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408042054178851722776057885', '查询载具信息', 'getVehiclesByPage', '[{\"isAsc\": true, \"pageNo\": 1, \"sortBy\": \"\", \"isEmpty\": null, \"pageSize\": 10, \"vehicleId\": \"\", \"vehicleType\": \"\", \"vehicleStatus\": null, \"currentLocation\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"查询成功\\\",\\\"returnData\\\":{\\\"lists\\\":[{\\\"currentLocation\\\":\\\"04-01-01-01\\\",\\\"isEmpty\\\":0,\\\"lastInTime\\\":\\\"2024-08-02 09:39:49\\\",\\\"vehicleId\\\":\\\"ASRS000001\\\",\\\"vehicleStatus\\\":2,\\\"vehicleType\\\":\\\"\\\"},{\\\"currentLocation\\\":\\\"07-01-02-01\\\",\\\"isEmpty\\\":1,\\\"lastInTime\\\":\\\"2024-08-02 10:22:20\\\",\\\"vehicleId\\\":\\\"ASRS000002\\\",\\\"vehicleStatus\\\":2,\\\"vehicleType\\\":\\\"\\\"},{\\\"currentLocation\\\":\\\"03-01-03-01\\\",\\\"isEmpty\\\":1,\\\"lastInTime\\\":\\\"2024-08-02 10:26:36\\\",\\\"vehicleId\\\":\\\"ASRS000003\\\",\\\"vehicleStatus\\\":2,\\\"vehicleType\\\":\\\"\\\"},{\\\"currentLocation\\\":\\\"01-01-06-01\\\",\\\"isEmpty\\\":1,\\\"lastInTime\\\":\\\"2024-08-02 10:25:48\\\",\\\"vehicleId\\\":\\\"ASRS000004\\\",\\\"vehicleStatus\\\":2,\\\"vehicleType\\\":\\\"\\\"},{\\\"currentLocation\\\":\\\"06-01-04-01\\\",\\\"isEmpty\\\":1,\\\"lastInTime\\\":\\\"2024-08-02 10:24:52\\\",\\\"vehicleId\\\":\\\"ASRS000005\\\",\\\"vehicleStatus\\\":2,\\\"vehicleType\\\":\\\"\\\"},{\\\"currentLocation\\\":\\\"08-01-03-01\\\",\\\"isEmpty\\\":1,\\\"lastInTime\\\":\\\"2024-08-02 10:23:47\\\",\\\"vehicleId\\\":\\\"ASRS000006\\\",\\\"vehicleStatus\\\":2,\\\"vehicleType\\\":\\\"\\\"},{\\\"currentLocation\\\":\\\"05-01-04-01\\\",\\\"isEmpty\\\":1,\\\"lastInTime\\\":\\\"2024-08-02 10:27:08\\\",\\\"vehicleId\\\":\\\"ASRS000007\\\",\\\"vehicleStatus\\\":2,\\\"vehicleType\\\":\\\"\\\"},{\\\"currentLocation\\\":\\\"04-01-03-01\\\",\\\"isEmpty\\\":1,\\\"lastInTime\\\":\\\"2024-08-02 10:23:17\\\",\\\"vehicleId\\\":\\\"ASRS000008\\\",\\\"vehicleStatus\\\":2,\\\"vehicleType\\\":\\\"\\\"},{\\\"currentLocation\\\":\\\"01-01-07-01\\\",\\\"isEmpty\\\":1,\\\"lastInTime\\\":\\\"2024-08-02 10:28:46\\\",\\\"vehicleId\\\":\\\"ASRS000009\\\",\\\"vehicleStatus\\\":2,\\\"vehicleType\\\":\\\"\\\"},{\\\"currentLocation\\\":\\\"06-01-03-01\\\",\\\"isEmpty\\\":1,\\\"lastInTime\\\":\\\"2024-08-02 10:23:45\\\",\\\"vehicleId\\\":\\\"ASRS000010\\\",\\\"vehicleStatus\\\":2,\\\"vehicleType\\\":\\\"\\\"}],\\\"pages\\\":18,\\\"total\\\":175}}\"', '192.168.8.93', '2024-08-04 20:54:18', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408042055308611722776130861', '查询载具信息', 'getVehiclesByPage', '[{\"isAsc\": true, \"pageNo\": 1, \"sortBy\": \"\", \"isEmpty\": null, \"pageSize\": 10, \"vehicleId\": \"\", \"vehicleType\": \"\", \"vehicleStatus\": null, \"currentLocation\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"查询成功\\\",\\\"returnData\\\":{\\\"lists\\\":[{\\\"currentLocation\\\":\\\"04-01-01-01\\\",\\\"isEmpty\\\":0,\\\"lastInTime\\\":\\\"2024-08-02 09:39:49\\\",\\\"vehicleId\\\":\\\"ASRS000001\\\",\\\"vehicleStatus\\\":2,\\\"vehicleType\\\":\\\"\\\"},{\\\"currentLocation\\\":\\\"07-01-02-01\\\",\\\"isEmpty\\\":1,\\\"lastInTime\\\":\\\"2024-08-02 10:22:20\\\",\\\"vehicleId\\\":\\\"ASRS000002\\\",\\\"vehicleStatus\\\":2,\\\"vehicleType\\\":\\\"\\\"},{\\\"currentLocation\\\":\\\"03-01-03-01\\\",\\\"isEmpty\\\":1,\\\"lastInTime\\\":\\\"2024-08-02 10:26:36\\\",\\\"vehicleId\\\":\\\"ASRS000003\\\",\\\"vehicleStatus\\\":2,\\\"vehicleType\\\":\\\"\\\"},{\\\"currentLocation\\\":\\\"01-01-06-01\\\",\\\"isEmpty\\\":1,\\\"lastInTime\\\":\\\"2024-08-02 10:25:48\\\",\\\"vehicleId\\\":\\\"ASRS000004\\\",\\\"vehicleStatus\\\":2,\\\"vehicleType\\\":\\\"\\\"},{\\\"currentLocation\\\":\\\"06-01-04-01\\\",\\\"isEmpty\\\":1,\\\"lastInTime\\\":\\\"2024-08-02 10:24:52\\\",\\\"vehicleId\\\":\\\"ASRS000005\\\",\\\"vehicleStatus\\\":2,\\\"vehicleType\\\":\\\"\\\"},{\\\"currentLocation\\\":\\\"08-01-03-01\\\",\\\"isEmpty\\\":1,\\\"lastInTime\\\":\\\"2024-08-02 10:23:47\\\",\\\"vehicleId\\\":\\\"ASRS000006\\\",\\\"vehicleStatus\\\":2,\\\"vehicleType\\\":\\\"\\\"},{\\\"currentLocation\\\":\\\"05-01-04-01\\\",\\\"isEmpty\\\":1,\\\"lastInTime\\\":\\\"2024-08-02 10:27:08\\\",\\\"vehicleId\\\":\\\"ASRS000007\\\",\\\"vehicleStatus\\\":2,\\\"vehicleType\\\":\\\"\\\"},{\\\"currentLocation\\\":\\\"04-01-03-01\\\",\\\"isEmpty\\\":1,\\\"lastInTime\\\":\\\"2024-08-02 10:23:17\\\",\\\"vehicleId\\\":\\\"ASRS000008\\\",\\\"vehicleStatus\\\":2,\\\"vehicleType\\\":\\\"\\\"},{\\\"currentLocation\\\":\\\"01-01-07-01\\\",\\\"isEmpty\\\":1,\\\"lastInTime\\\":\\\"2024-08-02 10:28:46\\\",\\\"vehicleId\\\":\\\"ASRS000009\\\",\\\"vehicleStatus\\\":2,\\\"vehicleType\\\":\\\"\\\"},{\\\"currentLocation\\\":\\\"06-01-03-01\\\",\\\"isEmpty\\\":1,\\\"lastInTime\\\":\\\"2024-08-02 10:23:45\\\",\\\"vehicleId\\\":\\\"ASRS000010\\\",\\\"vehicleStatus\\\":2,\\\"vehicleType\\\":\\\"\\\"}],\\\"pages\\\":18,\\\"total\\\":175}}\"', '192.168.8.93', '2024-08-04 20:55:31', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408042055310131722776131013', '查询载具信息', 'getVehiclesByPage', '[{\"isAsc\": true, \"pageNo\": 1, \"sortBy\": \"\", \"isEmpty\": null, \"pageSize\": 10, \"vehicleId\": \"\", \"vehicleType\": \"\", \"vehicleStatus\": null, \"currentLocation\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"查询成功\\\",\\\"returnData\\\":{\\\"lists\\\":[{\\\"currentLocation\\\":\\\"04-01-01-01\\\",\\\"isEmpty\\\":0,\\\"lastInTime\\\":\\\"2024-08-02 09:39:49\\\",\\\"vehicleId\\\":\\\"ASRS000001\\\",\\\"vehicleStatus\\\":2,\\\"vehicleType\\\":\\\"\\\"},{\\\"currentLocation\\\":\\\"07-01-02-01\\\",\\\"isEmpty\\\":1,\\\"lastInTime\\\":\\\"2024-08-02 10:22:20\\\",\\\"vehicleId\\\":\\\"ASRS000002\\\",\\\"vehicleStatus\\\":2,\\\"vehicleType\\\":\\\"\\\"},{\\\"currentLocation\\\":\\\"03-01-03-01\\\",\\\"isEmpty\\\":1,\\\"lastInTime\\\":\\\"2024-08-02 10:26:36\\\",\\\"vehicleId\\\":\\\"ASRS000003\\\",\\\"vehicleStatus\\\":2,\\\"vehicleType\\\":\\\"\\\"},{\\\"currentLocation\\\":\\\"01-01-06-01\\\",\\\"isEmpty\\\":1,\\\"lastInTime\\\":\\\"2024-08-02 10:25:48\\\",\\\"vehicleId\\\":\\\"ASRS000004\\\",\\\"vehicleStatus\\\":2,\\\"vehicleType\\\":\\\"\\\"},{\\\"currentLocation\\\":\\\"06-01-04-01\\\",\\\"isEmpty\\\":1,\\\"lastInTime\\\":\\\"2024-08-02 10:24:52\\\",\\\"vehicleId\\\":\\\"ASRS000005\\\",\\\"vehicleStatus\\\":2,\\\"vehicleType\\\":\\\"\\\"},{\\\"currentLocation\\\":\\\"08-01-03-01\\\",\\\"isEmpty\\\":1,\\\"lastInTime\\\":\\\"2024-08-02 10:23:47\\\",\\\"vehicleId\\\":\\\"ASRS000006\\\",\\\"vehicleStatus\\\":2,\\\"vehicleType\\\":\\\"\\\"},{\\\"currentLocation\\\":\\\"05-01-04-01\\\",\\\"isEmpty\\\":1,\\\"lastInTime\\\":\\\"2024-08-02 10:27:08\\\",\\\"vehicleId\\\":\\\"ASRS000007\\\",\\\"vehicleStatus\\\":2,\\\"vehicleType\\\":\\\"\\\"},{\\\"currentLocation\\\":\\\"04-01-03-01\\\",\\\"isEmpty\\\":1,\\\"lastInTime\\\":\\\"2024-08-02 10:23:17\\\",\\\"vehicleId\\\":\\\"ASRS000008\\\",\\\"vehicleStatus\\\":2,\\\"vehicleType\\\":\\\"\\\"},{\\\"currentLocation\\\":\\\"01-01-07-01\\\",\\\"isEmpty\\\":1,\\\"lastInTime\\\":\\\"2024-08-02 10:28:46\\\",\\\"vehicleId\\\":\\\"ASRS000009\\\",\\\"vehicleStatus\\\":2,\\\"vehicleType\\\":\\\"\\\"},{\\\"currentLocation\\\":\\\"06-01-03-01\\\",\\\"isEmpty\\\":1,\\\"lastInTime\\\":\\\"2024-08-02 10:23:45\\\",\\\"vehicleId\\\":\\\"ASRS000010\\\",\\\"vehicleStatus\\\":2,\\\"vehicleType\\\":\\\"\\\"}],\\\"pages\\\":18,\\\"total\\\":175}}\"', '192.168.8.93', '2024-08-04 20:55:31', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408042055342821722776134282', '查询载具信息', 'getVehiclesByPage', '[{\"isAsc\": true, \"pageNo\": 1, \"sortBy\": \"\", \"isEmpty\": null, \"pageSize\": 10, \"vehicleId\": \"ASRS000001\", \"vehicleType\": \"\", \"vehicleStatus\": null, \"currentLocation\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"查询成功\\\",\\\"returnData\\\":{\\\"lists\\\":[{\\\"currentLocation\\\":\\\"04-01-01-01\\\",\\\"isEmpty\\\":0,\\\"lastInTime\\\":\\\"2024-08-02 09:39:49\\\",\\\"vehicleId\\\":\\\"ASRS000001\\\",\\\"vehicleStatus\\\":2,\\\"vehicleType\\\":\\\"\\\"}],\\\"pages\\\":1,\\\"total\\\":1}}\"', '192.168.8.93', '2024-08-04 20:55:34', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408042055350101722776135010', '查询载具信息', 'getVehiclesByPage', '[{\"isAsc\": true, \"pageNo\": 1, \"sortBy\": \"\", \"isEmpty\": null, \"pageSize\": 10, \"vehicleId\": \"ASRS000001\", \"vehicleType\": \"\", \"vehicleStatus\": null, \"currentLocation\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"查询成功\\\",\\\"returnData\\\":{\\\"lists\\\":[{\\\"currentLocation\\\":\\\"04-01-01-01\\\",\\\"isEmpty\\\":0,\\\"lastInTime\\\":\\\"2024-08-02 09:39:49\\\",\\\"vehicleId\\\":\\\"ASRS000001\\\",\\\"vehicleStatus\\\":2,\\\"vehicleType\\\":\\\"\\\"}],\\\"pages\\\":1,\\\"total\\\":1}}\"', '192.168.8.93', '2024-08-04 20:55:35', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408042055352091722776135209', '查询载具信息', 'getVehiclesByPage', '[{\"isAsc\": true, \"pageNo\": 1, \"sortBy\": \"\", \"isEmpty\": null, \"pageSize\": 10, \"vehicleId\": \"ASRS000001\", \"vehicleType\": \"\", \"vehicleStatus\": null, \"currentLocation\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"查询成功\\\",\\\"returnData\\\":{\\\"lists\\\":[{\\\"currentLocation\\\":\\\"04-01-01-01\\\",\\\"isEmpty\\\":0,\\\"lastInTime\\\":\\\"2024-08-02 09:39:49\\\",\\\"vehicleId\\\":\\\"ASRS000001\\\",\\\"vehicleStatus\\\":2,\\\"vehicleType\\\":\\\"\\\"}],\\\"pages\\\":1,\\\"total\\\":1}}\"', '192.168.8.93', '2024-08-04 20:55:35', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408042055376431722776137643', '查询载具信息', 'getVehiclesByPage', '[{\"isAsc\": true, \"pageNo\": 1, \"sortBy\": \"\", \"isEmpty\": null, \"pageSize\": 10, \"vehicleId\": \"ASRS00000\", \"vehicleType\": \"\", \"vehicleStatus\": null, \"currentLocation\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"查询成功\\\",\\\"returnData\\\":{\\\"lists\\\":[{\\\"currentLocation\\\":\\\"04-01-01-01\\\",\\\"isEmpty\\\":0,\\\"lastInTime\\\":\\\"2024-08-02 09:39:49\\\",\\\"vehicleId\\\":\\\"ASRS000001\\\",\\\"vehicleStatus\\\":2,\\\"vehicleType\\\":\\\"\\\"},{\\\"currentLocation\\\":\\\"07-01-02-01\\\",\\\"isEmpty\\\":1,\\\"lastInTime\\\":\\\"2024-08-02 10:22:20\\\",\\\"vehicleId\\\":\\\"ASRS000002\\\",\\\"vehicleStatus\\\":2,\\\"vehicleType\\\":\\\"\\\"},{\\\"currentLocation\\\":\\\"03-01-03-01\\\",\\\"isEmpty\\\":1,\\\"lastInTime\\\":\\\"2024-08-02 10:26:36\\\",\\\"vehicleId\\\":\\\"ASRS000003\\\",\\\"vehicleStatus\\\":2,\\\"vehicleType\\\":\\\"\\\"},{\\\"currentLocation\\\":\\\"01-01-06-01\\\",\\\"isEmpty\\\":1,\\\"lastInTime\\\":\\\"2024-08-02 10:25:48\\\",\\\"vehicleId\\\":\\\"ASRS000004\\\",\\\"vehicleStatus\\\":2,\\\"vehicleType\\\":\\\"\\\"},{\\\"currentLocation\\\":\\\"06-01-04-01\\\",\\\"isEmpty\\\":1,\\\"lastInTime\\\":\\\"2024-08-02 10:24:52\\\",\\\"vehicleId\\\":\\\"ASRS000005\\\",\\\"vehicleStatus\\\":2,\\\"vehicleType\\\":\\\"\\\"},{\\\"currentLocation\\\":\\\"08-01-03-01\\\",\\\"isEmpty\\\":1,\\\"lastInTime\\\":\\\"2024-08-02 10:23:47\\\",\\\"vehicleId\\\":\\\"ASRS000006\\\",\\\"vehicleStatus\\\":2,\\\"vehicleType\\\":\\\"\\\"},{\\\"currentLocation\\\":\\\"05-01-04-01\\\",\\\"isEmpty\\\":1,\\\"lastInTime\\\":\\\"2024-08-02 10:27:08\\\",\\\"vehicleId\\\":\\\"ASRS000007\\\",\\\"vehicleStatus\\\":2,\\\"vehicleType\\\":\\\"\\\"},{\\\"currentLocation\\\":\\\"04-01-03-01\\\",\\\"isEmpty\\\":1,\\\"lastInTime\\\":\\\"2024-08-02 10:23:17\\\",\\\"vehicleId\\\":\\\"ASRS000008\\\",\\\"vehicleStatus\\\":2,\\\"vehicleType\\\":\\\"\\\"},{\\\"currentLocation\\\":\\\"01-01-07-01\\\",\\\"isEmpty\\\":1,\\\"lastInTime\\\":\\\"2024-08-02 10:28:46\\\",\\\"vehicleId\\\":\\\"ASRS000009\\\",\\\"vehicleStatus\\\":2,\\\"vehicleType\\\":\\\"\\\"}],\\\"pages\\\":1,\\\"total\\\":9}}\"', '192.168.8.93', '2024-08-04 20:55:38', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408042055378311722776137831', '查询载具信息', 'getVehiclesByPage', '[{\"isAsc\": true, \"pageNo\": 1, \"sortBy\": \"\", \"isEmpty\": null, \"pageSize\": 10, \"vehicleId\": \"ASRS00000\", \"vehicleType\": \"\", \"vehicleStatus\": null, \"currentLocation\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"查询成功\\\",\\\"returnData\\\":{\\\"lists\\\":[{\\\"currentLocation\\\":\\\"04-01-01-01\\\",\\\"isEmpty\\\":0,\\\"lastInTime\\\":\\\"2024-08-02 09:39:49\\\",\\\"vehicleId\\\":\\\"ASRS000001\\\",\\\"vehicleStatus\\\":2,\\\"vehicleType\\\":\\\"\\\"},{\\\"currentLocation\\\":\\\"07-01-02-01\\\",\\\"isEmpty\\\":1,\\\"lastInTime\\\":\\\"2024-08-02 10:22:20\\\",\\\"vehicleId\\\":\\\"ASRS000002\\\",\\\"vehicleStatus\\\":2,\\\"vehicleType\\\":\\\"\\\"},{\\\"currentLocation\\\":\\\"03-01-03-01\\\",\\\"isEmpty\\\":1,\\\"lastInTime\\\":\\\"2024-08-02 10:26:36\\\",\\\"vehicleId\\\":\\\"ASRS000003\\\",\\\"vehicleStatus\\\":2,\\\"vehicleType\\\":\\\"\\\"},{\\\"currentLocation\\\":\\\"01-01-06-01\\\",\\\"isEmpty\\\":1,\\\"lastInTime\\\":\\\"2024-08-02 10:25:48\\\",\\\"vehicleId\\\":\\\"ASRS000004\\\",\\\"vehicleStatus\\\":2,\\\"vehicleType\\\":\\\"\\\"},{\\\"currentLocation\\\":\\\"06-01-04-01\\\",\\\"isEmpty\\\":1,\\\"lastInTime\\\":\\\"2024-08-02 10:24:52\\\",\\\"vehicleId\\\":\\\"ASRS000005\\\",\\\"vehicleStatus\\\":2,\\\"vehicleType\\\":\\\"\\\"},{\\\"currentLocation\\\":\\\"08-01-03-01\\\",\\\"isEmpty\\\":1,\\\"lastInTime\\\":\\\"2024-08-02 10:23:47\\\",\\\"vehicleId\\\":\\\"ASRS000006\\\",\\\"vehicleStatus\\\":2,\\\"vehicleType\\\":\\\"\\\"},{\\\"currentLocation\\\":\\\"05-01-04-01\\\",\\\"isEmpty\\\":1,\\\"lastInTime\\\":\\\"2024-08-02 10:27:08\\\",\\\"vehicleId\\\":\\\"ASRS000007\\\",\\\"vehicleStatus\\\":2,\\\"vehicleType\\\":\\\"\\\"},{\\\"currentLocation\\\":\\\"04-01-03-01\\\",\\\"isEmpty\\\":1,\\\"lastInTime\\\":\\\"2024-08-02 10:23:17\\\",\\\"vehicleId\\\":\\\"ASRS000008\\\",\\\"vehicleStatus\\\":2,\\\"vehicleType\\\":\\\"\\\"},{\\\"currentLocation\\\":\\\"01-01-07-01\\\",\\\"isEmpty\\\":1,\\\"lastInTime\\\":\\\"2024-08-02 10:28:46\\\",\\\"vehicleId\\\":\\\"ASRS000009\\\",\\\"vehicleStatus\\\":2,\\\"vehicleType\\\":\\\"\\\"}],\\\"pages\\\":1,\\\"total\\\":9}}\"', '192.168.8.93', '2024-08-04 20:55:38', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408042055418861722776141886', '查询载具信息', 'getVehiclesByPage', '[{\"isAsc\": true, \"pageNo\": 1, \"sortBy\": \"\", \"isEmpty\": null, \"pageSize\": 10, \"vehicleId\": \"\", \"vehicleType\": \"\", \"vehicleStatus\": null, \"currentLocation\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"查询成功\\\",\\\"returnData\\\":{\\\"lists\\\":[{\\\"currentLocation\\\":\\\"04-01-01-01\\\",\\\"isEmpty\\\":0,\\\"lastInTime\\\":\\\"2024-08-02 09:39:49\\\",\\\"vehicleId\\\":\\\"ASRS000001\\\",\\\"vehicleStatus\\\":2,\\\"vehicleType\\\":\\\"\\\"},{\\\"currentLocation\\\":\\\"07-01-02-01\\\",\\\"isEmpty\\\":1,\\\"lastInTime\\\":\\\"2024-08-02 10:22:20\\\",\\\"vehicleId\\\":\\\"ASRS000002\\\",\\\"vehicleStatus\\\":2,\\\"vehicleType\\\":\\\"\\\"},{\\\"currentLocation\\\":\\\"03-01-03-01\\\",\\\"isEmpty\\\":1,\\\"lastInTime\\\":\\\"2024-08-02 10:26:36\\\",\\\"vehicleId\\\":\\\"ASRS000003\\\",\\\"vehicleStatus\\\":2,\\\"vehicleType\\\":\\\"\\\"},{\\\"currentLocation\\\":\\\"01-01-06-01\\\",\\\"isEmpty\\\":1,\\\"lastInTime\\\":\\\"2024-08-02 10:25:48\\\",\\\"vehicleId\\\":\\\"ASRS000004\\\",\\\"vehicleStatus\\\":2,\\\"vehicleType\\\":\\\"\\\"},{\\\"currentLocation\\\":\\\"06-01-04-01\\\",\\\"isEmpty\\\":1,\\\"lastInTime\\\":\\\"2024-08-02 10:24:52\\\",\\\"vehicleId\\\":\\\"ASRS000005\\\",\\\"vehicleStatus\\\":2,\\\"vehicleType\\\":\\\"\\\"},{\\\"currentLocation\\\":\\\"08-01-03-01\\\",\\\"isEmpty\\\":1,\\\"lastInTime\\\":\\\"2024-08-02 10:23:47\\\",\\\"vehicleId\\\":\\\"ASRS000006\\\",\\\"vehicleStatus\\\":2,\\\"vehicleType\\\":\\\"\\\"},{\\\"currentLocation\\\":\\\"05-01-04-01\\\",\\\"isEmpty\\\":1,\\\"lastInTime\\\":\\\"2024-08-02 10:27:08\\\",\\\"vehicleId\\\":\\\"ASRS000007\\\",\\\"vehicleStatus\\\":2,\\\"vehicleType\\\":\\\"\\\"},{\\\"currentLocation\\\":\\\"04-01-03-01\\\",\\\"isEmpty\\\":1,\\\"lastInTime\\\":\\\"2024-08-02 10:23:17\\\",\\\"vehicleId\\\":\\\"ASRS000008\\\",\\\"vehicleStatus\\\":2,\\\"vehicleType\\\":\\\"\\\"},{\\\"currentLocation\\\":\\\"01-01-07-01\\\",\\\"isEmpty\\\":1,\\\"lastInTime\\\":\\\"2024-08-02 10:28:46\\\",\\\"vehicleId\\\":\\\"ASRS000009\\\",\\\"vehicleStatus\\\":2,\\\"vehicleType\\\":\\\"\\\"},{\\\"currentLocation\\\":\\\"06-01-03-01\\\",\\\"isEmpty\\\":1,\\\"lastInTime\\\":\\\"2024-08-02 10:23:45\\\",\\\"vehicleId\\\":\\\"ASRS000010\\\",\\\"vehicleStatus\\\":2,\\\"vehicleType\\\":\\\"\\\"}],\\\"pages\\\":18,\\\"total\\\":175}}\"', '192.168.8.93', '2024-08-04 20:55:42', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408042055421051722776142105', '查询载具信息', 'getVehiclesByPage', '[{\"isAsc\": true, \"pageNo\": 1, \"sortBy\": \"\", \"isEmpty\": null, \"pageSize\": 10, \"vehicleId\": \"\", \"vehicleType\": \"\", \"vehicleStatus\": null, \"currentLocation\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"查询成功\\\",\\\"returnData\\\":{\\\"lists\\\":[{\\\"currentLocation\\\":\\\"04-01-01-01\\\",\\\"isEmpty\\\":0,\\\"lastInTime\\\":\\\"2024-08-02 09:39:49\\\",\\\"vehicleId\\\":\\\"ASRS000001\\\",\\\"vehicleStatus\\\":2,\\\"vehicleType\\\":\\\"\\\"},{\\\"currentLocation\\\":\\\"07-01-02-01\\\",\\\"isEmpty\\\":1,\\\"lastInTime\\\":\\\"2024-08-02 10:22:20\\\",\\\"vehicleId\\\":\\\"ASRS000002\\\",\\\"vehicleStatus\\\":2,\\\"vehicleType\\\":\\\"\\\"},{\\\"currentLocation\\\":\\\"03-01-03-01\\\",\\\"isEmpty\\\":1,\\\"lastInTime\\\":\\\"2024-08-02 10:26:36\\\",\\\"vehicleId\\\":\\\"ASRS000003\\\",\\\"vehicleStatus\\\":2,\\\"vehicleType\\\":\\\"\\\"},{\\\"currentLocation\\\":\\\"01-01-06-01\\\",\\\"isEmpty\\\":1,\\\"lastInTime\\\":\\\"2024-08-02 10:25:48\\\",\\\"vehicleId\\\":\\\"ASRS000004\\\",\\\"vehicleStatus\\\":2,\\\"vehicleType\\\":\\\"\\\"},{\\\"currentLocation\\\":\\\"06-01-04-01\\\",\\\"isEmpty\\\":1,\\\"lastInTime\\\":\\\"2024-08-02 10:24:52\\\",\\\"vehicleId\\\":\\\"ASRS000005\\\",\\\"vehicleStatus\\\":2,\\\"vehicleType\\\":\\\"\\\"},{\\\"currentLocation\\\":\\\"08-01-03-01\\\",\\\"isEmpty\\\":1,\\\"lastInTime\\\":\\\"2024-08-02 10:23:47\\\",\\\"vehicleId\\\":\\\"ASRS000006\\\",\\\"vehicleStatus\\\":2,\\\"vehicleType\\\":\\\"\\\"},{\\\"currentLocation\\\":\\\"05-01-04-01\\\",\\\"isEmpty\\\":1,\\\"lastInTime\\\":\\\"2024-08-02 10:27:08\\\",\\\"vehicleId\\\":\\\"ASRS000007\\\",\\\"vehicleStatus\\\":2,\\\"vehicleType\\\":\\\"\\\"},{\\\"currentLocation\\\":\\\"04-01-03-01\\\",\\\"isEmpty\\\":1,\\\"lastInTime\\\":\\\"2024-08-02 10:23:17\\\",\\\"vehicleId\\\":\\\"ASRS000008\\\",\\\"vehicleStatus\\\":2,\\\"vehicleType\\\":\\\"\\\"},{\\\"currentLocation\\\":\\\"01-01-07-01\\\",\\\"isEmpty\\\":1,\\\"lastInTime\\\":\\\"2024-08-02 10:28:46\\\",\\\"vehicleId\\\":\\\"ASRS000009\\\",\\\"vehicleStatus\\\":2,\\\"vehicleType\\\":\\\"\\\"},{\\\"currentLocation\\\":\\\"06-01-03-01\\\",\\\"isEmpty\\\":1,\\\"lastInTime\\\":\\\"2024-08-02 10:23:45\\\",\\\"vehicleId\\\":\\\"ASRS000010\\\",\\\"vehicleStatus\\\":2,\\\"vehicleType\\\":\\\"\\\"}],\\\"pages\\\":18,\\\"total\\\":175}}\"', '192.168.8.93', '2024-08-04 20:55:42', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408042055448871722776144887', '查询载具信息', 'getVehiclesByPage', '[{\"isAsc\": true, \"pageNo\": 18, \"sortBy\": \"\", \"isEmpty\": null, \"pageSize\": 10, \"vehicleId\": \"\", \"vehicleType\": \"\", \"vehicleStatus\": null, \"currentLocation\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"查询成功\\\",\\\"returnData\\\":{\\\"lists\\\":[{\\\"currentLocation\\\":\\\"05-01-18-01\\\",\\\"isEmpty\\\":0,\\\"lastInTime\\\":\\\"2024-08-02 13:57:03\\\",\\\"vehicleId\\\":\\\"ASRS000196\\\",\\\"vehicleStatus\\\":2,\\\"vehicleType\\\":\\\"\\\"},{\\\"currentLocation\\\":\\\"03-01-12-01\\\",\\\"isEmpty\\\":1,\\\"lastInTime\\\":\\\"2024-08-02 13:07:19\\\",\\\"vehicleId\\\":\\\"ASRS000197\\\",\\\"vehicleStatus\\\":2,\\\"vehicleType\\\":\\\"\\\"},{\\\"currentLocation\\\":\\\"01-01-17-01\\\",\\\"isEmpty\\\":1,\\\"lastInTime\\\":\\\"2024-08-02 12:44:40\\\",\\\"vehicleId\\\":\\\"ASRS000198\\\",\\\"vehicleStatus\\\":2,\\\"vehicleType\\\":\\\"\\\"},{\\\"currentLocation\\\":\\\"07-01-10-01\\\",\\\"isEmpty\\\":1,\\\"lastInTime\\\":\\\"2024-08-02 13:14:07\\\",\\\"vehicleId\\\":\\\"ASRS000199\\\",\\\"vehicleStatus\\\":2,\\\"vehicleType\\\":\\\"\\\"},{\\\"currentLocation\\\":\\\"01-01-18-01\\\",\\\"isEmpty\\\":1,\\\"lastInTime\\\":\\\"2024-08-02 13:26:49\\\",\\\"vehicleId\\\":\\\"ASRS000200\\\",\\\"vehicleStatus\\\":2,\\\"vehicleType\\\":\\\"\\\"}],\\\"pages\\\":18,\\\"total\\\":175}}\"', '192.168.8.93', '2024-08-04 20:55:45', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408042055462291722776146229', '查询载具信息', 'getVehiclesByPage', '[{\"isAsc\": true, \"pageNo\": 1, \"sortBy\": \"\", \"isEmpty\": null, \"pageSize\": 10, \"vehicleId\": \"\", \"vehicleType\": \"\", \"vehicleStatus\": null, \"currentLocation\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"查询成功\\\",\\\"returnData\\\":{\\\"lists\\\":[{\\\"currentLocation\\\":\\\"04-01-01-01\\\",\\\"isEmpty\\\":0,\\\"lastInTime\\\":\\\"2024-08-02 09:39:49\\\",\\\"vehicleId\\\":\\\"ASRS000001\\\",\\\"vehicleStatus\\\":2,\\\"vehicleType\\\":\\\"\\\"},{\\\"currentLocation\\\":\\\"07-01-02-01\\\",\\\"isEmpty\\\":1,\\\"lastInTime\\\":\\\"2024-08-02 10:22:20\\\",\\\"vehicleId\\\":\\\"ASRS000002\\\",\\\"vehicleStatus\\\":2,\\\"vehicleType\\\":\\\"\\\"},{\\\"currentLocation\\\":\\\"03-01-03-01\\\",\\\"isEmpty\\\":1,\\\"lastInTime\\\":\\\"2024-08-02 10:26:36\\\",\\\"vehicleId\\\":\\\"ASRS000003\\\",\\\"vehicleStatus\\\":2,\\\"vehicleType\\\":\\\"\\\"},{\\\"currentLocation\\\":\\\"01-01-06-01\\\",\\\"isEmpty\\\":1,\\\"lastInTime\\\":\\\"2024-08-02 10:25:48\\\",\\\"vehicleId\\\":\\\"ASRS000004\\\",\\\"vehicleStatus\\\":2,\\\"vehicleType\\\":\\\"\\\"},{\\\"currentLocation\\\":\\\"06-01-04-01\\\",\\\"isEmpty\\\":1,\\\"lastInTime\\\":\\\"2024-08-02 10:24:52\\\",\\\"vehicleId\\\":\\\"ASRS000005\\\",\\\"vehicleStatus\\\":2,\\\"vehicleType\\\":\\\"\\\"},{\\\"currentLocation\\\":\\\"08-01-03-01\\\",\\\"isEmpty\\\":1,\\\"lastInTime\\\":\\\"2024-08-02 10:23:47\\\",\\\"vehicleId\\\":\\\"ASRS000006\\\",\\\"vehicleStatus\\\":2,\\\"vehicleType\\\":\\\"\\\"},{\\\"currentLocation\\\":\\\"05-01-04-01\\\",\\\"isEmpty\\\":1,\\\"lastInTime\\\":\\\"2024-08-02 10:27:08\\\",\\\"vehicleId\\\":\\\"ASRS000007\\\",\\\"vehicleStatus\\\":2,\\\"vehicleType\\\":\\\"\\\"},{\\\"currentLocation\\\":\\\"04-01-03-01\\\",\\\"isEmpty\\\":1,\\\"lastInTime\\\":\\\"2024-08-02 10:23:17\\\",\\\"vehicleId\\\":\\\"ASRS000008\\\",\\\"vehicleStatus\\\":2,\\\"vehicleType\\\":\\\"\\\"},{\\\"currentLocation\\\":\\\"01-01-07-01\\\",\\\"isEmpty\\\":1,\\\"lastInTime\\\":\\\"2024-08-02 10:28:46\\\",\\\"vehicleId\\\":\\\"ASRS000009\\\",\\\"vehicleStatus\\\":2,\\\"vehicleType\\\":\\\"\\\"},{\\\"currentLocation\\\":\\\"06-01-03-01\\\",\\\"isEmpty\\\":1,\\\"lastInTime\\\":\\\"2024-08-02 10:23:45\\\",\\\"vehicleId\\\":\\\"ASRS000010\\\",\\\"vehicleStatus\\\":2,\\\"vehicleType\\\":\\\"\\\"}],\\\"pages\\\":18,\\\"total\\\":175}}\"', '192.168.8.93', '2024-08-04 20:55:46', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408042154491101722779689110', '查询载具信息', 'getVehiclesByPage', '[{\"isAsc\": true, \"pageNo\": 1, \"sortBy\": \"\", \"isEmpty\": null, \"pageSize\": 10, \"vehicleId\": \"\", \"vehicleType\": \"\", \"vehicleStatus\": null, \"currentLocation\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"查询成功\\\",\\\"returnData\\\":{\\\"lists\\\":[{\\\"currentLocation\\\":\\\"04-01-01-01\\\",\\\"isEmpty\\\":0,\\\"lastInTime\\\":\\\"2024-08-02 09:39:49\\\",\\\"vehicleId\\\":\\\"ASRS000001\\\",\\\"vehicleStatus\\\":2,\\\"vehicleType\\\":\\\"\\\"},{\\\"currentLocation\\\":\\\"07-01-02-01\\\",\\\"isEmpty\\\":1,\\\"lastInTime\\\":\\\"2024-08-02 10:22:20\\\",\\\"vehicleId\\\":\\\"ASRS000002\\\",\\\"vehicleStatus\\\":2,\\\"vehicleType\\\":\\\"\\\"},{\\\"currentLocation\\\":\\\"03-01-03-01\\\",\\\"isEmpty\\\":1,\\\"lastInTime\\\":\\\"2024-08-02 10:26:36\\\",\\\"vehicleId\\\":\\\"ASRS000003\\\",\\\"vehicleStatus\\\":2,\\\"vehicleType\\\":\\\"\\\"},{\\\"currentLocation\\\":\\\"01-01-06-01\\\",\\\"isEmpty\\\":1,\\\"lastInTime\\\":\\\"2024-08-02 10:25:48\\\",\\\"vehicleId\\\":\\\"ASRS000004\\\",\\\"vehicleStatus\\\":2,\\\"vehicleType\\\":\\\"\\\"},{\\\"currentLocation\\\":\\\"06-01-04-01\\\",\\\"isEmpty\\\":1,\\\"lastInTime\\\":\\\"2024-08-02 10:24:52\\\",\\\"vehicleId\\\":\\\"ASRS000005\\\",\\\"vehicleStatus\\\":2,\\\"vehicleType\\\":\\\"\\\"},{\\\"currentLocation\\\":\\\"08-01-03-01\\\",\\\"isEmpty\\\":1,\\\"lastInTime\\\":\\\"2024-08-02 10:23:47\\\",\\\"vehicleId\\\":\\\"ASRS000006\\\",\\\"vehicleStatus\\\":2,\\\"vehicleType\\\":\\\"\\\"},{\\\"currentLocation\\\":\\\"05-01-04-01\\\",\\\"isEmpty\\\":1,\\\"lastInTime\\\":\\\"2024-08-02 10:27:08\\\",\\\"vehicleId\\\":\\\"ASRS000007\\\",\\\"vehicleStatus\\\":2,\\\"vehicleType\\\":\\\"\\\"},{\\\"currentLocation\\\":\\\"04-01-03-01\\\",\\\"isEmpty\\\":1,\\\"lastInTime\\\":\\\"2024-08-02 10:23:17\\\",\\\"vehicleId\\\":\\\"ASRS000008\\\",\\\"vehicleStatus\\\":2,\\\"vehicleType\\\":\\\"\\\"},{\\\"currentLocation\\\":\\\"01-01-07-01\\\",\\\"isEmpty\\\":1,\\\"lastInTime\\\":\\\"2024-08-02 10:28:46\\\",\\\"vehicleId\\\":\\\"ASRS000009\\\",\\\"vehicleStatus\\\":2,\\\"vehicleType\\\":\\\"\\\"},{\\\"currentLocation\\\":\\\"06-01-03-01\\\",\\\"isEmpty\\\":1,\\\"lastInTime\\\":\\\"2024-08-02 10:23:45\\\",\\\"vehicleId\\\":\\\"ASRS000010\\\",\\\"vehicleStatus\\\":2,\\\"vehicleType\\\":\\\"\\\"}],\\\"pages\\\":18,\\\"total\\\":175}}\"', '192.168.8.93', '2024-08-04 21:54:49', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408042234157701722782055770', '查询载具信息', 'getVehiclesByPage', '[{\"isAsc\": true, \"pageNo\": 1, \"sortBy\": \"\", \"isEmpty\": null, \"pageSize\": 10, \"vehicleId\": \"\", \"vehicleType\": \"\", \"vehicleStatus\": null, \"currentLocation\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"查询成功\\\",\\\"returnData\\\":{\\\"lists\\\":[{\\\"currentLocation\\\":\\\"04-01-01-01\\\",\\\"isEmpty\\\":0,\\\"lastInTime\\\":\\\"2024-08-02 09:39:49\\\",\\\"vehicleId\\\":\\\"ASRS000001\\\",\\\"vehicleStatus\\\":2,\\\"vehicleType\\\":\\\"\\\"},{\\\"currentLocation\\\":\\\"07-01-02-01\\\",\\\"isEmpty\\\":1,\\\"lastInTime\\\":\\\"2024-08-02 10:22:20\\\",\\\"vehicleId\\\":\\\"ASRS000002\\\",\\\"vehicleStatus\\\":2,\\\"vehicleType\\\":\\\"\\\"},{\\\"currentLocation\\\":\\\"03-01-03-01\\\",\\\"isEmpty\\\":1,\\\"lastInTime\\\":\\\"2024-08-02 10:26:36\\\",\\\"vehicleId\\\":\\\"ASRS000003\\\",\\\"vehicleStatus\\\":2,\\\"vehicleType\\\":\\\"\\\"},{\\\"currentLocation\\\":\\\"01-01-06-01\\\",\\\"isEmpty\\\":1,\\\"lastInTime\\\":\\\"2024-08-02 10:25:48\\\",\\\"vehicleId\\\":\\\"ASRS000004\\\",\\\"vehicleStatus\\\":2,\\\"vehicleType\\\":\\\"\\\"},{\\\"currentLocation\\\":\\\"06-01-04-01\\\",\\\"isEmpty\\\":1,\\\"lastInTime\\\":\\\"2024-08-02 10:24:52\\\",\\\"vehicleId\\\":\\\"ASRS000005\\\",\\\"vehicleStatus\\\":2,\\\"vehicleType\\\":\\\"\\\"},{\\\"currentLocation\\\":\\\"08-01-03-01\\\",\\\"isEmpty\\\":1,\\\"lastInTime\\\":\\\"2024-08-02 10:23:47\\\",\\\"vehicleId\\\":\\\"ASRS000006\\\",\\\"vehicleStatus\\\":2,\\\"vehicleType\\\":\\\"\\\"},{\\\"currentLocation\\\":\\\"05-01-04-01\\\",\\\"isEmpty\\\":1,\\\"lastInTime\\\":\\\"2024-08-02 10:27:08\\\",\\\"vehicleId\\\":\\\"ASRS000007\\\",\\\"vehicleStatus\\\":2,\\\"vehicleType\\\":\\\"\\\"},{\\\"currentLocation\\\":\\\"04-01-03-01\\\",\\\"isEmpty\\\":1,\\\"lastInTime\\\":\\\"2024-08-02 10:23:17\\\",\\\"vehicleId\\\":\\\"ASRS000008\\\",\\\"vehicleStatus\\\":2,\\\"vehicleType\\\":\\\"\\\"},{\\\"currentLocation\\\":\\\"01-01-07-01\\\",\\\"isEmpty\\\":1,\\\"lastInTime\\\":\\\"2024-08-02 10:28:46\\\",\\\"vehicleId\\\":\\\"ASRS000009\\\",\\\"vehicleStatus\\\":2,\\\"vehicleType\\\":\\\"\\\"},{\\\"currentLocation\\\":\\\"06-01-03-01\\\",\\\"isEmpty\\\":1,\\\"lastInTime\\\":\\\"2024-08-02 10:23:45\\\",\\\"vehicleId\\\":\\\"ASRS000010\\\",\\\"vehicleStatus\\\":2,\\\"vehicleType\\\":\\\"\\\"}],\\\"pages\\\":18,\\\"total\\\":175}}\"', '192.168.8.93', '2024-08-04 22:34:16', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408042235289551722782128955', '查询载具信息', 'getVehiclesByPage', '[{\"isAsc\": true, \"pageNo\": 1, \"sortBy\": \"\", \"isEmpty\": null, \"pageSize\": 10, \"vehicleId\": \"\", \"vehicleType\": \"\", \"vehicleStatus\": null, \"currentLocation\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"查询成功\\\",\\\"returnData\\\":{\\\"lists\\\":[{\\\"currentLocation\\\":\\\"04-01-01-01\\\",\\\"isEmpty\\\":0,\\\"lastInTime\\\":\\\"2024-08-02 09:39:49\\\",\\\"vehicleId\\\":\\\"ASRS000001\\\",\\\"vehicleStatus\\\":2,\\\"vehicleType\\\":\\\"\\\"},{\\\"currentLocation\\\":\\\"07-01-02-01\\\",\\\"isEmpty\\\":1,\\\"lastInTime\\\":\\\"2024-08-02 10:22:20\\\",\\\"vehicleId\\\":\\\"ASRS000002\\\",\\\"vehicleStatus\\\":2,\\\"vehicleType\\\":\\\"\\\"},{\\\"currentLocation\\\":\\\"03-01-03-01\\\",\\\"isEmpty\\\":1,\\\"lastInTime\\\":\\\"2024-08-02 10:26:36\\\",\\\"vehicleId\\\":\\\"ASRS000003\\\",\\\"vehicleStatus\\\":2,\\\"vehicleType\\\":\\\"\\\"},{\\\"currentLocation\\\":\\\"01-01-06-01\\\",\\\"isEmpty\\\":1,\\\"lastInTime\\\":\\\"2024-08-02 10:25:48\\\",\\\"vehicleId\\\":\\\"ASRS000004\\\",\\\"vehicleStatus\\\":2,\\\"vehicleType\\\":\\\"\\\"},{\\\"currentLocation\\\":\\\"06-01-04-01\\\",\\\"isEmpty\\\":1,\\\"lastInTime\\\":\\\"2024-08-02 10:24:52\\\",\\\"vehicleId\\\":\\\"ASRS000005\\\",\\\"vehicleStatus\\\":2,\\\"vehicleType\\\":\\\"\\\"},{\\\"currentLocation\\\":\\\"08-01-03-01\\\",\\\"isEmpty\\\":1,\\\"lastInTime\\\":\\\"2024-08-02 10:23:47\\\",\\\"vehicleId\\\":\\\"ASRS000006\\\",\\\"vehicleStatus\\\":2,\\\"vehicleType\\\":\\\"\\\"},{\\\"currentLocation\\\":\\\"05-01-04-01\\\",\\\"isEmpty\\\":1,\\\"lastInTime\\\":\\\"2024-08-02 10:27:08\\\",\\\"vehicleId\\\":\\\"ASRS000007\\\",\\\"vehicleStatus\\\":2,\\\"vehicleType\\\":\\\"\\\"},{\\\"currentLocation\\\":\\\"04-01-03-01\\\",\\\"isEmpty\\\":1,\\\"lastInTime\\\":\\\"2024-08-02 10:23:17\\\",\\\"vehicleId\\\":\\\"ASRS000008\\\",\\\"vehicleStatus\\\":2,\\\"vehicleType\\\":\\\"\\\"},{\\\"currentLocation\\\":\\\"01-01-07-01\\\",\\\"isEmpty\\\":1,\\\"lastInTime\\\":\\\"2024-08-02 10:28:46\\\",\\\"vehicleId\\\":\\\"ASRS000009\\\",\\\"vehicleStatus\\\":2,\\\"vehicleType\\\":\\\"\\\"},{\\\"currentLocation\\\":\\\"06-01-03-01\\\",\\\"isEmpty\\\":1,\\\"lastInTime\\\":\\\"2024-08-02 10:23:45\\\",\\\"vehicleId\\\":\\\"ASRS000010\\\",\\\"vehicleStatus\\\":2,\\\"vehicleType\\\":\\\"\\\"}],\\\"pages\\\":18,\\\"total\\\":175}}\"', '192.168.8.93', '2024-08-04 22:35:29', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408042249287081722782968708', '带密码登录', 'loginWithAuth', '[{\"isAsc\": true, \"pageNo\": 1, \"roleId\": null, \"sortBy\": \"\", \"userId\": null, \"addTime\": null, \"addUser\": \"\", \"pageSize\": 10, \"userName\": \"\", \"updateTime\": null, \"loginAccount\": \"admin\", \"loginPassword\": \"admin\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"登录成功\\\",\\\"returnData\\\":{\\\"menuList\\\":[{\\\"children\\\":[{\\\"children\\\":[],\\\"id\\\":\\\"11\\\",\\\"labelName\\\":\\\"入库\\\",\\\"path\\\":\\\"/goodsIn\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"12\\\",\\\"labelName\\\":\\\"出库\\\",\\\"path\\\":\\\"/goodsOut\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"13\\\",\\\"labelName\\\":\\\"盘点\\\",\\\"path\\\":\\\"/inventory\\\"}],\\\"iconValue\\\":\\\"Operation\\\",\\\"id\\\":\\\"1\\\",\\\"labelName\\\":\\\"操作\\\",\\\"path\\\":\\\"\\\"},{\\\"children\\\":[{\\\"children\\\":[],\\\"id\\\":\\\"21\\\",\\\"labelName\\\":\\\"库存信息\\\",\\\"path\\\":\\\"/stock\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"22\\\",\\\"labelName\\\":\\\"物料信息\\\",\\\"path\\\":\\\"/goods\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"23\\\",\\\"labelName\\\":\\\"入库记录\\\",\\\"path\\\":\\\"/inTaskRecord\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"24\\\",\\\"labelName\\\":\\\"出库记录\\\",\\\"path\\\":\\\"/outTaskRecord\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"241\\\",\\\"labelName\\\":\\\"盘点记录\\\",\\\"path\\\":\\\"/inventoryRecord\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"25\\\",\\\"labelName\\\":\\\"任务监控\\\",\\\"path\\\":\\\"/taskMonitor\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"26\\\",\\\"labelName\\\":\\\"库位监控\\\",\\\"path\\\":\\\"/location\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"27\\\",\\\"labelName\\\":\\\"料箱监控\\\",\\\"path\\\":\\\"/vehicles\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"28\\\",\\\"labelName\\\":\\\"接口日志\\\",\\\"path\\\":\\\"/wmsLog\\\"}],\\\"iconValue\\\":\\\"Histogram\\\",\\\"id\\\":\\\"2\\\",\\\"labelName\\\":\\\"数据\\\",\\\"path\\\":\\\"\\\"},{\\\"children\\\":[{\\\"children\\\":[],\\\"id\\\":\\\"35\\\",\\\"labelName\\\":\\\"系统配置\\\",\\\"path\\\":\\\"/config\\\"}],\\\"iconValue\\\":\\\"Setting\\\",\\\"id\\\":\\\"3\\\",\\\"labelName\\\":\\\"系统\\\"},{\\\"children\\\":[{\\\"children\\\":[],\\\"id\\\":\\\"41\\\",\\\"labelName\\\":\\\"备料执行\\\",\\\"path\\\":\\\"/testDoKitting\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"42\\\",\\\"labelName\\\":\\\"备料完成\\\",\\\"path\\\":\\\"/testFinishKitting\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"43\\\",\\\"labelName\\\":\\\"呼叫空箱\\\",\\\"path\\\":\\\"/testCallEmptyVehicle\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"44\\\",\\\"labelName\\\":\\\"整理盒子\\\",\\\"path\\\":\\\"/testSortBoxs\\\"}],\\\"iconValue\\\":\\\"Lock\\\",\\\"id\\\":\\\"4\\\",\\\"labelName\\\":\\\"测试\\\"}],\\\"standId\\\":\\\"ASRS-#1\\\",\\\"user\\\":{\\\"addTime\\\":\\\"2023-03-23 11:17:06\\\",\\\"addUser\\\":\\\"系统\\\",\\\"loginAccount\\\":\\\"admin\\\",\\\"loginPassword\\\":\\\"812C0C84E2970FA98456DDC5B0B59594\\\",\\\"roleId\\\":1,\\\"updateTime\\\":\\\"2023-03-23 11:17:10\\\",\\\"userId\\\":1,\\\"userName\\\":\\\"管理员\\\"}}}\"', '192.168.8.93', '2024-08-04 22:49:29', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408042250106301722783010630', '查询库位信息', 'getLocationsByPage', '[{\"wCol\": null, \"wRow\": null, \"isAsc\": true, \"areaId\": null, \"isLock\": null, \"pageNo\": 1, \"sortBy\": \"\", \"wDepth\": null, \"wLayer\": null, \"pageSize\": 10, \"vehicleId\": \"\", \"locationId\": \"\", \"equipmentId\": null, \"locationType\": null, \"locationStatus\": null}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"查询成功\\\",\\\"returnData\\\":{\\\"lists\\\":[{\\\"WCol\\\":1,\\\"WDepth\\\":1,\\\"WLayer\\\":1,\\\"WRow\\\":1,\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-01-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000176\\\"},{\\\"WCol\\\":1,\\\"WDepth\\\":1,\\\"WLayer\\\":2,\\\"WRow\\\":1,\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-02-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000032\\\"},{\\\"WCol\\\":1,\\\"WDepth\\\":1,\\\"WLayer\\\":3,\\\"WRow\\\":1,\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-03-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000041\\\"},{\\\"WCol\\\":1,\\\"WDepth\\\":1,\\\"WLayer\\\":4,\\\"WRow\\\":1,\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-04-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000081\\\"},{\\\"WCol\\\":1,\\\"WDepth\\\":1,\\\"WLayer\\\":5,\\\"WRow\\\":1,\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-05-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000082\\\"},{\\\"WCol\\\":1,\\\"WDepth\\\":1,\\\"WLayer\\\":6,\\\"WRow\\\":1,\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-06-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000004\\\"},{\\\"WCol\\\":1,\\\"WDepth\\\":1,\\\"WLayer\\\":7,\\\"WRow\\\":1,\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-07-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000009\\\"},{\\\"WCol\\\":1,\\\"WDepth\\\":1,\\\"WLayer\\\":8,\\\"WRow\\\":1,\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-08-01\\\",\\\"locationStatus\\\":0,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"\\\"},{\\\"WCol\\\":1,\\\"WDepth\\\":1,\\\"WLayer\\\":9,\\\"WRow\\\":1,\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-09-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000098\\\"},{\\\"WCol\\\":1,\\\"WDepth\\\":1,\\\"WLayer\\\":10,\\\"WRow\\\":1,\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-10-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000050\\\"}],\\\"pages\\\":1268,\\\"total\\\":12672}}\"', '192.168.8.93', '2024-08-04 22:50:11', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408042250115161722783011516', '查询库位信息', 'getLocationsByPage', '[{\"wCol\": null, \"wRow\": null, \"isAsc\": true, \"areaId\": null, \"isLock\": null, \"pageNo\": 1, \"sortBy\": \"\", \"wDepth\": null, \"wLayer\": null, \"pageSize\": 10, \"vehicleId\": \"\", \"locationId\": \"\", \"equipmentId\": null, \"locationType\": null, \"locationStatus\": null}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"查询成功\\\",\\\"returnData\\\":{\\\"lists\\\":[{\\\"WCol\\\":1,\\\"WDepth\\\":1,\\\"WLayer\\\":1,\\\"WRow\\\":1,\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-01-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000176\\\"},{\\\"WCol\\\":1,\\\"WDepth\\\":1,\\\"WLayer\\\":2,\\\"WRow\\\":1,\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-02-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000032\\\"},{\\\"WCol\\\":1,\\\"WDepth\\\":1,\\\"WLayer\\\":3,\\\"WRow\\\":1,\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-03-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000041\\\"},{\\\"WCol\\\":1,\\\"WDepth\\\":1,\\\"WLayer\\\":4,\\\"WRow\\\":1,\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-04-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000081\\\"},{\\\"WCol\\\":1,\\\"WDepth\\\":1,\\\"WLayer\\\":5,\\\"WRow\\\":1,\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-05-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000082\\\"},{\\\"WCol\\\":1,\\\"WDepth\\\":1,\\\"WLayer\\\":6,\\\"WRow\\\":1,\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-06-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000004\\\"},{\\\"WCol\\\":1,\\\"WDepth\\\":1,\\\"WLayer\\\":7,\\\"WRow\\\":1,\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-07-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000009\\\"},{\\\"WCol\\\":1,\\\"WDepth\\\":1,\\\"WLayer\\\":8,\\\"WRow\\\":1,\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-08-01\\\",\\\"locationStatus\\\":0,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"\\\"},{\\\"WCol\\\":1,\\\"WDepth\\\":1,\\\"WLayer\\\":9,\\\"WRow\\\":1,\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-09-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000098\\\"},{\\\"WCol\\\":1,\\\"WDepth\\\":1,\\\"WLayer\\\":10,\\\"WRow\\\":1,\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-10-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000050\\\"}],\\\"pages\\\":1268,\\\"total\\\":12672}}\"', '192.168.8.93', '2024-08-04 22:50:12', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408042250343141722783034314', '查询库位信息', 'getLocationsByPage', '[{\"wCol\": null, \"wRow\": null, \"isAsc\": true, \"areaId\": null, \"isLock\": null, \"pageNo\": 1, \"sortBy\": \"\", \"wDepth\": null, \"wLayer\": null, \"pageSize\": 10, \"vehicleId\": \"\", \"locationId\": \"\", \"equipmentId\": null, \"locationType\": null, \"locationStatus\": null}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"查询成功\\\",\\\"returnData\\\":{\\\"lists\\\":[{\\\"WCol\\\":1,\\\"WDepth\\\":1,\\\"WLayer\\\":1,\\\"WRow\\\":1,\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-01-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000176\\\"},{\\\"WCol\\\":1,\\\"WDepth\\\":1,\\\"WLayer\\\":2,\\\"WRow\\\":1,\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-02-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000032\\\"},{\\\"WCol\\\":1,\\\"WDepth\\\":1,\\\"WLayer\\\":3,\\\"WRow\\\":1,\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-03-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000041\\\"},{\\\"WCol\\\":1,\\\"WDepth\\\":1,\\\"WLayer\\\":4,\\\"WRow\\\":1,\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-04-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000081\\\"},{\\\"WCol\\\":1,\\\"WDepth\\\":1,\\\"WLayer\\\":5,\\\"WRow\\\":1,\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-05-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000082\\\"},{\\\"WCol\\\":1,\\\"WDepth\\\":1,\\\"WLayer\\\":6,\\\"WRow\\\":1,\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-06-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000004\\\"},{\\\"WCol\\\":1,\\\"WDepth\\\":1,\\\"WLayer\\\":7,\\\"WRow\\\":1,\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-07-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000009\\\"},{\\\"WCol\\\":1,\\\"WDepth\\\":1,\\\"WLayer\\\":8,\\\"WRow\\\":1,\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-08-01\\\",\\\"locationStatus\\\":0,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"\\\"},{\\\"WCol\\\":1,\\\"WDepth\\\":1,\\\"WLayer\\\":9,\\\"WRow\\\":1,\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-09-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000098\\\"},{\\\"WCol\\\":1,\\\"WDepth\\\":1,\\\"WLayer\\\":10,\\\"WRow\\\":1,\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-10-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000050\\\"}],\\\"pages\\\":1268,\\\"total\\\":12672}}\"', '192.168.8.93', '2024-08-04 22:50:34', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408042250443731722783044373', '查询库位信息', 'getLocationsByPage', '[{\"wCol\": null, \"wRow\": null, \"isAsc\": true, \"areaId\": null, \"isLock\": null, \"pageNo\": 1, \"sortBy\": \"\", \"wDepth\": null, \"wLayer\": null, \"pageSize\": 10, \"vehicleId\": \"\", \"locationId\": \"\", \"equipmentId\": null, \"locationType\": null, \"locationStatus\": null}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"查询成功\\\",\\\"returnData\\\":{\\\"lists\\\":[{\\\"WCol\\\":1,\\\"WDepth\\\":1,\\\"WLayer\\\":1,\\\"WRow\\\":1,\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-01-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000176\\\"},{\\\"WCol\\\":1,\\\"WDepth\\\":1,\\\"WLayer\\\":2,\\\"WRow\\\":1,\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-02-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000032\\\"},{\\\"WCol\\\":1,\\\"WDepth\\\":1,\\\"WLayer\\\":3,\\\"WRow\\\":1,\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-03-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000041\\\"},{\\\"WCol\\\":1,\\\"WDepth\\\":1,\\\"WLayer\\\":4,\\\"WRow\\\":1,\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-04-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000081\\\"},{\\\"WCol\\\":1,\\\"WDepth\\\":1,\\\"WLayer\\\":5,\\\"WRow\\\":1,\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-05-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000082\\\"},{\\\"WCol\\\":1,\\\"WDepth\\\":1,\\\"WLayer\\\":6,\\\"WRow\\\":1,\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-06-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000004\\\"},{\\\"WCol\\\":1,\\\"WDepth\\\":1,\\\"WLayer\\\":7,\\\"WRow\\\":1,\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-07-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000009\\\"},{\\\"WCol\\\":1,\\\"WDepth\\\":1,\\\"WLayer\\\":8,\\\"WRow\\\":1,\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-08-01\\\",\\\"locationStatus\\\":0,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"\\\"},{\\\"WCol\\\":1,\\\"WDepth\\\":1,\\\"WLayer\\\":9,\\\"WRow\\\":1,\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-09-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000098\\\"},{\\\"WCol\\\":1,\\\"WDepth\\\":1,\\\"WLayer\\\":10,\\\"WRow\\\":1,\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-10-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000050\\\"}],\\\"pages\\\":1268,\\\"total\\\":12672}}\"', '192.168.8.93', '2024-08-04 22:50:44', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408042250583311722783058331', '查询库位信息', 'getLocationsByPage', '[{\"wCol\": null, \"wRow\": null, \"isAsc\": true, \"areaId\": null, \"isLock\": null, \"pageNo\": 1, \"sortBy\": \"\", \"wDepth\": null, \"wLayer\": null, \"pageSize\": 10, \"vehicleId\": \"\", \"locationId\": \"\", \"equipmentId\": null, \"locationType\": null, \"locationStatus\": null}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"查询成功\\\",\\\"returnData\\\":{\\\"lists\\\":[{\\\"WCol\\\":1,\\\"WDepth\\\":1,\\\"WLayer\\\":1,\\\"WRow\\\":1,\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-01-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000176\\\"},{\\\"WCol\\\":1,\\\"WDepth\\\":1,\\\"WLayer\\\":2,\\\"WRow\\\":1,\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-02-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000032\\\"},{\\\"WCol\\\":1,\\\"WDepth\\\":1,\\\"WLayer\\\":3,\\\"WRow\\\":1,\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-03-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000041\\\"},{\\\"WCol\\\":1,\\\"WDepth\\\":1,\\\"WLayer\\\":4,\\\"WRow\\\":1,\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-04-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000081\\\"},{\\\"WCol\\\":1,\\\"WDepth\\\":1,\\\"WLayer\\\":5,\\\"WRow\\\":1,\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-05-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000082\\\"},{\\\"WCol\\\":1,\\\"WDepth\\\":1,\\\"WLayer\\\":6,\\\"WRow\\\":1,\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-06-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000004\\\"},{\\\"WCol\\\":1,\\\"WDepth\\\":1,\\\"WLayer\\\":7,\\\"WRow\\\":1,\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-07-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000009\\\"},{\\\"WCol\\\":1,\\\"WDepth\\\":1,\\\"WLayer\\\":8,\\\"WRow\\\":1,\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-08-01\\\",\\\"locationStatus\\\":0,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"\\\"},{\\\"WCol\\\":1,\\\"WDepth\\\":1,\\\"WLayer\\\":9,\\\"WRow\\\":1,\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-09-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000098\\\"},{\\\"WCol\\\":1,\\\"WDepth\\\":1,\\\"WLayer\\\":10,\\\"WRow\\\":1,\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-10-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000050\\\"}],\\\"pages\\\":1268,\\\"total\\\":12672}}\"', '192.168.8.93', '2024-08-04 22:50:58', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408042251053211722783065321', '查询库位信息', 'getLocationsByPage', '[{\"wCol\": null, \"wRow\": null, \"isAsc\": true, \"areaId\": null, \"isLock\": null, \"pageNo\": 1, \"sortBy\": \"\", \"wDepth\": null, \"wLayer\": null, \"pageSize\": 10, \"vehicleId\": \"\", \"locationId\": \"\", \"equipmentId\": null, \"locationType\": null, \"locationStatus\": null}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"查询成功\\\",\\\"returnData\\\":{\\\"lists\\\":[{\\\"WCol\\\":1,\\\"WDepth\\\":1,\\\"WLayer\\\":1,\\\"WRow\\\":1,\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-01-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000176\\\"},{\\\"WCol\\\":1,\\\"WDepth\\\":1,\\\"WLayer\\\":2,\\\"WRow\\\":1,\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-02-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000032\\\"},{\\\"WCol\\\":1,\\\"WDepth\\\":1,\\\"WLayer\\\":3,\\\"WRow\\\":1,\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-03-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000041\\\"},{\\\"WCol\\\":1,\\\"WDepth\\\":1,\\\"WLayer\\\":4,\\\"WRow\\\":1,\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-04-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000081\\\"},{\\\"WCol\\\":1,\\\"WDepth\\\":1,\\\"WLayer\\\":5,\\\"WRow\\\":1,\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-05-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000082\\\"},{\\\"WCol\\\":1,\\\"WDepth\\\":1,\\\"WLayer\\\":6,\\\"WRow\\\":1,\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-06-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000004\\\"},{\\\"WCol\\\":1,\\\"WDepth\\\":1,\\\"WLayer\\\":7,\\\"WRow\\\":1,\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-07-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000009\\\"},{\\\"WCol\\\":1,\\\"WDepth\\\":1,\\\"WLayer\\\":8,\\\"WRow\\\":1,\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-08-01\\\",\\\"locationStatus\\\":0,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"\\\"},{\\\"WCol\\\":1,\\\"WDepth\\\":1,\\\"WLayer\\\":9,\\\"WRow\\\":1,\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-09-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000098\\\"},{\\\"WCol\\\":1,\\\"WDepth\\\":1,\\\"WLayer\\\":10,\\\"WRow\\\":1,\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-10-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000050\\\"}],\\\"pages\\\":1268,\\\"total\\\":12672}}\"', '192.168.8.93', '2024-08-04 22:51:05', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408042252394731722783159473', '查询库位信息', 'getLocationsByPage', '[{\"wCol\": null, \"wRow\": null, \"isAsc\": true, \"areaId\": null, \"isLock\": null, \"pageNo\": 1, \"sortBy\": \"\", \"wDepth\": null, \"wLayer\": null, \"pageSize\": 10, \"vehicleId\": \"\", \"locationId\": \"\", \"equipmentId\": null, \"locationType\": null, \"locationStatus\": null}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"查询成功\\\",\\\"returnData\\\":{\\\"lists\\\":[{\\\"WCol\\\":1,\\\"WDepth\\\":1,\\\"WLayer\\\":1,\\\"WRow\\\":1,\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-01-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000176\\\"},{\\\"WCol\\\":1,\\\"WDepth\\\":1,\\\"WLayer\\\":2,\\\"WRow\\\":1,\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-02-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000032\\\"},{\\\"WCol\\\":1,\\\"WDepth\\\":1,\\\"WLayer\\\":3,\\\"WRow\\\":1,\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-03-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000041\\\"},{\\\"WCol\\\":1,\\\"WDepth\\\":1,\\\"WLayer\\\":4,\\\"WRow\\\":1,\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-04-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000081\\\"},{\\\"WCol\\\":1,\\\"WDepth\\\":1,\\\"WLayer\\\":5,\\\"WRow\\\":1,\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-05-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000082\\\"},{\\\"WCol\\\":1,\\\"WDepth\\\":1,\\\"WLayer\\\":6,\\\"WRow\\\":1,\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-06-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000004\\\"},{\\\"WCol\\\":1,\\\"WDepth\\\":1,\\\"WLayer\\\":7,\\\"WRow\\\":1,\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-07-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000009\\\"},{\\\"WCol\\\":1,\\\"WDepth\\\":1,\\\"WLayer\\\":8,\\\"WRow\\\":1,\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-08-01\\\",\\\"locationStatus\\\":0,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"\\\"},{\\\"WCol\\\":1,\\\"WDepth\\\":1,\\\"WLayer\\\":9,\\\"WRow\\\":1,\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-09-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000098\\\"},{\\\"WCol\\\":1,\\\"WDepth\\\":1,\\\"WLayer\\\":10,\\\"WRow\\\":1,\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-10-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000050\\\"}],\\\"pages\\\":1268,\\\"total\\\":12672}}\"', '192.168.8.93', '2024-08-04 22:52:39', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408042254182431722783258243', '查询库位信息', 'getLocationsByPage', '[{\"wCol\": null, \"wRow\": null, \"isAsc\": true, \"areaId\": null, \"isLock\": null, \"pageNo\": 1, \"sortBy\": \"\", \"wDepth\": null, \"wLayer\": null, \"pageSize\": 10, \"vehicleId\": \"\", \"locationId\": \"\", \"equipmentId\": null, \"locationType\": null, \"locationStatus\": null}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"查询成功\\\",\\\"returnData\\\":{\\\"lists\\\":[{\\\"WCol\\\":1,\\\"WDepth\\\":1,\\\"WLayer\\\":1,\\\"WRow\\\":1,\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-01-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000176\\\"},{\\\"WCol\\\":1,\\\"WDepth\\\":1,\\\"WLayer\\\":2,\\\"WRow\\\":1,\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-02-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000032\\\"},{\\\"WCol\\\":1,\\\"WDepth\\\":1,\\\"WLayer\\\":3,\\\"WRow\\\":1,\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-03-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000041\\\"},{\\\"WCol\\\":1,\\\"WDepth\\\":1,\\\"WLayer\\\":4,\\\"WRow\\\":1,\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-04-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000081\\\"},{\\\"WCol\\\":1,\\\"WDepth\\\":1,\\\"WLayer\\\":5,\\\"WRow\\\":1,\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-05-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000082\\\"},{\\\"WCol\\\":1,\\\"WDepth\\\":1,\\\"WLayer\\\":6,\\\"WRow\\\":1,\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-06-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000004\\\"},{\\\"WCol\\\":1,\\\"WDepth\\\":1,\\\"WLayer\\\":7,\\\"WRow\\\":1,\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-07-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000009\\\"},{\\\"WCol\\\":1,\\\"WDepth\\\":1,\\\"WLayer\\\":8,\\\"WRow\\\":1,\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-08-01\\\",\\\"locationStatus\\\":0,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"\\\"},{\\\"WCol\\\":1,\\\"WDepth\\\":1,\\\"WLayer\\\":9,\\\"WRow\\\":1,\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-09-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000098\\\"},{\\\"WCol\\\":1,\\\"WDepth\\\":1,\\\"WLayer\\\":10,\\\"WRow\\\":1,\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-10-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000050\\\"}],\\\"pages\\\":1268,\\\"total\\\":12672}}\"', '192.168.8.93', '2024-08-04 22:54:18', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408042256498781722783409878', '查询库位信息', 'getLocationsByPage', '[{\"wCol\": null, \"wRow\": null, \"isAsc\": true, \"areaId\": null, \"isLock\": null, \"pageNo\": 1, \"sortBy\": \"\", \"wDepth\": null, \"wLayer\": null, \"pageSize\": 10, \"vehicleId\": \"\", \"locationId\": \"\", \"equipmentId\": null, \"locationType\": null, \"locationStatus\": null}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"查询成功\\\",\\\"returnData\\\":{\\\"lists\\\":[{\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-01-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000176\\\",\\\"wCol\\\":1,\\\"wDepth\\\":1,\\\"wLayer\\\":1,\\\"wRow\\\":1},{\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-02-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000032\\\",\\\"wCol\\\":1,\\\"wDepth\\\":1,\\\"wLayer\\\":2,\\\"wRow\\\":1},{\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-03-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000041\\\",\\\"wCol\\\":1,\\\"wDepth\\\":1,\\\"wLayer\\\":3,\\\"wRow\\\":1},{\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-04-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000081\\\",\\\"wCol\\\":1,\\\"wDepth\\\":1,\\\"wLayer\\\":4,\\\"wRow\\\":1},{\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-05-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000082\\\",\\\"wCol\\\":1,\\\"wDepth\\\":1,\\\"wLayer\\\":5,\\\"wRow\\\":1},{\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-06-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000004\\\",\\\"wCol\\\":1,\\\"wDepth\\\":1,\\\"wLayer\\\":6,\\\"wRow\\\":1},{\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-07-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000009\\\",\\\"wCol\\\":1,\\\"wDepth\\\":1,\\\"wLayer\\\":7,\\\"wRow\\\":1},{\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-08-01\\\",\\\"locationStatus\\\":0,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"\\\",\\\"wCol\\\":1,\\\"wDepth\\\":1,\\\"wLayer\\\":8,\\\"wRow\\\":1},{\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-09-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000098\\\",\\\"wCol\\\":1,\\\"wDepth\\\":1,\\\"wLayer\\\":9,\\\"wRow\\\":1},{\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-10-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000050\\\",\\\"wCol\\\":1,\\\"wDepth\\\":1,\\\"wLayer\\\":10,\\\"wRow\\\":1}],\\\"pages\\\":1268,\\\"total\\\":12672}}\"', '192.168.8.93', '2024-08-04 22:56:50', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408042256548261722783414826', '查询库位信息', 'getLocationsByPage', '[{\"wCol\": null, \"wRow\": null, \"isAsc\": true, \"areaId\": null, \"isLock\": null, \"pageNo\": 1, \"sortBy\": \"\", \"wDepth\": null, \"wLayer\": null, \"pageSize\": 10, \"vehicleId\": \"\", \"locationId\": \"\", \"equipmentId\": null, \"locationType\": null, \"locationStatus\": null}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"查询成功\\\",\\\"returnData\\\":{\\\"lists\\\":[{\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-01-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000176\\\",\\\"wCol\\\":1,\\\"wDepth\\\":1,\\\"wLayer\\\":1,\\\"wRow\\\":1},{\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-02-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000032\\\",\\\"wCol\\\":1,\\\"wDepth\\\":1,\\\"wLayer\\\":2,\\\"wRow\\\":1},{\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-03-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000041\\\",\\\"wCol\\\":1,\\\"wDepth\\\":1,\\\"wLayer\\\":3,\\\"wRow\\\":1},{\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-04-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000081\\\",\\\"wCol\\\":1,\\\"wDepth\\\":1,\\\"wLayer\\\":4,\\\"wRow\\\":1},{\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-05-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000082\\\",\\\"wCol\\\":1,\\\"wDepth\\\":1,\\\"wLayer\\\":5,\\\"wRow\\\":1},{\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-06-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000004\\\",\\\"wCol\\\":1,\\\"wDepth\\\":1,\\\"wLayer\\\":6,\\\"wRow\\\":1},{\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-07-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000009\\\",\\\"wCol\\\":1,\\\"wDepth\\\":1,\\\"wLayer\\\":7,\\\"wRow\\\":1},{\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-08-01\\\",\\\"locationStatus\\\":0,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"\\\",\\\"wCol\\\":1,\\\"wDepth\\\":1,\\\"wLayer\\\":8,\\\"wRow\\\":1},{\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-09-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000098\\\",\\\"wCol\\\":1,\\\"wDepth\\\":1,\\\"wLayer\\\":9,\\\"wRow\\\":1},{\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-10-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000050\\\",\\\"wCol\\\":1,\\\"wDepth\\\":1,\\\"wLayer\\\":10,\\\"wRow\\\":1}],\\\"pages\\\":1268,\\\"total\\\":12672}}\"', '192.168.8.93', '2024-08-04 22:56:55', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408042256553301722783415330', '查询库位信息', 'getLocationsByPage', '[{\"wCol\": null, \"wRow\": null, \"isAsc\": true, \"areaId\": null, \"isLock\": null, \"pageNo\": 1, \"sortBy\": \"\", \"wDepth\": null, \"wLayer\": null, \"pageSize\": 10, \"vehicleId\": \"\", \"locationId\": \"\", \"equipmentId\": null, \"locationType\": null, \"locationStatus\": null}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"查询成功\\\",\\\"returnData\\\":{\\\"lists\\\":[{\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-01-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000176\\\",\\\"wCol\\\":1,\\\"wDepth\\\":1,\\\"wLayer\\\":1,\\\"wRow\\\":1},{\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-02-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000032\\\",\\\"wCol\\\":1,\\\"wDepth\\\":1,\\\"wLayer\\\":2,\\\"wRow\\\":1},{\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-03-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000041\\\",\\\"wCol\\\":1,\\\"wDepth\\\":1,\\\"wLayer\\\":3,\\\"wRow\\\":1},{\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-04-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000081\\\",\\\"wCol\\\":1,\\\"wDepth\\\":1,\\\"wLayer\\\":4,\\\"wRow\\\":1},{\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-05-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000082\\\",\\\"wCol\\\":1,\\\"wDepth\\\":1,\\\"wLayer\\\":5,\\\"wRow\\\":1},{\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-06-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000004\\\",\\\"wCol\\\":1,\\\"wDepth\\\":1,\\\"wLayer\\\":6,\\\"wRow\\\":1},{\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-07-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000009\\\",\\\"wCol\\\":1,\\\"wDepth\\\":1,\\\"wLayer\\\":7,\\\"wRow\\\":1},{\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-08-01\\\",\\\"locationStatus\\\":0,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"\\\",\\\"wCol\\\":1,\\\"wDepth\\\":1,\\\"wLayer\\\":8,\\\"wRow\\\":1},{\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-09-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000098\\\",\\\"wCol\\\":1,\\\"wDepth\\\":1,\\\"wLayer\\\":9,\\\"wRow\\\":1},{\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-10-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000050\\\",\\\"wCol\\\":1,\\\"wDepth\\\":1,\\\"wLayer\\\":10,\\\"wRow\\\":1}],\\\"pages\\\":1268,\\\"total\\\":12672}}\"', '192.168.8.93', '2024-08-04 22:56:55', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408042256555221722783415522', '查询库位信息', 'getLocationsByPage', '[{\"wCol\": null, \"wRow\": null, \"isAsc\": true, \"areaId\": null, \"isLock\": null, \"pageNo\": 1, \"sortBy\": \"\", \"wDepth\": null, \"wLayer\": null, \"pageSize\": 10, \"vehicleId\": \"\", \"locationId\": \"\", \"equipmentId\": null, \"locationType\": null, \"locationStatus\": null}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"查询成功\\\",\\\"returnData\\\":{\\\"lists\\\":[{\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-01-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000176\\\",\\\"wCol\\\":1,\\\"wDepth\\\":1,\\\"wLayer\\\":1,\\\"wRow\\\":1},{\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-02-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000032\\\",\\\"wCol\\\":1,\\\"wDepth\\\":1,\\\"wLayer\\\":2,\\\"wRow\\\":1},{\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-03-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000041\\\",\\\"wCol\\\":1,\\\"wDepth\\\":1,\\\"wLayer\\\":3,\\\"wRow\\\":1},{\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-04-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000081\\\",\\\"wCol\\\":1,\\\"wDepth\\\":1,\\\"wLayer\\\":4,\\\"wRow\\\":1},{\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-05-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000082\\\",\\\"wCol\\\":1,\\\"wDepth\\\":1,\\\"wLayer\\\":5,\\\"wRow\\\":1},{\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-06-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000004\\\",\\\"wCol\\\":1,\\\"wDepth\\\":1,\\\"wLayer\\\":6,\\\"wRow\\\":1},{\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-07-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000009\\\",\\\"wCol\\\":1,\\\"wDepth\\\":1,\\\"wLayer\\\":7,\\\"wRow\\\":1},{\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-08-01\\\",\\\"locationStatus\\\":0,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"\\\",\\\"wCol\\\":1,\\\"wDepth\\\":1,\\\"wLayer\\\":8,\\\"wRow\\\":1},{\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-09-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000098\\\",\\\"wCol\\\":1,\\\"wDepth\\\":1,\\\"wLayer\\\":9,\\\"wRow\\\":1},{\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-10-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000050\\\",\\\"wCol\\\":1,\\\"wDepth\\\":1,\\\"wLayer\\\":10,\\\"wRow\\\":1}],\\\"pages\\\":1268,\\\"total\\\":12672}}\"', '192.168.8.93', '2024-08-04 22:56:56', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408042256557141722783415714', '查询库位信息', 'getLocationsByPage', '[{\"wCol\": null, \"wRow\": null, \"isAsc\": true, \"areaId\": null, \"isLock\": null, \"pageNo\": 1, \"sortBy\": \"\", \"wDepth\": null, \"wLayer\": null, \"pageSize\": 10, \"vehicleId\": \"\", \"locationId\": \"\", \"equipmentId\": null, \"locationType\": null, \"locationStatus\": null}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"查询成功\\\",\\\"returnData\\\":{\\\"lists\\\":[{\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-01-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000176\\\",\\\"wCol\\\":1,\\\"wDepth\\\":1,\\\"wLayer\\\":1,\\\"wRow\\\":1},{\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-02-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000032\\\",\\\"wCol\\\":1,\\\"wDepth\\\":1,\\\"wLayer\\\":2,\\\"wRow\\\":1},{\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-03-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000041\\\",\\\"wCol\\\":1,\\\"wDepth\\\":1,\\\"wLayer\\\":3,\\\"wRow\\\":1},{\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-04-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000081\\\",\\\"wCol\\\":1,\\\"wDepth\\\":1,\\\"wLayer\\\":4,\\\"wRow\\\":1},{\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-05-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000082\\\",\\\"wCol\\\":1,\\\"wDepth\\\":1,\\\"wLayer\\\":5,\\\"wRow\\\":1},{\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-06-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000004\\\",\\\"wCol\\\":1,\\\"wDepth\\\":1,\\\"wLayer\\\":6,\\\"wRow\\\":1},{\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-07-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000009\\\",\\\"wCol\\\":1,\\\"wDepth\\\":1,\\\"wLayer\\\":7,\\\"wRow\\\":1},{\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-08-01\\\",\\\"locationStatus\\\":0,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"\\\",\\\"wCol\\\":1,\\\"wDepth\\\":1,\\\"wLayer\\\":8,\\\"wRow\\\":1},{\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-09-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000098\\\",\\\"wCol\\\":1,\\\"wDepth\\\":1,\\\"wLayer\\\":9,\\\"wRow\\\":1},{\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-10-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000050\\\",\\\"wCol\\\":1,\\\"wDepth\\\":1,\\\"wLayer\\\":10,\\\"wRow\\\":1}],\\\"pages\\\":1268,\\\"total\\\":12672}}\"', '192.168.8.93', '2024-08-04 22:56:56', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408042257352291722783455229', '查询库位信息', 'getLocationsByPage', '[{\"wCol\": null, \"wRow\": null, \"isAsc\": true, \"areaId\": null, \"isLock\": null, \"pageNo\": 1, \"sortBy\": \"\", \"wDepth\": null, \"wLayer\": null, \"pageSize\": 10, \"vehicleId\": \"\", \"locationId\": \"\", \"equipmentId\": null, \"locationType\": null, \"locationStatus\": null}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"查询成功\\\",\\\"returnData\\\":{\\\"lists\\\":[{\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-01-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000176\\\",\\\"wCol\\\":1,\\\"wDepth\\\":1,\\\"wLayer\\\":1,\\\"wRow\\\":1},{\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-02-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000032\\\",\\\"wCol\\\":1,\\\"wDepth\\\":1,\\\"wLayer\\\":2,\\\"wRow\\\":1},{\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-03-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000041\\\",\\\"wCol\\\":1,\\\"wDepth\\\":1,\\\"wLayer\\\":3,\\\"wRow\\\":1},{\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-04-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000081\\\",\\\"wCol\\\":1,\\\"wDepth\\\":1,\\\"wLayer\\\":4,\\\"wRow\\\":1},{\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-05-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000082\\\",\\\"wCol\\\":1,\\\"wDepth\\\":1,\\\"wLayer\\\":5,\\\"wRow\\\":1},{\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-06-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000004\\\",\\\"wCol\\\":1,\\\"wDepth\\\":1,\\\"wLayer\\\":6,\\\"wRow\\\":1},{\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-07-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000009\\\",\\\"wCol\\\":1,\\\"wDepth\\\":1,\\\"wLayer\\\":7,\\\"wRow\\\":1},{\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-08-01\\\",\\\"locationStatus\\\":0,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"\\\",\\\"wCol\\\":1,\\\"wDepth\\\":1,\\\"wLayer\\\":8,\\\"wRow\\\":1},{\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-09-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000098\\\",\\\"wCol\\\":1,\\\"wDepth\\\":1,\\\"wLayer\\\":9,\\\"wRow\\\":1},{\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-10-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000050\\\",\\\"wCol\\\":1,\\\"wDepth\\\":1,\\\"wLayer\\\":10,\\\"wRow\\\":1}],\\\"pages\\\":1268,\\\"total\\\":12672}}\"', '192.168.8.93', '2024-08-04 22:57:35', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408042257405621722783460562', '查询库位信息', 'getLocationsByPage', '[{\"wCol\": null, \"wRow\": null, \"isAsc\": true, \"areaId\": null, \"isLock\": null, \"pageNo\": 1, \"sortBy\": \"\", \"wDepth\": null, \"wLayer\": null, \"pageSize\": 10, \"vehicleId\": \"\", \"locationId\": \"\", \"equipmentId\": null, \"locationType\": null, \"locationStatus\": null}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"查询成功\\\",\\\"returnData\\\":{\\\"lists\\\":[{\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-01-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000176\\\",\\\"wCol\\\":1,\\\"wDepth\\\":1,\\\"wLayer\\\":1,\\\"wRow\\\":1},{\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-02-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000032\\\",\\\"wCol\\\":1,\\\"wDepth\\\":1,\\\"wLayer\\\":2,\\\"wRow\\\":1},{\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-03-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000041\\\",\\\"wCol\\\":1,\\\"wDepth\\\":1,\\\"wLayer\\\":3,\\\"wRow\\\":1},{\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-04-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000081\\\",\\\"wCol\\\":1,\\\"wDepth\\\":1,\\\"wLayer\\\":4,\\\"wRow\\\":1},{\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-05-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000082\\\",\\\"wCol\\\":1,\\\"wDepth\\\":1,\\\"wLayer\\\":5,\\\"wRow\\\":1},{\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-06-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000004\\\",\\\"wCol\\\":1,\\\"wDepth\\\":1,\\\"wLayer\\\":6,\\\"wRow\\\":1},{\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-07-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000009\\\",\\\"wCol\\\":1,\\\"wDepth\\\":1,\\\"wLayer\\\":7,\\\"wRow\\\":1},{\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-08-01\\\",\\\"locationStatus\\\":0,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"\\\",\\\"wCol\\\":1,\\\"wDepth\\\":1,\\\"wLayer\\\":8,\\\"wRow\\\":1},{\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-09-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000098\\\",\\\"wCol\\\":1,\\\"wDepth\\\":1,\\\"wLayer\\\":9,\\\"wRow\\\":1},{\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-10-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000050\\\",\\\"wCol\\\":1,\\\"wDepth\\\":1,\\\"wLayer\\\":10,\\\"wRow\\\":1}],\\\"pages\\\":1268,\\\"total\\\":12672}}\"', '192.168.8.93', '2024-08-04 22:57:41', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408042257410621722783461062', '查询库位信息', 'getLocationsByPage', '[{\"wCol\": null, \"wRow\": null, \"isAsc\": true, \"areaId\": null, \"isLock\": null, \"pageNo\": 1, \"sortBy\": \"\", \"wDepth\": null, \"wLayer\": null, \"pageSize\": 10, \"vehicleId\": \"\", \"locationId\": \"\", \"equipmentId\": null, \"locationType\": null, \"locationStatus\": null}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"查询成功\\\",\\\"returnData\\\":{\\\"lists\\\":[{\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-01-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000176\\\",\\\"wCol\\\":1,\\\"wDepth\\\":1,\\\"wLayer\\\":1,\\\"wRow\\\":1},{\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-02-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000032\\\",\\\"wCol\\\":1,\\\"wDepth\\\":1,\\\"wLayer\\\":2,\\\"wRow\\\":1},{\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-03-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000041\\\",\\\"wCol\\\":1,\\\"wDepth\\\":1,\\\"wLayer\\\":3,\\\"wRow\\\":1},{\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-04-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000081\\\",\\\"wCol\\\":1,\\\"wDepth\\\":1,\\\"wLayer\\\":4,\\\"wRow\\\":1},{\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-05-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000082\\\",\\\"wCol\\\":1,\\\"wDepth\\\":1,\\\"wLayer\\\":5,\\\"wRow\\\":1},{\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-06-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000004\\\",\\\"wCol\\\":1,\\\"wDepth\\\":1,\\\"wLayer\\\":6,\\\"wRow\\\":1},{\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-07-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000009\\\",\\\"wCol\\\":1,\\\"wDepth\\\":1,\\\"wLayer\\\":7,\\\"wRow\\\":1},{\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-08-01\\\",\\\"locationStatus\\\":0,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"\\\",\\\"wCol\\\":1,\\\"wDepth\\\":1,\\\"wLayer\\\":8,\\\"wRow\\\":1},{\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-09-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000098\\\",\\\"wCol\\\":1,\\\"wDepth\\\":1,\\\"wLayer\\\":9,\\\"wRow\\\":1},{\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-10-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000050\\\",\\\"wCol\\\":1,\\\"wDepth\\\":1,\\\"wLayer\\\":10,\\\"wRow\\\":1}],\\\"pages\\\":1268,\\\"total\\\":12672}}\"', '192.168.8.93', '2024-08-04 22:57:41', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408042257412611722783461261', '查询库位信息', 'getLocationsByPage', '[{\"wCol\": null, \"wRow\": null, \"isAsc\": true, \"areaId\": null, \"isLock\": null, \"pageNo\": 1, \"sortBy\": \"\", \"wDepth\": null, \"wLayer\": null, \"pageSize\": 10, \"vehicleId\": \"\", \"locationId\": \"\", \"equipmentId\": null, \"locationType\": null, \"locationStatus\": null}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"查询成功\\\",\\\"returnData\\\":{\\\"lists\\\":[{\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-01-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000176\\\",\\\"wCol\\\":1,\\\"wDepth\\\":1,\\\"wLayer\\\":1,\\\"wRow\\\":1},{\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-02-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000032\\\",\\\"wCol\\\":1,\\\"wDepth\\\":1,\\\"wLayer\\\":2,\\\"wRow\\\":1},{\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-03-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000041\\\",\\\"wCol\\\":1,\\\"wDepth\\\":1,\\\"wLayer\\\":3,\\\"wRow\\\":1},{\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-04-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000081\\\",\\\"wCol\\\":1,\\\"wDepth\\\":1,\\\"wLayer\\\":4,\\\"wRow\\\":1},{\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-05-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000082\\\",\\\"wCol\\\":1,\\\"wDepth\\\":1,\\\"wLayer\\\":5,\\\"wRow\\\":1},{\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-06-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000004\\\",\\\"wCol\\\":1,\\\"wDepth\\\":1,\\\"wLayer\\\":6,\\\"wRow\\\":1},{\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-07-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000009\\\",\\\"wCol\\\":1,\\\"wDepth\\\":1,\\\"wLayer\\\":7,\\\"wRow\\\":1},{\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-08-01\\\",\\\"locationStatus\\\":0,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"\\\",\\\"wCol\\\":1,\\\"wDepth\\\":1,\\\"wLayer\\\":8,\\\"wRow\\\":1},{\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-09-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000098\\\",\\\"wCol\\\":1,\\\"wDepth\\\":1,\\\"wLayer\\\":9,\\\"wRow\\\":1},{\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-10-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000050\\\",\\\"wCol\\\":1,\\\"wDepth\\\":1,\\\"wLayer\\\":10,\\\"wRow\\\":1}],\\\"pages\\\":1268,\\\"total\\\":12672}}\"', '192.168.8.93', '2024-08-04 22:57:41', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408042257414501722783461450', '查询库位信息', 'getLocationsByPage', '[{\"wCol\": null, \"wRow\": null, \"isAsc\": true, \"areaId\": null, \"isLock\": null, \"pageNo\": 1, \"sortBy\": \"\", \"wDepth\": null, \"wLayer\": null, \"pageSize\": 10, \"vehicleId\": \"\", \"locationId\": \"\", \"equipmentId\": null, \"locationType\": null, \"locationStatus\": null}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"查询成功\\\",\\\"returnData\\\":{\\\"lists\\\":[{\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-01-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000176\\\",\\\"wCol\\\":1,\\\"wDepth\\\":1,\\\"wLayer\\\":1,\\\"wRow\\\":1},{\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-02-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000032\\\",\\\"wCol\\\":1,\\\"wDepth\\\":1,\\\"wLayer\\\":2,\\\"wRow\\\":1},{\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-03-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000041\\\",\\\"wCol\\\":1,\\\"wDepth\\\":1,\\\"wLayer\\\":3,\\\"wRow\\\":1},{\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-04-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000081\\\",\\\"wCol\\\":1,\\\"wDepth\\\":1,\\\"wLayer\\\":4,\\\"wRow\\\":1},{\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-05-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000082\\\",\\\"wCol\\\":1,\\\"wDepth\\\":1,\\\"wLayer\\\":5,\\\"wRow\\\":1},{\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-06-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000004\\\",\\\"wCol\\\":1,\\\"wDepth\\\":1,\\\"wLayer\\\":6,\\\"wRow\\\":1},{\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-07-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000009\\\",\\\"wCol\\\":1,\\\"wDepth\\\":1,\\\"wLayer\\\":7,\\\"wRow\\\":1},{\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-08-01\\\",\\\"locationStatus\\\":0,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"\\\",\\\"wCol\\\":1,\\\"wDepth\\\":1,\\\"wLayer\\\":8,\\\"wRow\\\":1},{\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-09-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000098\\\",\\\"wCol\\\":1,\\\"wDepth\\\":1,\\\"wLayer\\\":9,\\\"wRow\\\":1},{\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-10-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000050\\\",\\\"wCol\\\":1,\\\"wDepth\\\":1,\\\"wLayer\\\":10,\\\"wRow\\\":1}],\\\"pages\\\":1268,\\\"total\\\":12672}}\"', '192.168.8.93', '2024-08-04 22:57:41', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408042257426821722783462682', '查询库位信息', 'getLocationsByPage', '[{\"wCol\": null, \"wRow\": null, \"isAsc\": true, \"areaId\": null, \"isLock\": null, \"pageNo\": 1, \"sortBy\": \"\", \"wDepth\": null, \"wLayer\": null, \"pageSize\": 10, \"vehicleId\": \"\", \"locationId\": \"\", \"equipmentId\": null, \"locationType\": null, \"locationStatus\": null}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"查询成功\\\",\\\"returnData\\\":{\\\"lists\\\":[{\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-01-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000176\\\",\\\"wCol\\\":1,\\\"wDepth\\\":1,\\\"wLayer\\\":1,\\\"wRow\\\":1},{\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-02-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000032\\\",\\\"wCol\\\":1,\\\"wDepth\\\":1,\\\"wLayer\\\":2,\\\"wRow\\\":1},{\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-03-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000041\\\",\\\"wCol\\\":1,\\\"wDepth\\\":1,\\\"wLayer\\\":3,\\\"wRow\\\":1},{\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-04-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000081\\\",\\\"wCol\\\":1,\\\"wDepth\\\":1,\\\"wLayer\\\":4,\\\"wRow\\\":1},{\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-05-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000082\\\",\\\"wCol\\\":1,\\\"wDepth\\\":1,\\\"wLayer\\\":5,\\\"wRow\\\":1},{\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-06-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000004\\\",\\\"wCol\\\":1,\\\"wDepth\\\":1,\\\"wLayer\\\":6,\\\"wRow\\\":1},{\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-07-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000009\\\",\\\"wCol\\\":1,\\\"wDepth\\\":1,\\\"wLayer\\\":7,\\\"wRow\\\":1},{\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-08-01\\\",\\\"locationStatus\\\":0,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"\\\",\\\"wCol\\\":1,\\\"wDepth\\\":1,\\\"wLayer\\\":8,\\\"wRow\\\":1},{\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-09-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000098\\\",\\\"wCol\\\":1,\\\"wDepth\\\":1,\\\"wLayer\\\":9,\\\"wRow\\\":1},{\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-10-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000050\\\",\\\"wCol\\\":1,\\\"wDepth\\\":1,\\\"wLayer\\\":10,\\\"wRow\\\":1}],\\\"pages\\\":1268,\\\"total\\\":12672}}\"', '192.168.8.93', '2024-08-04 22:57:43', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408042257428411722783462841', '查询库位信息', 'getLocationsByPage', '[{\"wCol\": null, \"wRow\": null, \"isAsc\": true, \"areaId\": null, \"isLock\": null, \"pageNo\": 1, \"sortBy\": \"\", \"wDepth\": null, \"wLayer\": null, \"pageSize\": 10, \"vehicleId\": \"\", \"locationId\": \"\", \"equipmentId\": null, \"locationType\": null, \"locationStatus\": null}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"查询成功\\\",\\\"returnData\\\":{\\\"lists\\\":[{\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-01-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000176\\\",\\\"wCol\\\":1,\\\"wDepth\\\":1,\\\"wLayer\\\":1,\\\"wRow\\\":1},{\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-02-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000032\\\",\\\"wCol\\\":1,\\\"wDepth\\\":1,\\\"wLayer\\\":2,\\\"wRow\\\":1},{\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-03-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000041\\\",\\\"wCol\\\":1,\\\"wDepth\\\":1,\\\"wLayer\\\":3,\\\"wRow\\\":1},{\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-04-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000081\\\",\\\"wCol\\\":1,\\\"wDepth\\\":1,\\\"wLayer\\\":4,\\\"wRow\\\":1},{\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-05-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000082\\\",\\\"wCol\\\":1,\\\"wDepth\\\":1,\\\"wLayer\\\":5,\\\"wRow\\\":1},{\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-06-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000004\\\",\\\"wCol\\\":1,\\\"wDepth\\\":1,\\\"wLayer\\\":6,\\\"wRow\\\":1},{\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-07-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000009\\\",\\\"wCol\\\":1,\\\"wDepth\\\":1,\\\"wLayer\\\":7,\\\"wRow\\\":1},{\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-08-01\\\",\\\"locationStatus\\\":0,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"\\\",\\\"wCol\\\":1,\\\"wDepth\\\":1,\\\"wLayer\\\":8,\\\"wRow\\\":1},{\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-09-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000098\\\",\\\"wCol\\\":1,\\\"wDepth\\\":1,\\\"wLayer\\\":9,\\\"wRow\\\":1},{\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-10-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000050\\\",\\\"wCol\\\":1,\\\"wDepth\\\":1,\\\"wLayer\\\":10,\\\"wRow\\\":1}],\\\"pages\\\":1268,\\\"total\\\":12672}}\"', '192.168.8.93', '2024-08-04 22:57:43', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408042257444821722783464482', '查询库位信息', 'getLocationsByPage', '[{\"wCol\": null, \"wRow\": null, \"isAsc\": true, \"areaId\": null, \"isLock\": null, \"pageNo\": 1, \"sortBy\": \"\", \"wDepth\": null, \"wLayer\": null, \"pageSize\": 10, \"vehicleId\": \"\", \"locationId\": \"\", \"equipmentId\": null, \"locationType\": null, \"locationStatus\": null}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"查询成功\\\",\\\"returnData\\\":{\\\"lists\\\":[{\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-01-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000176\\\",\\\"wCol\\\":1,\\\"wDepth\\\":1,\\\"wLayer\\\":1,\\\"wRow\\\":1},{\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-02-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000032\\\",\\\"wCol\\\":1,\\\"wDepth\\\":1,\\\"wLayer\\\":2,\\\"wRow\\\":1},{\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-03-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000041\\\",\\\"wCol\\\":1,\\\"wDepth\\\":1,\\\"wLayer\\\":3,\\\"wRow\\\":1},{\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-04-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000081\\\",\\\"wCol\\\":1,\\\"wDepth\\\":1,\\\"wLayer\\\":4,\\\"wRow\\\":1},{\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-05-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000082\\\",\\\"wCol\\\":1,\\\"wDepth\\\":1,\\\"wLayer\\\":5,\\\"wRow\\\":1},{\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-06-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000004\\\",\\\"wCol\\\":1,\\\"wDepth\\\":1,\\\"wLayer\\\":6,\\\"wRow\\\":1},{\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-07-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000009\\\",\\\"wCol\\\":1,\\\"wDepth\\\":1,\\\"wLayer\\\":7,\\\"wRow\\\":1},{\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-08-01\\\",\\\"locationStatus\\\":0,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"\\\",\\\"wCol\\\":1,\\\"wDepth\\\":1,\\\"wLayer\\\":8,\\\"wRow\\\":1},{\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-09-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000098\\\",\\\"wCol\\\":1,\\\"wDepth\\\":1,\\\"wLayer\\\":9,\\\"wRow\\\":1},{\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-10-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000050\\\",\\\"wCol\\\":1,\\\"wDepth\\\":1,\\\"wLayer\\\":10,\\\"wRow\\\":1}],\\\"pages\\\":1268,\\\"total\\\":12672}}\"', '192.168.8.93', '2024-08-04 22:57:44', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408042257455041722783465504', '查询库位信息', 'getLocationsByPage', '[{\"wCol\": null, \"wRow\": null, \"isAsc\": true, \"areaId\": null, \"isLock\": null, \"pageNo\": 1, \"sortBy\": \"\", \"wDepth\": null, \"wLayer\": null, \"pageSize\": 10, \"vehicleId\": \"\", \"locationId\": \"\", \"equipmentId\": null, \"locationType\": null, \"locationStatus\": null}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"查询成功\\\",\\\"returnData\\\":{\\\"lists\\\":[{\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-01-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000176\\\",\\\"wCol\\\":1,\\\"wDepth\\\":1,\\\"wLayer\\\":1,\\\"wRow\\\":1},{\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-02-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000032\\\",\\\"wCol\\\":1,\\\"wDepth\\\":1,\\\"wLayer\\\":2,\\\"wRow\\\":1},{\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-03-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000041\\\",\\\"wCol\\\":1,\\\"wDepth\\\":1,\\\"wLayer\\\":3,\\\"wRow\\\":1},{\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-04-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000081\\\",\\\"wCol\\\":1,\\\"wDepth\\\":1,\\\"wLayer\\\":4,\\\"wRow\\\":1},{\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-05-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000082\\\",\\\"wCol\\\":1,\\\"wDepth\\\":1,\\\"wLayer\\\":5,\\\"wRow\\\":1},{\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-06-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000004\\\",\\\"wCol\\\":1,\\\"wDepth\\\":1,\\\"wLayer\\\":6,\\\"wRow\\\":1},{\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-07-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000009\\\",\\\"wCol\\\":1,\\\"wDepth\\\":1,\\\"wLayer\\\":7,\\\"wRow\\\":1},{\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-08-01\\\",\\\"locationStatus\\\":0,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"\\\",\\\"wCol\\\":1,\\\"wDepth\\\":1,\\\"wLayer\\\":8,\\\"wRow\\\":1},{\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-09-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000098\\\",\\\"wCol\\\":1,\\\"wDepth\\\":1,\\\"wLayer\\\":9,\\\"wRow\\\":1},{\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-10-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000050\\\",\\\"wCol\\\":1,\\\"wDepth\\\":1,\\\"wLayer\\\":10,\\\"wRow\\\":1}],\\\"pages\\\":1268,\\\"total\\\":12672}}\"', '192.168.8.93', '2024-08-04 22:57:46', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408042257457111722783465711', '查询库位信息', 'getLocationsByPage', '[{\"wCol\": null, \"wRow\": null, \"isAsc\": true, \"areaId\": null, \"isLock\": null, \"pageNo\": 1, \"sortBy\": \"\", \"wDepth\": null, \"wLayer\": null, \"pageSize\": 10, \"vehicleId\": \"\", \"locationId\": \"\", \"equipmentId\": null, \"locationType\": null, \"locationStatus\": null}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"查询成功\\\",\\\"returnData\\\":{\\\"lists\\\":[{\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-01-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000176\\\",\\\"wCol\\\":1,\\\"wDepth\\\":1,\\\"wLayer\\\":1,\\\"wRow\\\":1},{\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-02-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000032\\\",\\\"wCol\\\":1,\\\"wDepth\\\":1,\\\"wLayer\\\":2,\\\"wRow\\\":1},{\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-03-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000041\\\",\\\"wCol\\\":1,\\\"wDepth\\\":1,\\\"wLayer\\\":3,\\\"wRow\\\":1},{\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-04-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000081\\\",\\\"wCol\\\":1,\\\"wDepth\\\":1,\\\"wLayer\\\":4,\\\"wRow\\\":1},{\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-05-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000082\\\",\\\"wCol\\\":1,\\\"wDepth\\\":1,\\\"wLayer\\\":5,\\\"wRow\\\":1},{\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-06-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000004\\\",\\\"wCol\\\":1,\\\"wDepth\\\":1,\\\"wLayer\\\":6,\\\"wRow\\\":1},{\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-07-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000009\\\",\\\"wCol\\\":1,\\\"wDepth\\\":1,\\\"wLayer\\\":7,\\\"wRow\\\":1},{\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-08-01\\\",\\\"locationStatus\\\":0,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"\\\",\\\"wCol\\\":1,\\\"wDepth\\\":1,\\\"wLayer\\\":8,\\\"wRow\\\":1},{\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-09-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000098\\\",\\\"wCol\\\":1,\\\"wDepth\\\":1,\\\"wLayer\\\":9,\\\"wRow\\\":1},{\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-10-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000050\\\",\\\"wCol\\\":1,\\\"wDepth\\\":1,\\\"wLayer\\\":10,\\\"wRow\\\":1}],\\\"pages\\\":1268,\\\"total\\\":12672}}\"', '192.168.8.93', '2024-08-04 22:57:46', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408042257458961722783465896', '查询库位信息', 'getLocationsByPage', '[{\"wCol\": null, \"wRow\": null, \"isAsc\": true, \"areaId\": null, \"isLock\": null, \"pageNo\": 1, \"sortBy\": \"\", \"wDepth\": null, \"wLayer\": null, \"pageSize\": 10, \"vehicleId\": \"\", \"locationId\": \"\", \"equipmentId\": null, \"locationType\": null, \"locationStatus\": null}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"查询成功\\\",\\\"returnData\\\":{\\\"lists\\\":[{\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-01-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000176\\\",\\\"wCol\\\":1,\\\"wDepth\\\":1,\\\"wLayer\\\":1,\\\"wRow\\\":1},{\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-02-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000032\\\",\\\"wCol\\\":1,\\\"wDepth\\\":1,\\\"wLayer\\\":2,\\\"wRow\\\":1},{\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-03-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000041\\\",\\\"wCol\\\":1,\\\"wDepth\\\":1,\\\"wLayer\\\":3,\\\"wRow\\\":1},{\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-04-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000081\\\",\\\"wCol\\\":1,\\\"wDepth\\\":1,\\\"wLayer\\\":4,\\\"wRow\\\":1},{\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-05-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000082\\\",\\\"wCol\\\":1,\\\"wDepth\\\":1,\\\"wLayer\\\":5,\\\"wRow\\\":1},{\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-06-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000004\\\",\\\"wCol\\\":1,\\\"wDepth\\\":1,\\\"wLayer\\\":6,\\\"wRow\\\":1},{\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-07-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000009\\\",\\\"wCol\\\":1,\\\"wDepth\\\":1,\\\"wLayer\\\":7,\\\"wRow\\\":1},{\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-08-01\\\",\\\"locationStatus\\\":0,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"\\\",\\\"wCol\\\":1,\\\"wDepth\\\":1,\\\"wLayer\\\":8,\\\"wRow\\\":1},{\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-09-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000098\\\",\\\"wCol\\\":1,\\\"wDepth\\\":1,\\\"wLayer\\\":9,\\\"wRow\\\":1},{\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-10-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000050\\\",\\\"wCol\\\":1,\\\"wDepth\\\":1,\\\"wLayer\\\":10,\\\"wRow\\\":1}],\\\"pages\\\":1268,\\\"total\\\":12672}}\"', '192.168.8.93', '2024-08-04 22:57:46', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408042257460731722783466073', '查询库位信息', 'getLocationsByPage', '[{\"wCol\": null, \"wRow\": null, \"isAsc\": true, \"areaId\": null, \"isLock\": null, \"pageNo\": 1, \"sortBy\": \"\", \"wDepth\": null, \"wLayer\": null, \"pageSize\": 10, \"vehicleId\": \"\", \"locationId\": \"\", \"equipmentId\": null, \"locationType\": null, \"locationStatus\": null}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"查询成功\\\",\\\"returnData\\\":{\\\"lists\\\":[{\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-01-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000176\\\",\\\"wCol\\\":1,\\\"wDepth\\\":1,\\\"wLayer\\\":1,\\\"wRow\\\":1},{\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-02-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000032\\\",\\\"wCol\\\":1,\\\"wDepth\\\":1,\\\"wLayer\\\":2,\\\"wRow\\\":1},{\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-03-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000041\\\",\\\"wCol\\\":1,\\\"wDepth\\\":1,\\\"wLayer\\\":3,\\\"wRow\\\":1},{\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-04-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000081\\\",\\\"wCol\\\":1,\\\"wDepth\\\":1,\\\"wLayer\\\":4,\\\"wRow\\\":1},{\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-05-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000082\\\",\\\"wCol\\\":1,\\\"wDepth\\\":1,\\\"wLayer\\\":5,\\\"wRow\\\":1},{\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-06-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000004\\\",\\\"wCol\\\":1,\\\"wDepth\\\":1,\\\"wLayer\\\":6,\\\"wRow\\\":1},{\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-07-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000009\\\",\\\"wCol\\\":1,\\\"wDepth\\\":1,\\\"wLayer\\\":7,\\\"wRow\\\":1},{\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-08-01\\\",\\\"locationStatus\\\":0,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"\\\",\\\"wCol\\\":1,\\\"wDepth\\\":1,\\\"wLayer\\\":8,\\\"wRow\\\":1},{\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-09-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000098\\\",\\\"wCol\\\":1,\\\"wDepth\\\":1,\\\"wLayer\\\":9,\\\"wRow\\\":1},{\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-10-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000050\\\",\\\"wCol\\\":1,\\\"wDepth\\\":1,\\\"wLayer\\\":10,\\\"wRow\\\":1}],\\\"pages\\\":1268,\\\"total\\\":12672}}\"', '192.168.8.93', '2024-08-04 22:57:46', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408042257462441722783466244', '查询库位信息', 'getLocationsByPage', '[{\"wCol\": null, \"wRow\": null, \"isAsc\": true, \"areaId\": null, \"isLock\": null, \"pageNo\": 1, \"sortBy\": \"\", \"wDepth\": null, \"wLayer\": null, \"pageSize\": 10, \"vehicleId\": \"\", \"locationId\": \"\", \"equipmentId\": null, \"locationType\": null, \"locationStatus\": null}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"查询成功\\\",\\\"returnData\\\":{\\\"lists\\\":[{\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-01-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000176\\\",\\\"wCol\\\":1,\\\"wDepth\\\":1,\\\"wLayer\\\":1,\\\"wRow\\\":1},{\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-02-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000032\\\",\\\"wCol\\\":1,\\\"wDepth\\\":1,\\\"wLayer\\\":2,\\\"wRow\\\":1},{\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-03-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000041\\\",\\\"wCol\\\":1,\\\"wDepth\\\":1,\\\"wLayer\\\":3,\\\"wRow\\\":1},{\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-04-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000081\\\",\\\"wCol\\\":1,\\\"wDepth\\\":1,\\\"wLayer\\\":4,\\\"wRow\\\":1},{\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-05-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000082\\\",\\\"wCol\\\":1,\\\"wDepth\\\":1,\\\"wLayer\\\":5,\\\"wRow\\\":1},{\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-06-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000004\\\",\\\"wCol\\\":1,\\\"wDepth\\\":1,\\\"wLayer\\\":6,\\\"wRow\\\":1},{\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-07-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000009\\\",\\\"wCol\\\":1,\\\"wDepth\\\":1,\\\"wLayer\\\":7,\\\"wRow\\\":1},{\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-08-01\\\",\\\"locationStatus\\\":0,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"\\\",\\\"wCol\\\":1,\\\"wDepth\\\":1,\\\"wLayer\\\":8,\\\"wRow\\\":1},{\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-09-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000098\\\",\\\"wCol\\\":1,\\\"wDepth\\\":1,\\\"wLayer\\\":9,\\\"wRow\\\":1},{\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-10-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000050\\\",\\\"wCol\\\":1,\\\"wDepth\\\":1,\\\"wLayer\\\":10,\\\"wRow\\\":1}],\\\"pages\\\":1268,\\\"total\\\":12672}}\"', '192.168.8.93', '2024-08-04 22:57:46', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408042257598841722783479884', '查询库位信息', 'getLocationsByPage', '[{\"wCol\": null, \"wRow\": null, \"isAsc\": true, \"areaId\": null, \"isLock\": null, \"pageNo\": 1, \"sortBy\": \"\", \"wDepth\": null, \"wLayer\": null, \"pageSize\": 10, \"vehicleId\": \"\", \"locationId\": \"\", \"equipmentId\": null, \"locationType\": null, \"locationStatus\": null}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"查询成功\\\",\\\"returnData\\\":{\\\"lists\\\":[{\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-01-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000176\\\",\\\"wCol\\\":1,\\\"wDepth\\\":1,\\\"wLayer\\\":1,\\\"wRow\\\":1},{\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-02-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000032\\\",\\\"wCol\\\":1,\\\"wDepth\\\":1,\\\"wLayer\\\":2,\\\"wRow\\\":1},{\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-03-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000041\\\",\\\"wCol\\\":1,\\\"wDepth\\\":1,\\\"wLayer\\\":3,\\\"wRow\\\":1},{\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-04-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000081\\\",\\\"wCol\\\":1,\\\"wDepth\\\":1,\\\"wLayer\\\":4,\\\"wRow\\\":1},{\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-05-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000082\\\",\\\"wCol\\\":1,\\\"wDepth\\\":1,\\\"wLayer\\\":5,\\\"wRow\\\":1},{\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-06-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000004\\\",\\\"wCol\\\":1,\\\"wDepth\\\":1,\\\"wLayer\\\":6,\\\"wRow\\\":1},{\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-07-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000009\\\",\\\"wCol\\\":1,\\\"wDepth\\\":1,\\\"wLayer\\\":7,\\\"wRow\\\":1},{\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-08-01\\\",\\\"locationStatus\\\":0,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"\\\",\\\"wCol\\\":1,\\\"wDepth\\\":1,\\\"wLayer\\\":8,\\\"wRow\\\":1},{\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-09-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000098\\\",\\\"wCol\\\":1,\\\"wDepth\\\":1,\\\"wLayer\\\":9,\\\"wRow\\\":1},{\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-10-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000050\\\",\\\"wCol\\\":1,\\\"wDepth\\\":1,\\\"wLayer\\\":10,\\\"wRow\\\":1}],\\\"pages\\\":1268,\\\"total\\\":12672}}\"', '192.168.8.93', '2024-08-04 22:58:00', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408042304519361722783891936', '查询库位信息', 'getLocationsByPage', '[{\"wCol\": null, \"wRow\": null, \"isAsc\": true, \"areaId\": null, \"isLock\": null, \"pageNo\": 1, \"sortBy\": \"\", \"wDepth\": null, \"wLayer\": null, \"pageSize\": 10, \"vehicleId\": \"\", \"locationId\": \"\", \"equipmentId\": null, \"locationType\": null, \"locationStatus\": null}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"查询成功\\\",\\\"returnData\\\":{\\\"lists\\\":[{\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-01-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000176\\\",\\\"wCol\\\":1,\\\"wDepth\\\":1,\\\"wLayer\\\":1,\\\"wRow\\\":1},{\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-02-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000032\\\",\\\"wCol\\\":1,\\\"wDepth\\\":1,\\\"wLayer\\\":2,\\\"wRow\\\":1},{\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-03-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000041\\\",\\\"wCol\\\":1,\\\"wDepth\\\":1,\\\"wLayer\\\":3,\\\"wRow\\\":1},{\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-04-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000081\\\",\\\"wCol\\\":1,\\\"wDepth\\\":1,\\\"wLayer\\\":4,\\\"wRow\\\":1},{\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-05-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000082\\\",\\\"wCol\\\":1,\\\"wDepth\\\":1,\\\"wLayer\\\":5,\\\"wRow\\\":1},{\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-06-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000004\\\",\\\"wCol\\\":1,\\\"wDepth\\\":1,\\\"wLayer\\\":6,\\\"wRow\\\":1},{\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-07-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000009\\\",\\\"wCol\\\":1,\\\"wDepth\\\":1,\\\"wLayer\\\":7,\\\"wRow\\\":1},{\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-08-01\\\",\\\"locationStatus\\\":0,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"\\\",\\\"wCol\\\":1,\\\"wDepth\\\":1,\\\"wLayer\\\":8,\\\"wRow\\\":1},{\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-09-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000098\\\",\\\"wCol\\\":1,\\\"wDepth\\\":1,\\\"wLayer\\\":9,\\\"wRow\\\":1},{\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-10-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000050\\\",\\\"wCol\\\":1,\\\"wDepth\\\":1,\\\"wLayer\\\":10,\\\"wRow\\\":1}],\\\"pages\\\":1268,\\\"total\\\":12672}}\"', '192.168.8.93', '2024-08-04 23:04:52', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408042304539751722783893975', '查询库位信息', 'getLocationsByPage', '[{\"wCol\": null, \"wRow\": null, \"isAsc\": true, \"areaId\": null, \"isLock\": null, \"pageNo\": 1, \"sortBy\": \"\", \"wDepth\": null, \"wLayer\": null, \"pageSize\": 10, \"vehicleId\": \"\", \"locationId\": \"\", \"equipmentId\": null, \"locationType\": null, \"locationStatus\": null}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"查询成功\\\",\\\"returnData\\\":{\\\"lists\\\":[{\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-01-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000176\\\",\\\"wCol\\\":1,\\\"wDepth\\\":1,\\\"wLayer\\\":1,\\\"wRow\\\":1},{\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-02-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000032\\\",\\\"wCol\\\":1,\\\"wDepth\\\":1,\\\"wLayer\\\":2,\\\"wRow\\\":1},{\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-03-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000041\\\",\\\"wCol\\\":1,\\\"wDepth\\\":1,\\\"wLayer\\\":3,\\\"wRow\\\":1},{\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-04-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000081\\\",\\\"wCol\\\":1,\\\"wDepth\\\":1,\\\"wLayer\\\":4,\\\"wRow\\\":1},{\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-05-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000082\\\",\\\"wCol\\\":1,\\\"wDepth\\\":1,\\\"wLayer\\\":5,\\\"wRow\\\":1},{\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-06-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000004\\\",\\\"wCol\\\":1,\\\"wDepth\\\":1,\\\"wLayer\\\":6,\\\"wRow\\\":1},{\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-07-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000009\\\",\\\"wCol\\\":1,\\\"wDepth\\\":1,\\\"wLayer\\\":7,\\\"wRow\\\":1},{\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-08-01\\\",\\\"locationStatus\\\":0,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"\\\",\\\"wCol\\\":1,\\\"wDepth\\\":1,\\\"wLayer\\\":8,\\\"wRow\\\":1},{\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-09-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000098\\\",\\\"wCol\\\":1,\\\"wDepth\\\":1,\\\"wLayer\\\":9,\\\"wRow\\\":1},{\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-10-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000050\\\",\\\"wCol\\\":1,\\\"wDepth\\\":1,\\\"wLayer\\\":10,\\\"wRow\\\":1}],\\\"pages\\\":1268,\\\"total\\\":12672}}\"', '192.168.8.93', '2024-08-04 23:04:54', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408042304541731722783894173', '查询库位信息', 'getLocationsByPage', '[{\"wCol\": null, \"wRow\": null, \"isAsc\": true, \"areaId\": null, \"isLock\": null, \"pageNo\": 1, \"sortBy\": \"\", \"wDepth\": null, \"wLayer\": null, \"pageSize\": 10, \"vehicleId\": \"\", \"locationId\": \"\", \"equipmentId\": null, \"locationType\": null, \"locationStatus\": null}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"查询成功\\\",\\\"returnData\\\":{\\\"lists\\\":[{\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-01-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000176\\\",\\\"wCol\\\":1,\\\"wDepth\\\":1,\\\"wLayer\\\":1,\\\"wRow\\\":1},{\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-02-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000032\\\",\\\"wCol\\\":1,\\\"wDepth\\\":1,\\\"wLayer\\\":2,\\\"wRow\\\":1},{\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-03-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000041\\\",\\\"wCol\\\":1,\\\"wDepth\\\":1,\\\"wLayer\\\":3,\\\"wRow\\\":1},{\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-04-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000081\\\",\\\"wCol\\\":1,\\\"wDepth\\\":1,\\\"wLayer\\\":4,\\\"wRow\\\":1},{\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-05-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000082\\\",\\\"wCol\\\":1,\\\"wDepth\\\":1,\\\"wLayer\\\":5,\\\"wRow\\\":1},{\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-06-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000004\\\",\\\"wCol\\\":1,\\\"wDepth\\\":1,\\\"wLayer\\\":6,\\\"wRow\\\":1},{\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-07-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000009\\\",\\\"wCol\\\":1,\\\"wDepth\\\":1,\\\"wLayer\\\":7,\\\"wRow\\\":1},{\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-08-01\\\",\\\"locationStatus\\\":0,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"\\\",\\\"wCol\\\":1,\\\"wDepth\\\":1,\\\"wLayer\\\":8,\\\"wRow\\\":1},{\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-09-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000098\\\",\\\"wCol\\\":1,\\\"wDepth\\\":1,\\\"wLayer\\\":9,\\\"wRow\\\":1},{\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-10-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000050\\\",\\\"wCol\\\":1,\\\"wDepth\\\":1,\\\"wLayer\\\":10,\\\"wRow\\\":1}],\\\"pages\\\":1268,\\\"total\\\":12672}}\"', '192.168.8.93', '2024-08-04 23:04:54', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408042304543641722783894364', '查询库位信息', 'getLocationsByPage', '[{\"wCol\": null, \"wRow\": null, \"isAsc\": true, \"areaId\": null, \"isLock\": null, \"pageNo\": 1, \"sortBy\": \"\", \"wDepth\": null, \"wLayer\": null, \"pageSize\": 10, \"vehicleId\": \"\", \"locationId\": \"\", \"equipmentId\": null, \"locationType\": null, \"locationStatus\": null}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"查询成功\\\",\\\"returnData\\\":{\\\"lists\\\":[{\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-01-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000176\\\",\\\"wCol\\\":1,\\\"wDepth\\\":1,\\\"wLayer\\\":1,\\\"wRow\\\":1},{\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-02-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000032\\\",\\\"wCol\\\":1,\\\"wDepth\\\":1,\\\"wLayer\\\":2,\\\"wRow\\\":1},{\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-03-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000041\\\",\\\"wCol\\\":1,\\\"wDepth\\\":1,\\\"wLayer\\\":3,\\\"wRow\\\":1},{\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-04-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000081\\\",\\\"wCol\\\":1,\\\"wDepth\\\":1,\\\"wLayer\\\":4,\\\"wRow\\\":1},{\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-05-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000082\\\",\\\"wCol\\\":1,\\\"wDepth\\\":1,\\\"wLayer\\\":5,\\\"wRow\\\":1},{\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-06-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000004\\\",\\\"wCol\\\":1,\\\"wDepth\\\":1,\\\"wLayer\\\":6,\\\"wRow\\\":1},{\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-07-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000009\\\",\\\"wCol\\\":1,\\\"wDepth\\\":1,\\\"wLayer\\\":7,\\\"wRow\\\":1},{\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-08-01\\\",\\\"locationStatus\\\":0,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"\\\",\\\"wCol\\\":1,\\\"wDepth\\\":1,\\\"wLayer\\\":8,\\\"wRow\\\":1},{\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-09-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000098\\\",\\\"wCol\\\":1,\\\"wDepth\\\":1,\\\"wLayer\\\":9,\\\"wRow\\\":1},{\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-10-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000050\\\",\\\"wCol\\\":1,\\\"wDepth\\\":1,\\\"wLayer\\\":10,\\\"wRow\\\":1}],\\\"pages\\\":1268,\\\"total\\\":12672}}\"', '192.168.8.93', '2024-08-04 23:04:54', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408042305094551722783909455', '更新库位信息', 'updateLocation', '[{\"wCol\": 1, \"wRow\": 1, \"isAsc\": true, \"areaId\": 1, \"isLock\": 0, \"pageNo\": 1, \"sortBy\": \"\", \"wDepth\": 1, \"wLayer\": 1, \"pageSize\": 10, \"vehicleId\": \"ASRS000176\", \"locationId\": \"01-01-01-01\", \"equipmentId\": 1, \"locationType\": 1, \"locationStatus\": 1}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"更新库位信息成功\\\"}\"', '192.168.8.93', '2024-08-04 23:05:09', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408042305094921722783909492', '查询库位信息', 'getLocationsByPage', '[{\"wCol\": null, \"wRow\": null, \"isAsc\": true, \"areaId\": null, \"isLock\": null, \"pageNo\": 1, \"sortBy\": \"\", \"wDepth\": null, \"wLayer\": null, \"pageSize\": 10, \"vehicleId\": \"\", \"locationId\": \"\", \"equipmentId\": null, \"locationType\": null, \"locationStatus\": null}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"查询成功\\\",\\\"returnData\\\":{\\\"lists\\\":[{\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-01-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000176\\\",\\\"wCol\\\":1,\\\"wDepth\\\":1,\\\"wLayer\\\":1,\\\"wRow\\\":1},{\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-02-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000032\\\",\\\"wCol\\\":1,\\\"wDepth\\\":1,\\\"wLayer\\\":2,\\\"wRow\\\":1},{\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-03-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000041\\\",\\\"wCol\\\":1,\\\"wDepth\\\":1,\\\"wLayer\\\":3,\\\"wRow\\\":1},{\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-04-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000081\\\",\\\"wCol\\\":1,\\\"wDepth\\\":1,\\\"wLayer\\\":4,\\\"wRow\\\":1},{\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-05-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000082\\\",\\\"wCol\\\":1,\\\"wDepth\\\":1,\\\"wLayer\\\":5,\\\"wRow\\\":1},{\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-06-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000004\\\",\\\"wCol\\\":1,\\\"wDepth\\\":1,\\\"wLayer\\\":6,\\\"wRow\\\":1},{\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-07-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000009\\\",\\\"wCol\\\":1,\\\"wDepth\\\":1,\\\"wLayer\\\":7,\\\"wRow\\\":1},{\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-08-01\\\",\\\"locationStatus\\\":0,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"\\\",\\\"wCol\\\":1,\\\"wDepth\\\":1,\\\"wLayer\\\":8,\\\"wRow\\\":1},{\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-09-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000098\\\",\\\"wCol\\\":1,\\\"wDepth\\\":1,\\\"wLayer\\\":9,\\\"wRow\\\":1},{\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-10-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000050\\\",\\\"wCol\\\":1,\\\"wDepth\\\":1,\\\"wLayer\\\":10,\\\"wRow\\\":1}],\\\"pages\\\":1268,\\\"total\\\":12672}}\"', '192.168.8.93', '2024-08-04 23:05:09', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408050839262451722818366245', '带密码登录', 'loginWithAuth', '[{\"isAsc\": true, \"pageNo\": 1, \"roleId\": null, \"sortBy\": \"\", \"userId\": null, \"addTime\": null, \"addUser\": \"\", \"pageSize\": 10, \"userName\": \"\", \"updateTime\": null, \"loginAccount\": \"admin\", \"loginPassword\": \"admin\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"登录成功\\\",\\\"returnData\\\":{\\\"menuList\\\":[{\\\"children\\\":[{\\\"children\\\":[],\\\"id\\\":\\\"11\\\",\\\"labelName\\\":\\\"入库\\\",\\\"path\\\":\\\"/goodsIn\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"12\\\",\\\"labelName\\\":\\\"出库\\\",\\\"path\\\":\\\"/goodsOut\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"13\\\",\\\"labelName\\\":\\\"盘点\\\",\\\"path\\\":\\\"/inventory\\\"}],\\\"iconValue\\\":\\\"Operation\\\",\\\"id\\\":\\\"1\\\",\\\"labelName\\\":\\\"操作\\\",\\\"path\\\":\\\"\\\"},{\\\"children\\\":[{\\\"children\\\":[],\\\"id\\\":\\\"21\\\",\\\"labelName\\\":\\\"库存信息\\\",\\\"path\\\":\\\"/stock\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"22\\\",\\\"labelName\\\":\\\"物料信息\\\",\\\"path\\\":\\\"/goods\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"23\\\",\\\"labelName\\\":\\\"入库记录\\\",\\\"path\\\":\\\"/inTaskRecord\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"24\\\",\\\"labelName\\\":\\\"出库记录\\\",\\\"path\\\":\\\"/outTaskRecord\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"241\\\",\\\"labelName\\\":\\\"盘点记录\\\",\\\"path\\\":\\\"/inventoryRecord\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"25\\\",\\\"labelName\\\":\\\"任务监控\\\",\\\"path\\\":\\\"/taskMonitor\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"26\\\",\\\"labelName\\\":\\\"库位监控\\\",\\\"path\\\":\\\"/location\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"27\\\",\\\"labelName\\\":\\\"料箱监控\\\",\\\"path\\\":\\\"/vehicles\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"28\\\",\\\"labelName\\\":\\\"接口日志\\\",\\\"path\\\":\\\"/wmsLog\\\"}],\\\"iconValue\\\":\\\"Histogram\\\",\\\"id\\\":\\\"2\\\",\\\"labelName\\\":\\\"数据\\\",\\\"path\\\":\\\"\\\"},{\\\"children\\\":[{\\\"children\\\":[],\\\"id\\\":\\\"35\\\",\\\"labelName\\\":\\\"系统配置\\\",\\\"path\\\":\\\"/config\\\"}],\\\"iconValue\\\":\\\"Setting\\\",\\\"id\\\":\\\"3\\\",\\\"labelName\\\":\\\"系统\\\"},{\\\"children\\\":[{\\\"children\\\":[],\\\"id\\\":\\\"41\\\",\\\"labelName\\\":\\\"备料执行\\\",\\\"path\\\":\\\"/testDoKitting\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"42\\\",\\\"labelName\\\":\\\"备料完成\\\",\\\"path\\\":\\\"/testFinishKitting\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"43\\\",\\\"labelName\\\":\\\"呼叫空箱\\\",\\\"path\\\":\\\"/testCallEmptyVehicle\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"44\\\",\\\"labelName\\\":\\\"整理盒子\\\",\\\"path\\\":\\\"/testSortBoxs\\\"}],\\\"iconValue\\\":\\\"Lock\\\",\\\"id\\\":\\\"4\\\",\\\"labelName\\\":\\\"测试\\\"}],\\\"standId\\\":\\\"ASRS-#1\\\",\\\"user\\\":{\\\"addTime\\\":\\\"2023-03-23 11:17:06\\\",\\\"addUser\\\":\\\"系统\\\",\\\"loginAccount\\\":\\\"admin\\\",\\\"loginPassword\\\":\\\"812C0C84E2970FA98456DDC5B0B59594\\\",\\\"roleId\\\":1,\\\"updateTime\\\":\\\"2023-03-23 11:17:10\\\",\\\"userId\\\":1,\\\"userName\\\":\\\"管理员\\\"}}}\"', '192.168.8.93', '2024-08-05 08:39:26', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408050839344161722818374416', '查询系统配置', 'getConfigsByPage', '[{\"isAsc\": true, \"pageNo\": 1, \"sortBy\": \"\", \"configId\": null, \"pageSize\": 10, \"configKey\": \"\", \"configName\": \"\", \"configType\": \"\", \"configValue\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"查询系统配置成功。\\\",\\\"returnData\\\":{\\\"lists\\\":[{\\\"configId\\\":1,\\\"configKey\\\":\\\"URL_WCS_TASK\\\",\\\"configName\\\":\\\"WCS接收任务URL\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask\\\"},{\\\"configId\\\":2,\\\"configKey\\\":\\\"URL_NEW_DESTINATION\\\",\\\"configName\\\":\\\"WCS接收新库位URL\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask\\\"},{\\\"configId\\\":3,\\\"configKey\\\":\\\"URL_WCS_PICK_TASK\\\",\\\"configName\\\":\\\"WCS接收拣选任务URL\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"http://192.168.8.62:18990/api/wms/convey/conveyTask\\\"},{\\\"configId\\\":4,\\\"configKey\\\":\\\"URL_WCS_E_TASK\\\",\\\"configName\\\":\\\"电子标签亮灯地址\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"http://192.168.8.62:18990/api/wms/elTag/elTagTask\\\"},{\\\"configId\\\":5,\\\"configKey\\\":\\\"URL_WCS_DISPOSE_VEHICLE\\\",\\\"configName\\\":\\\"Wcs释放箱子URL\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"http://192.168.8.62:18990/api/wms/convey/disposeVehicle\\\"},{\\\"configId\\\":6,\\\"configKey\\\":\\\"START_WORK\\\",\\\"configName\\\":\\\"开始工作\\\",\\\"configType\\\":\\\"3\\\",\\\"configValue\\\":\\\"0\\\"},{\\\"configId\\\":7,\\\"configKey\\\":\\\"SEND_TASK\\\",\\\"configName\\\":\\\"发送任务\\\",\\\"configType\\\":\\\"3\\\",\\\"configValue\\\":\\\"0\\\"},{\\\"configId\\\":8,\\\"configKey\\\":\\\"MAX_WEIGHT\\\",\\\"configName\\\":\\\"最大负重\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"250\\\"},{\\\"configId\\\":9,\\\"configKey\\\":\\\"MAX_VEHICLE_NUMS\\\",\\\"configName\\\":\\\"最大任务数量\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"54\\\"},{\\\"configId\\\":10,\\\"configKey\\\":\\\"SLOC_FILTER_STRING\\\",\\\"configName\\\":\\\"kitting物料筛选字符\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"DM05\\\"}],\\\"pages\\\":2,\\\"total\\\":11}}\"', '192.168.8.93', '2024-08-05 08:39:34', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408050839396871722818379687', '查询载具信息', 'getVehiclesByPage', '[{\"isAsc\": true, \"pageNo\": 1, \"sortBy\": \"\", \"isEmpty\": null, \"pageSize\": 10, \"vehicleId\": \"\", \"vehicleType\": \"\", \"vehicleStatus\": null, \"currentLocation\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"查询成功\\\",\\\"returnData\\\":{\\\"lists\\\":[{\\\"currentLocation\\\":\\\"04-01-01-01\\\",\\\"isEmpty\\\":0,\\\"lastInTime\\\":\\\"2024-08-02 09:39:49\\\",\\\"vehicleId\\\":\\\"ASRS000001\\\",\\\"vehicleStatus\\\":2,\\\"vehicleType\\\":\\\"\\\"},{\\\"currentLocation\\\":\\\"07-01-02-01\\\",\\\"isEmpty\\\":1,\\\"lastInTime\\\":\\\"2024-08-02 10:22:20\\\",\\\"vehicleId\\\":\\\"ASRS000002\\\",\\\"vehicleStatus\\\":2,\\\"vehicleType\\\":\\\"\\\"},{\\\"currentLocation\\\":\\\"03-01-03-01\\\",\\\"isEmpty\\\":1,\\\"lastInTime\\\":\\\"2024-08-02 10:26:36\\\",\\\"vehicleId\\\":\\\"ASRS000003\\\",\\\"vehicleStatus\\\":2,\\\"vehicleType\\\":\\\"\\\"},{\\\"currentLocation\\\":\\\"01-01-06-01\\\",\\\"isEmpty\\\":1,\\\"lastInTime\\\":\\\"2024-08-02 10:25:48\\\",\\\"vehicleId\\\":\\\"ASRS000004\\\",\\\"vehicleStatus\\\":2,\\\"vehicleType\\\":\\\"\\\"},{\\\"currentLocation\\\":\\\"06-01-04-01\\\",\\\"isEmpty\\\":1,\\\"lastInTime\\\":\\\"2024-08-02 10:24:52\\\",\\\"vehicleId\\\":\\\"ASRS000005\\\",\\\"vehicleStatus\\\":2,\\\"vehicleType\\\":\\\"\\\"},{\\\"currentLocation\\\":\\\"08-01-03-01\\\",\\\"isEmpty\\\":1,\\\"lastInTime\\\":\\\"2024-08-02 10:23:47\\\",\\\"vehicleId\\\":\\\"ASRS000006\\\",\\\"vehicleStatus\\\":2,\\\"vehicleType\\\":\\\"\\\"},{\\\"currentLocation\\\":\\\"05-01-04-01\\\",\\\"isEmpty\\\":1,\\\"lastInTime\\\":\\\"2024-08-02 10:27:08\\\",\\\"vehicleId\\\":\\\"ASRS000007\\\",\\\"vehicleStatus\\\":2,\\\"vehicleType\\\":\\\"\\\"},{\\\"currentLocation\\\":\\\"04-01-03-01\\\",\\\"isEmpty\\\":1,\\\"lastInTime\\\":\\\"2024-08-02 10:23:17\\\",\\\"vehicleId\\\":\\\"ASRS000008\\\",\\\"vehicleStatus\\\":2,\\\"vehicleType\\\":\\\"\\\"},{\\\"currentLocation\\\":\\\"01-01-07-01\\\",\\\"isEmpty\\\":1,\\\"lastInTime\\\":\\\"2024-08-02 10:28:46\\\",\\\"vehicleId\\\":\\\"ASRS000009\\\",\\\"vehicleStatus\\\":2,\\\"vehicleType\\\":\\\"\\\"},{\\\"currentLocation\\\":\\\"06-01-03-01\\\",\\\"isEmpty\\\":1,\\\"lastInTime\\\":\\\"2024-08-02 10:23:45\\\",\\\"vehicleId\\\":\\\"ASRS000010\\\",\\\"vehicleStatus\\\":2,\\\"vehicleType\\\":\\\"\\\"}],\\\"pages\\\":18,\\\"total\\\":175}}\"', '192.168.8.93', '2024-08-05 08:39:40', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408050839414021722818381402', '查询库位信息', 'getLocationsByPage', '[{\"wCol\": null, \"wRow\": null, \"isAsc\": true, \"areaId\": null, \"isLock\": null, \"pageNo\": 1, \"sortBy\": \"\", \"wDepth\": null, \"wLayer\": null, \"pageSize\": 10, \"vehicleId\": \"\", \"locationId\": \"\", \"equipmentId\": null, \"locationType\": null, \"locationStatus\": null}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"查询成功\\\",\\\"returnData\\\":{\\\"lists\\\":[{\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-01-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000176\\\",\\\"wCol\\\":1,\\\"wDepth\\\":1,\\\"wLayer\\\":1,\\\"wRow\\\":1},{\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-02-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000032\\\",\\\"wCol\\\":1,\\\"wDepth\\\":1,\\\"wLayer\\\":2,\\\"wRow\\\":1},{\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-03-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000041\\\",\\\"wCol\\\":1,\\\"wDepth\\\":1,\\\"wLayer\\\":3,\\\"wRow\\\":1},{\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-04-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000081\\\",\\\"wCol\\\":1,\\\"wDepth\\\":1,\\\"wLayer\\\":4,\\\"wRow\\\":1},{\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-05-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000082\\\",\\\"wCol\\\":1,\\\"wDepth\\\":1,\\\"wLayer\\\":5,\\\"wRow\\\":1},{\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-06-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000004\\\",\\\"wCol\\\":1,\\\"wDepth\\\":1,\\\"wLayer\\\":6,\\\"wRow\\\":1},{\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-07-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000009\\\",\\\"wCol\\\":1,\\\"wDepth\\\":1,\\\"wLayer\\\":7,\\\"wRow\\\":1},{\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-08-01\\\",\\\"locationStatus\\\":0,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"\\\",\\\"wCol\\\":1,\\\"wDepth\\\":1,\\\"wLayer\\\":8,\\\"wRow\\\":1},{\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-09-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000098\\\",\\\"wCol\\\":1,\\\"wDepth\\\":1,\\\"wLayer\\\":9,\\\"wRow\\\":1},{\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-10-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000050\\\",\\\"wCol\\\":1,\\\"wDepth\\\":1,\\\"wLayer\\\":10,\\\"wRow\\\":1}],\\\"pages\\\":1268,\\\"total\\\":12672}}\"', '192.168.8.93', '2024-08-05 08:39:41', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408050839452151722818385215', '查询载具信息', 'getVehiclesByPage', '[{\"isAsc\": true, \"pageNo\": 18, \"sortBy\": \"\", \"isEmpty\": null, \"pageSize\": 10, \"vehicleId\": \"\", \"vehicleType\": \"\", \"vehicleStatus\": null, \"currentLocation\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"查询成功\\\",\\\"returnData\\\":{\\\"lists\\\":[{\\\"currentLocation\\\":\\\"05-01-18-01\\\",\\\"isEmpty\\\":0,\\\"lastInTime\\\":\\\"2024-08-02 13:57:03\\\",\\\"vehicleId\\\":\\\"ASRS000196\\\",\\\"vehicleStatus\\\":2,\\\"vehicleType\\\":\\\"\\\"},{\\\"currentLocation\\\":\\\"03-01-12-01\\\",\\\"isEmpty\\\":1,\\\"lastInTime\\\":\\\"2024-08-02 13:07:19\\\",\\\"vehicleId\\\":\\\"ASRS000197\\\",\\\"vehicleStatus\\\":2,\\\"vehicleType\\\":\\\"\\\"},{\\\"currentLocation\\\":\\\"01-01-17-01\\\",\\\"isEmpty\\\":1,\\\"lastInTime\\\":\\\"2024-08-02 12:44:40\\\",\\\"vehicleId\\\":\\\"ASRS000198\\\",\\\"vehicleStatus\\\":2,\\\"vehicleType\\\":\\\"\\\"},{\\\"currentLocation\\\":\\\"07-01-10-01\\\",\\\"isEmpty\\\":1,\\\"lastInTime\\\":\\\"2024-08-02 13:14:07\\\",\\\"vehicleId\\\":\\\"ASRS000199\\\",\\\"vehicleStatus\\\":2,\\\"vehicleType\\\":\\\"\\\"},{\\\"currentLocation\\\":\\\"01-01-18-01\\\",\\\"isEmpty\\\":1,\\\"lastInTime\\\":\\\"2024-08-02 13:26:49\\\",\\\"vehicleId\\\":\\\"ASRS000200\\\",\\\"vehicleStatus\\\":2,\\\"vehicleType\\\":\\\"\\\"}],\\\"pages\\\":18,\\\"total\\\":175}}\"', '192.168.8.93', '2024-08-05 08:39:45', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408050839475081722818387508', '查询载具信息', 'getVehiclesByPage', '[{\"isAsc\": true, \"pageNo\": 1, \"sortBy\": \"\", \"isEmpty\": null, \"pageSize\": 10, \"vehicleId\": \"\", \"vehicleType\": \"\", \"vehicleStatus\": null, \"currentLocation\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"查询成功\\\",\\\"returnData\\\":{\\\"lists\\\":[{\\\"currentLocation\\\":\\\"04-01-01-01\\\",\\\"isEmpty\\\":0,\\\"lastInTime\\\":\\\"2024-08-02 09:39:49\\\",\\\"vehicleId\\\":\\\"ASRS000001\\\",\\\"vehicleStatus\\\":2,\\\"vehicleType\\\":\\\"\\\"},{\\\"currentLocation\\\":\\\"07-01-02-01\\\",\\\"isEmpty\\\":1,\\\"lastInTime\\\":\\\"2024-08-02 10:22:20\\\",\\\"vehicleId\\\":\\\"ASRS000002\\\",\\\"vehicleStatus\\\":2,\\\"vehicleType\\\":\\\"\\\"},{\\\"currentLocation\\\":\\\"03-01-03-01\\\",\\\"isEmpty\\\":1,\\\"lastInTime\\\":\\\"2024-08-02 10:26:36\\\",\\\"vehicleId\\\":\\\"ASRS000003\\\",\\\"vehicleStatus\\\":2,\\\"vehicleType\\\":\\\"\\\"},{\\\"currentLocation\\\":\\\"01-01-06-01\\\",\\\"isEmpty\\\":1,\\\"lastInTime\\\":\\\"2024-08-02 10:25:48\\\",\\\"vehicleId\\\":\\\"ASRS000004\\\",\\\"vehicleStatus\\\":2,\\\"vehicleType\\\":\\\"\\\"},{\\\"currentLocation\\\":\\\"06-01-04-01\\\",\\\"isEmpty\\\":1,\\\"lastInTime\\\":\\\"2024-08-02 10:24:52\\\",\\\"vehicleId\\\":\\\"ASRS000005\\\",\\\"vehicleStatus\\\":2,\\\"vehicleType\\\":\\\"\\\"},{\\\"currentLocation\\\":\\\"08-01-03-01\\\",\\\"isEmpty\\\":1,\\\"lastInTime\\\":\\\"2024-08-02 10:23:47\\\",\\\"vehicleId\\\":\\\"ASRS000006\\\",\\\"vehicleStatus\\\":2,\\\"vehicleType\\\":\\\"\\\"},{\\\"currentLocation\\\":\\\"05-01-04-01\\\",\\\"isEmpty\\\":1,\\\"lastInTime\\\":\\\"2024-08-02 10:27:08\\\",\\\"vehicleId\\\":\\\"ASRS000007\\\",\\\"vehicleStatus\\\":2,\\\"vehicleType\\\":\\\"\\\"},{\\\"currentLocation\\\":\\\"04-01-03-01\\\",\\\"isEmpty\\\":1,\\\"lastInTime\\\":\\\"2024-08-02 10:23:17\\\",\\\"vehicleId\\\":\\\"ASRS000008\\\",\\\"vehicleStatus\\\":2,\\\"vehicleType\\\":\\\"\\\"},{\\\"currentLocation\\\":\\\"01-01-07-01\\\",\\\"isEmpty\\\":1,\\\"lastInTime\\\":\\\"2024-08-02 10:28:46\\\",\\\"vehicleId\\\":\\\"ASRS000009\\\",\\\"vehicleStatus\\\":2,\\\"vehicleType\\\":\\\"\\\"},{\\\"currentLocation\\\":\\\"06-01-03-01\\\",\\\"isEmpty\\\":1,\\\"lastInTime\\\":\\\"2024-08-02 10:23:45\\\",\\\"vehicleId\\\":\\\"ASRS000010\\\",\\\"vehicleStatus\\\":2,\\\"vehicleType\\\":\\\"\\\"}],\\\"pages\\\":18,\\\"total\\\":175}}\"', '192.168.8.93', '2024-08-05 08:39:48', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408050839497701722818389770', '查询载具信息', 'getVehiclesByPage', '[{\"isAsc\": true, \"pageNo\": 2, \"sortBy\": \"\", \"isEmpty\": null, \"pageSize\": 10, \"vehicleId\": \"\", \"vehicleType\": \"\", \"vehicleStatus\": null, \"currentLocation\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"查询成功\\\",\\\"returnData\\\":{\\\"lists\\\":[{\\\"currentLocation\\\":\\\"09-01-04-01\\\",\\\"isEmpty\\\":1,\\\"lastInTime\\\":\\\"2024-08-02 10:28:25\\\",\\\"vehicleId\\\":\\\"ASRS000011\\\",\\\"vehicleStatus\\\":2,\\\"vehicleType\\\":\\\"\\\"},{\\\"currentLocation\\\":\\\"04-01-04-01\\\",\\\"isEmpty\\\":1,\\\"lastInTime\\\":\\\"2024-08-02 10:24:50\\\",\\\"vehicleId\\\":\\\"ASRS000012\\\",\\\"vehicleStatus\\\":2,\\\"vehicleType\\\":\\\"\\\"},{\\\"currentLocation\\\":\\\"04-01-05-01\\\",\\\"isEmpty\\\":1,\\\"lastInTime\\\":\\\"2024-08-02 10:28:40\\\",\\\"vehicleId\\\":\\\"ASRS000013\\\",\\\"vehicleStatus\\\":2,\\\"vehicleType\\\":\\\"\\\"},{\\\"currentLocation\\\":\\\"07-01-04-01\\\",\\\"isEmpty\\\":1,\\\"lastInTime\\\":\\\"2024-08-02 10:27:25\\\",\\\"vehicleId\\\":\\\"ASRS000014\\\",\\\"vehicleStatus\\\":2,\\\"vehicleType\\\":\\\"\\\"},{\\\"currentLocation\\\":\\\"02-01-06-01\\\",\\\"isEmpty\\\":1,\\\"lastInTime\\\":\\\"2024-08-02 13:13:23\\\",\\\"vehicleId\\\":\\\"ASRS000015\\\",\\\"vehicleStatus\\\":2,\\\"vehicleType\\\":\\\"\\\"},{\\\"currentLocation\\\":\\\"02-01-04-01\\\",\\\"isEmpty\\\":1,\\\"lastInTime\\\":\\\"2024-08-02 10:27:03\\\",\\\"vehicleId\\\":\\\"ASRS000016\\\",\\\"vehicleStatus\\\":2,\\\"vehicleType\\\":\\\"\\\"},{\\\"currentLocation\\\":\\\"06-01-05-01\\\",\\\"isEmpty\\\":1,\\\"lastInTime\\\":\\\"2024-08-02 10:28:54\\\",\\\"vehicleId\\\":\\\"ASRS000017\\\",\\\"vehicleStatus\\\":2,\\\"vehicleType\\\":\\\"\\\"},{\\\"currentLocation\\\":\\\"04-01-02-01\\\",\\\"isEmpty\\\":1,\\\"lastInTime\\\":\\\"2024-08-02 10:21:27\\\",\\\"vehicleId\\\":\\\"ASRS000018\\\",\\\"vehicleStatus\\\":2,\\\"vehicleType\\\":\\\"\\\"},{\\\"currentLocation\\\":\\\"04-01-06-01\\\",\\\"isEmpty\\\":1,\\\"lastInTime\\\":\\\"2024-08-02 10:30:04\\\",\\\"vehicleId\\\":\\\"ASRS000020\\\",\\\"vehicleStatus\\\":2,\\\"vehicleType\\\":\\\"\\\"},{\\\"currentLocation\\\":\\\"02-01-05-01\\\",\\\"isEmpty\\\":1,\\\"lastInTime\\\":\\\"2024-08-02 10:24:36\\\",\\\"vehicleId\\\":\\\"ASRS000021\\\",\\\"vehicleStatus\\\":2,\\\"vehicleType\\\":\\\"\\\"}],\\\"pages\\\":18,\\\"total\\\":175}}\"', '192.168.8.93', '2024-08-05 08:39:50', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408050839527781722818392778', '查询库位信息', 'getLocationsByPage', '[{\"wCol\": null, \"wRow\": null, \"isAsc\": true, \"areaId\": null, \"isLock\": null, \"pageNo\": 1, \"sortBy\": \"\", \"wDepth\": null, \"wLayer\": null, \"pageSize\": 10, \"vehicleId\": \"\", \"locationId\": \"\", \"equipmentId\": null, \"locationType\": null, \"locationStatus\": null}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"查询成功\\\",\\\"returnData\\\":{\\\"lists\\\":[{\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-01-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000176\\\",\\\"wCol\\\":1,\\\"wDepth\\\":1,\\\"wLayer\\\":1,\\\"wRow\\\":1},{\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-02-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000032\\\",\\\"wCol\\\":1,\\\"wDepth\\\":1,\\\"wLayer\\\":2,\\\"wRow\\\":1},{\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-03-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000041\\\",\\\"wCol\\\":1,\\\"wDepth\\\":1,\\\"wLayer\\\":3,\\\"wRow\\\":1},{\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-04-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000081\\\",\\\"wCol\\\":1,\\\"wDepth\\\":1,\\\"wLayer\\\":4,\\\"wRow\\\":1},{\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-05-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000082\\\",\\\"wCol\\\":1,\\\"wDepth\\\":1,\\\"wLayer\\\":5,\\\"wRow\\\":1},{\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-06-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000004\\\",\\\"wCol\\\":1,\\\"wDepth\\\":1,\\\"wLayer\\\":6,\\\"wRow\\\":1},{\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-07-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000009\\\",\\\"wCol\\\":1,\\\"wDepth\\\":1,\\\"wLayer\\\":7,\\\"wRow\\\":1},{\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-08-01\\\",\\\"locationStatus\\\":0,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"\\\",\\\"wCol\\\":1,\\\"wDepth\\\":1,\\\"wLayer\\\":8,\\\"wRow\\\":1},{\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-09-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000098\\\",\\\"wCol\\\":1,\\\"wDepth\\\":1,\\\"wLayer\\\":9,\\\"wRow\\\":1},{\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-10-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000050\\\",\\\"wCol\\\":1,\\\"wDepth\\\":1,\\\"wLayer\\\":10,\\\"wRow\\\":1}],\\\"pages\\\":1268,\\\"total\\\":12672}}\"', '192.168.8.93', '2024-08-05 08:39:53', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408050839573431722818397343', '查询载具信息', 'getVehiclesByPage', '[{\"isAsc\": true, \"pageNo\": 18, \"sortBy\": \"\", \"isEmpty\": null, \"pageSize\": 10, \"vehicleId\": \"\", \"vehicleType\": \"\", \"vehicleStatus\": null, \"currentLocation\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"查询成功\\\",\\\"returnData\\\":{\\\"lists\\\":[{\\\"currentLocation\\\":\\\"05-01-18-01\\\",\\\"isEmpty\\\":0,\\\"lastInTime\\\":\\\"2024-08-02 13:57:03\\\",\\\"vehicleId\\\":\\\"ASRS000196\\\",\\\"vehicleStatus\\\":2,\\\"vehicleType\\\":\\\"\\\"},{\\\"currentLocation\\\":\\\"03-01-12-01\\\",\\\"isEmpty\\\":1,\\\"lastInTime\\\":\\\"2024-08-02 13:07:19\\\",\\\"vehicleId\\\":\\\"ASRS000197\\\",\\\"vehicleStatus\\\":2,\\\"vehicleType\\\":\\\"\\\"},{\\\"currentLocation\\\":\\\"01-01-17-01\\\",\\\"isEmpty\\\":1,\\\"lastInTime\\\":\\\"2024-08-02 12:44:40\\\",\\\"vehicleId\\\":\\\"ASRS000198\\\",\\\"vehicleStatus\\\":2,\\\"vehicleType\\\":\\\"\\\"},{\\\"currentLocation\\\":\\\"07-01-10-01\\\",\\\"isEmpty\\\":1,\\\"lastInTime\\\":\\\"2024-08-02 13:14:07\\\",\\\"vehicleId\\\":\\\"ASRS000199\\\",\\\"vehicleStatus\\\":2,\\\"vehicleType\\\":\\\"\\\"},{\\\"currentLocation\\\":\\\"01-01-18-01\\\",\\\"isEmpty\\\":1,\\\"lastInTime\\\":\\\"2024-08-02 13:26:49\\\",\\\"vehicleId\\\":\\\"ASRS000200\\\",\\\"vehicleStatus\\\":2,\\\"vehicleType\\\":\\\"\\\"}],\\\"pages\\\":18,\\\"total\\\":175}}\"', '192.168.8.93', '2024-08-05 08:39:57', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408050839588451722818398845', '查询载具信息', 'getVehiclesByPage', '[{\"isAsc\": true, \"pageNo\": 1, \"sortBy\": \"\", \"isEmpty\": null, \"pageSize\": 10, \"vehicleId\": \"\", \"vehicleType\": \"\", \"vehicleStatus\": null, \"currentLocation\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"查询成功\\\",\\\"returnData\\\":{\\\"lists\\\":[{\\\"currentLocation\\\":\\\"04-01-01-01\\\",\\\"isEmpty\\\":0,\\\"lastInTime\\\":\\\"2024-08-02 09:39:49\\\",\\\"vehicleId\\\":\\\"ASRS000001\\\",\\\"vehicleStatus\\\":2,\\\"vehicleType\\\":\\\"\\\"},{\\\"currentLocation\\\":\\\"07-01-02-01\\\",\\\"isEmpty\\\":1,\\\"lastInTime\\\":\\\"2024-08-02 10:22:20\\\",\\\"vehicleId\\\":\\\"ASRS000002\\\",\\\"vehicleStatus\\\":2,\\\"vehicleType\\\":\\\"\\\"},{\\\"currentLocation\\\":\\\"03-01-03-01\\\",\\\"isEmpty\\\":1,\\\"lastInTime\\\":\\\"2024-08-02 10:26:36\\\",\\\"vehicleId\\\":\\\"ASRS000003\\\",\\\"vehicleStatus\\\":2,\\\"vehicleType\\\":\\\"\\\"},{\\\"currentLocation\\\":\\\"01-01-06-01\\\",\\\"isEmpty\\\":1,\\\"lastInTime\\\":\\\"2024-08-02 10:25:48\\\",\\\"vehicleId\\\":\\\"ASRS000004\\\",\\\"vehicleStatus\\\":2,\\\"vehicleType\\\":\\\"\\\"},{\\\"currentLocation\\\":\\\"06-01-04-01\\\",\\\"isEmpty\\\":1,\\\"lastInTime\\\":\\\"2024-08-02 10:24:52\\\",\\\"vehicleId\\\":\\\"ASRS000005\\\",\\\"vehicleStatus\\\":2,\\\"vehicleType\\\":\\\"\\\"},{\\\"currentLocation\\\":\\\"08-01-03-01\\\",\\\"isEmpty\\\":1,\\\"lastInTime\\\":\\\"2024-08-02 10:23:47\\\",\\\"vehicleId\\\":\\\"ASRS000006\\\",\\\"vehicleStatus\\\":2,\\\"vehicleType\\\":\\\"\\\"},{\\\"currentLocation\\\":\\\"05-01-04-01\\\",\\\"isEmpty\\\":1,\\\"lastInTime\\\":\\\"2024-08-02 10:27:08\\\",\\\"vehicleId\\\":\\\"ASRS000007\\\",\\\"vehicleStatus\\\":2,\\\"vehicleType\\\":\\\"\\\"},{\\\"currentLocation\\\":\\\"04-01-03-01\\\",\\\"isEmpty\\\":1,\\\"lastInTime\\\":\\\"2024-08-02 10:23:17\\\",\\\"vehicleId\\\":\\\"ASRS000008\\\",\\\"vehicleStatus\\\":2,\\\"vehicleType\\\":\\\"\\\"},{\\\"currentLocation\\\":\\\"01-01-07-01\\\",\\\"isEmpty\\\":1,\\\"lastInTime\\\":\\\"2024-08-02 10:28:46\\\",\\\"vehicleId\\\":\\\"ASRS000009\\\",\\\"vehicleStatus\\\":2,\\\"vehicleType\\\":\\\"\\\"},{\\\"currentLocation\\\":\\\"06-01-03-01\\\",\\\"isEmpty\\\":1,\\\"lastInTime\\\":\\\"2024-08-02 10:23:45\\\",\\\"vehicleId\\\":\\\"ASRS000010\\\",\\\"vehicleStatus\\\":2,\\\"vehicleType\\\":\\\"\\\"}],\\\"pages\\\":18,\\\"total\\\":175}}\"', '192.168.8.93', '2024-08-05 08:39:59', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408050840017601722818401760', '查询载具信息', 'getVehiclesByPage', '[{\"isAsc\": true, \"pageNo\": 3, \"sortBy\": \"\", \"isEmpty\": null, \"pageSize\": 10, \"vehicleId\": \"\", \"vehicleType\": \"\", \"vehicleStatus\": null, \"currentLocation\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"查询成功\\\",\\\"returnData\\\":{\\\"lists\\\":[{\\\"currentLocation\\\":\\\"03-01-06-01\\\",\\\"isEmpty\\\":1,\\\"lastInTime\\\":\\\"2024-08-02 10:29:17\\\",\\\"vehicleId\\\":\\\"ASRS000022\\\",\\\"vehicleStatus\\\":2,\\\"vehicleType\\\":\\\"\\\"},{\\\"currentLocation\\\":\\\"03-01-05-01\\\",\\\"isEmpty\\\":1,\\\"lastInTime\\\":\\\"2024-08-02 10:27:42\\\",\\\"vehicleId\\\":\\\"ASRS000023\\\",\\\"vehicleStatus\\\":2,\\\"vehicleType\\\":\\\"\\\"},{\\\"currentLocation\\\":\\\"01-01-12-01\\\",\\\"isEmpty\\\":1,\\\"lastInTime\\\":\\\"2024-08-02 10:36:12\\\",\\\"vehicleId\\\":\\\"ASRS000024\\\",\\\"vehicleStatus\\\":2,\\\"vehicleType\\\":\\\"\\\"},{\\\"currentLocation\\\":\\\"09-01-09-01\\\",\\\"isEmpty\\\":1,\\\"lastInTime\\\":\\\"2024-08-02 10:36:55\\\",\\\"vehicleId\\\":\\\"ASRS000025\\\",\\\"vehicleStatus\\\":2,\\\"vehicleType\\\":\\\"\\\"},{\\\"currentLocation\\\":\\\"08-01-12-01\\\",\\\"isEmpty\\\":1,\\\"lastInTime\\\":\\\"2024-08-02 12:35:28\\\",\\\"vehicleId\\\":\\\"ASRS000026\\\",\\\"vehicleStatus\\\":2,\\\"vehicleType\\\":\\\"\\\"},{\\\"currentLocation\\\":\\\"03-01-11-01\\\",\\\"isEmpty\\\":1,\\\"lastInTime\\\":\\\"2024-08-02 12:41:38\\\",\\\"vehicleId\\\":\\\"ASRS000027\\\",\\\"vehicleStatus\\\":2,\\\"vehicleType\\\":\\\"\\\"},{\\\"currentLocation\\\":\\\"02-01-12-01\\\",\\\"isEmpty\\\":1,\\\"lastInTime\\\":\\\"2024-08-02 12:42:23\\\",\\\"vehicleId\\\":\\\"ASRS000028\\\",\\\"vehicleStatus\\\":2,\\\"vehicleType\\\":\\\"\\\"},{\\\"currentLocation\\\":\\\"07-01-07-01\\\",\\\"isEmpty\\\":1,\\\"lastInTime\\\":\\\"2024-08-02 12:33:07\\\",\\\"vehicleId\\\":\\\"ASRS000029\\\",\\\"vehicleStatus\\\":2,\\\"vehicleType\\\":\\\"\\\"},{\\\"currentLocation\\\":\\\"03-01-04-01\\\",\\\"isEmpty\\\":1,\\\"lastInTime\\\":\\\"2024-08-02 10:27:15\\\",\\\"vehicleId\\\":\\\"ASRS000030\\\",\\\"vehicleStatus\\\":2,\\\"vehicleType\\\":\\\"\\\"},{\\\"currentLocation\\\":\\\"02-01-13-01\\\",\\\"isEmpty\\\":1,\\\"lastInTime\\\":\\\"2024-08-02 10:37:07\\\",\\\"vehicleId\\\":\\\"ASRS000031\\\",\\\"vehicleStatus\\\":2,\\\"vehicleType\\\":\\\"\\\"}],\\\"pages\\\":18,\\\"total\\\":175}}\"', '192.168.8.93', '2024-08-05 08:40:02', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408050840025781722818402578', '查询载具信息', 'getVehiclesByPage', '[{\"isAsc\": true, \"pageNo\": 4, \"sortBy\": \"\", \"isEmpty\": null, \"pageSize\": 10, \"vehicleId\": \"\", \"vehicleType\": \"\", \"vehicleStatus\": null, \"currentLocation\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"查询成功\\\",\\\"returnData\\\":{\\\"lists\\\":[{\\\"currentLocation\\\":\\\"01-01-02-01\\\",\\\"isEmpty\\\":1,\\\"lastInTime\\\":\\\"2024-08-02 10:21:08\\\",\\\"vehicleId\\\":\\\"ASRS000032\\\",\\\"vehicleStatus\\\":2,\\\"vehicleType\\\":\\\"\\\"},{\\\"currentLocation\\\":\\\"08-01-04-01\\\",\\\"isEmpty\\\":1,\\\"lastInTime\\\":\\\"2024-08-02 10:24:56\\\",\\\"vehicleId\\\":\\\"ASRS000033\\\",\\\"vehicleStatus\\\":2,\\\"vehicleType\\\":\\\"\\\"},{\\\"currentLocation\\\":\\\"07-01-01-01\\\",\\\"isEmpty\\\":1,\\\"lastInTime\\\":\\\"2024-08-02 10:20:27\\\",\\\"vehicleId\\\":\\\"ASRS000034\\\",\\\"vehicleStatus\\\":2,\\\"vehicleType\\\":\\\"\\\"},{\\\"currentLocation\\\":\\\"08-01-11-01\\\",\\\"isEmpty\\\":1,\\\"lastInTime\\\":\\\"2024-08-02 10:37:42\\\",\\\"vehicleId\\\":\\\"ASRS000035\\\",\\\"vehicleStatus\\\":2,\\\"vehicleType\\\":\\\"\\\"},{\\\"currentLocation\\\":\\\"09-01-01-01\\\",\\\"isEmpty\\\":1,\\\"lastInTime\\\":\\\"2024-08-02 10:21:30\\\",\\\"vehicleId\\\":\\\"ASRS000036\\\",\\\"vehicleStatus\\\":2,\\\"vehicleType\\\":\\\"\\\"},{\\\"currentLocation\\\":\\\"09-01-03-01\\\",\\\"isEmpty\\\":1,\\\"lastInTime\\\":\\\"2024-08-02 10:24:22\\\",\\\"vehicleId\\\":\\\"ASRS000037\\\",\\\"vehicleStatus\\\":2,\\\"vehicleType\\\":\\\"\\\"},{\\\"currentLocation\\\":\\\"01-01-13-01\\\",\\\"isEmpty\\\":1,\\\"lastInTime\\\":\\\"2024-08-02 10:36:56\\\",\\\"vehicleId\\\":\\\"ASRS000038\\\",\\\"vehicleStatus\\\":2,\\\"vehicleType\\\":\\\"\\\"},{\\\"currentLocation\\\":\\\"09-01-02-01\\\",\\\"isEmpty\\\":1,\\\"lastInTime\\\":\\\"2024-08-02 10:22:29\\\",\\\"vehicleId\\\":\\\"ASRS000039\\\",\\\"vehicleStatus\\\":2,\\\"vehicleType\\\":\\\"\\\"},{\\\"currentLocation\\\":\\\"03-01-02-01\\\",\\\"isEmpty\\\":1,\\\"lastInTime\\\":\\\"2024-08-02 10:26:25\\\",\\\"vehicleId\\\":\\\"ASRS000040\\\",\\\"vehicleStatus\\\":2,\\\"vehicleType\\\":\\\"\\\"},{\\\"currentLocation\\\":\\\"01-01-03-01\\\",\\\"isEmpty\\\":1,\\\"lastInTime\\\":\\\"2024-08-02 10:22:02\\\",\\\"vehicleId\\\":\\\"ASRS000041\\\",\\\"vehicleStatus\\\":2,\\\"vehicleType\\\":\\\"\\\"}],\\\"pages\\\":18,\\\"total\\\":175}}\"', '192.168.8.93', '2024-08-05 08:40:03', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408050840218151722818421815', '查询载具信息', 'getVehiclesByPage', '[{\"isAsc\": true, \"pageNo\": 1, \"sortBy\": \"\", \"isEmpty\": null, \"pageSize\": 10, \"vehicleId\": \"\", \"vehicleType\": \"\", \"vehicleStatus\": null, \"currentLocation\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"查询成功\\\",\\\"returnData\\\":{\\\"lists\\\":[{\\\"currentLocation\\\":\\\"04-01-01-01\\\",\\\"isEmpty\\\":0,\\\"lastInTime\\\":\\\"2024-08-02 09:39:49\\\",\\\"vehicleId\\\":\\\"ASRS000001\\\",\\\"vehicleStatus\\\":2,\\\"vehicleType\\\":\\\"\\\"},{\\\"currentLocation\\\":\\\"07-01-02-01\\\",\\\"isEmpty\\\":1,\\\"lastInTime\\\":\\\"2024-08-02 10:22:20\\\",\\\"vehicleId\\\":\\\"ASRS000002\\\",\\\"vehicleStatus\\\":2,\\\"vehicleType\\\":\\\"\\\"},{\\\"currentLocation\\\":\\\"03-01-03-01\\\",\\\"isEmpty\\\":1,\\\"lastInTime\\\":\\\"2024-08-02 10:26:36\\\",\\\"vehicleId\\\":\\\"ASRS000003\\\",\\\"vehicleStatus\\\":2,\\\"vehicleType\\\":\\\"\\\"},{\\\"currentLocation\\\":\\\"01-01-06-01\\\",\\\"isEmpty\\\":1,\\\"lastInTime\\\":\\\"2024-08-02 10:25:48\\\",\\\"vehicleId\\\":\\\"ASRS000004\\\",\\\"vehicleStatus\\\":2,\\\"vehicleType\\\":\\\"\\\"},{\\\"currentLocation\\\":\\\"06-01-04-01\\\",\\\"isEmpty\\\":1,\\\"lastInTime\\\":\\\"2024-08-02 10:24:52\\\",\\\"vehicleId\\\":\\\"ASRS000005\\\",\\\"vehicleStatus\\\":2,\\\"vehicleType\\\":\\\"\\\"},{\\\"currentLocation\\\":\\\"08-01-03-01\\\",\\\"isEmpty\\\":1,\\\"lastInTime\\\":\\\"2024-08-02 10:23:47\\\",\\\"vehicleId\\\":\\\"ASRS000006\\\",\\\"vehicleStatus\\\":2,\\\"vehicleType\\\":\\\"\\\"},{\\\"currentLocation\\\":\\\"05-01-04-01\\\",\\\"isEmpty\\\":1,\\\"lastInTime\\\":\\\"2024-08-02 10:27:08\\\",\\\"vehicleId\\\":\\\"ASRS000007\\\",\\\"vehicleStatus\\\":2,\\\"vehicleType\\\":\\\"\\\"},{\\\"currentLocation\\\":\\\"04-01-03-01\\\",\\\"isEmpty\\\":1,\\\"lastInTime\\\":\\\"2024-08-02 10:23:17\\\",\\\"vehicleId\\\":\\\"ASRS000008\\\",\\\"vehicleStatus\\\":2,\\\"vehicleType\\\":\\\"\\\"},{\\\"currentLocation\\\":\\\"01-01-07-01\\\",\\\"isEmpty\\\":1,\\\"lastInTime\\\":\\\"2024-08-02 10:28:46\\\",\\\"vehicleId\\\":\\\"ASRS000009\\\",\\\"vehicleStatus\\\":2,\\\"vehicleType\\\":\\\"\\\"},{\\\"currentLocation\\\":\\\"06-01-03-01\\\",\\\"isEmpty\\\":1,\\\"lastInTime\\\":\\\"2024-08-02 10:23:45\\\",\\\"vehicleId\\\":\\\"ASRS000010\\\",\\\"vehicleStatus\\\":2,\\\"vehicleType\\\":\\\"\\\"}],\\\"pages\\\":18,\\\"total\\\":175}}\"', '192.168.8.93', '2024-08-05 08:40:22', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408050840227991722818422799', '查询载具信息', 'getVehiclesByPage', '[{\"isAsc\": true, \"pageNo\": 18, \"sortBy\": \"\", \"isEmpty\": null, \"pageSize\": 10, \"vehicleId\": \"\", \"vehicleType\": \"\", \"vehicleStatus\": null, \"currentLocation\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"查询成功\\\",\\\"returnData\\\":{\\\"lists\\\":[{\\\"currentLocation\\\":\\\"05-01-18-01\\\",\\\"isEmpty\\\":0,\\\"lastInTime\\\":\\\"2024-08-02 13:57:03\\\",\\\"vehicleId\\\":\\\"ASRS000196\\\",\\\"vehicleStatus\\\":2,\\\"vehicleType\\\":\\\"\\\"},{\\\"currentLocation\\\":\\\"03-01-12-01\\\",\\\"isEmpty\\\":1,\\\"lastInTime\\\":\\\"2024-08-02 13:07:19\\\",\\\"vehicleId\\\":\\\"ASRS000197\\\",\\\"vehicleStatus\\\":2,\\\"vehicleType\\\":\\\"\\\"},{\\\"currentLocation\\\":\\\"01-01-17-01\\\",\\\"isEmpty\\\":1,\\\"lastInTime\\\":\\\"2024-08-02 12:44:40\\\",\\\"vehicleId\\\":\\\"ASRS000198\\\",\\\"vehicleStatus\\\":2,\\\"vehicleType\\\":\\\"\\\"},{\\\"currentLocation\\\":\\\"07-01-10-01\\\",\\\"isEmpty\\\":1,\\\"lastInTime\\\":\\\"2024-08-02 13:14:07\\\",\\\"vehicleId\\\":\\\"ASRS000199\\\",\\\"vehicleStatus\\\":2,\\\"vehicleType\\\":\\\"\\\"},{\\\"currentLocation\\\":\\\"01-01-18-01\\\",\\\"isEmpty\\\":1,\\\"lastInTime\\\":\\\"2024-08-02 13:26:49\\\",\\\"vehicleId\\\":\\\"ASRS000200\\\",\\\"vehicleStatus\\\":2,\\\"vehicleType\\\":\\\"\\\"}],\\\"pages\\\":18,\\\"total\\\":175}}\"', '192.168.8.93', '2024-08-05 08:40:23', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408050840247971722818424797', '查询载具信息', 'getVehiclesByPage', '[{\"isAsc\": true, \"pageNo\": 1, \"sortBy\": \"\", \"isEmpty\": null, \"pageSize\": 10, \"vehicleId\": \"\", \"vehicleType\": \"\", \"vehicleStatus\": null, \"currentLocation\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"查询成功\\\",\\\"returnData\\\":{\\\"lists\\\":[{\\\"currentLocation\\\":\\\"04-01-01-01\\\",\\\"isEmpty\\\":0,\\\"lastInTime\\\":\\\"2024-08-02 09:39:49\\\",\\\"vehicleId\\\":\\\"ASRS000001\\\",\\\"vehicleStatus\\\":2,\\\"vehicleType\\\":\\\"\\\"},{\\\"currentLocation\\\":\\\"07-01-02-01\\\",\\\"isEmpty\\\":1,\\\"lastInTime\\\":\\\"2024-08-02 10:22:20\\\",\\\"vehicleId\\\":\\\"ASRS000002\\\",\\\"vehicleStatus\\\":2,\\\"vehicleType\\\":\\\"\\\"},{\\\"currentLocation\\\":\\\"03-01-03-01\\\",\\\"isEmpty\\\":1,\\\"lastInTime\\\":\\\"2024-08-02 10:26:36\\\",\\\"vehicleId\\\":\\\"ASRS000003\\\",\\\"vehicleStatus\\\":2,\\\"vehicleType\\\":\\\"\\\"},{\\\"currentLocation\\\":\\\"01-01-06-01\\\",\\\"isEmpty\\\":1,\\\"lastInTime\\\":\\\"2024-08-02 10:25:48\\\",\\\"vehicleId\\\":\\\"ASRS000004\\\",\\\"vehicleStatus\\\":2,\\\"vehicleType\\\":\\\"\\\"},{\\\"currentLocation\\\":\\\"06-01-04-01\\\",\\\"isEmpty\\\":1,\\\"lastInTime\\\":\\\"2024-08-02 10:24:52\\\",\\\"vehicleId\\\":\\\"ASRS000005\\\",\\\"vehicleStatus\\\":2,\\\"vehicleType\\\":\\\"\\\"},{\\\"currentLocation\\\":\\\"08-01-03-01\\\",\\\"isEmpty\\\":1,\\\"lastInTime\\\":\\\"2024-08-02 10:23:47\\\",\\\"vehicleId\\\":\\\"ASRS000006\\\",\\\"vehicleStatus\\\":2,\\\"vehicleType\\\":\\\"\\\"},{\\\"currentLocation\\\":\\\"05-01-04-01\\\",\\\"isEmpty\\\":1,\\\"lastInTime\\\":\\\"2024-08-02 10:27:08\\\",\\\"vehicleId\\\":\\\"ASRS000007\\\",\\\"vehicleStatus\\\":2,\\\"vehicleType\\\":\\\"\\\"},{\\\"currentLocation\\\":\\\"04-01-03-01\\\",\\\"isEmpty\\\":1,\\\"lastInTime\\\":\\\"2024-08-02 10:23:17\\\",\\\"vehicleId\\\":\\\"ASRS000008\\\",\\\"vehicleStatus\\\":2,\\\"vehicleType\\\":\\\"\\\"},{\\\"currentLocation\\\":\\\"01-01-07-01\\\",\\\"isEmpty\\\":1,\\\"lastInTime\\\":\\\"2024-08-02 10:28:46\\\",\\\"vehicleId\\\":\\\"ASRS000009\\\",\\\"vehicleStatus\\\":2,\\\"vehicleType\\\":\\\"\\\"},{\\\"currentLocation\\\":\\\"06-01-03-01\\\",\\\"isEmpty\\\":1,\\\"lastInTime\\\":\\\"2024-08-02 10:23:45\\\",\\\"vehicleId\\\":\\\"ASRS000010\\\",\\\"vehicleStatus\\\":2,\\\"vehicleType\\\":\\\"\\\"}],\\\"pages\\\":18,\\\"total\\\":175}}\"', '192.168.8.93', '2024-08-05 08:40:25', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408050840269641722818426964', '查询载具信息', 'getVehiclesByPage', '[{\"isAsc\": true, \"pageNo\": 2, \"sortBy\": \"\", \"isEmpty\": null, \"pageSize\": 10, \"vehicleId\": \"\", \"vehicleType\": \"\", \"vehicleStatus\": null, \"currentLocation\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"查询成功\\\",\\\"returnData\\\":{\\\"lists\\\":[{\\\"currentLocation\\\":\\\"09-01-04-01\\\",\\\"isEmpty\\\":1,\\\"lastInTime\\\":\\\"2024-08-02 10:28:25\\\",\\\"vehicleId\\\":\\\"ASRS000011\\\",\\\"vehicleStatus\\\":2,\\\"vehicleType\\\":\\\"\\\"},{\\\"currentLocation\\\":\\\"04-01-04-01\\\",\\\"isEmpty\\\":1,\\\"lastInTime\\\":\\\"2024-08-02 10:24:50\\\",\\\"vehicleId\\\":\\\"ASRS000012\\\",\\\"vehicleStatus\\\":2,\\\"vehicleType\\\":\\\"\\\"},{\\\"currentLocation\\\":\\\"04-01-05-01\\\",\\\"isEmpty\\\":1,\\\"lastInTime\\\":\\\"2024-08-02 10:28:40\\\",\\\"vehicleId\\\":\\\"ASRS000013\\\",\\\"vehicleStatus\\\":2,\\\"vehicleType\\\":\\\"\\\"},{\\\"currentLocation\\\":\\\"07-01-04-01\\\",\\\"isEmpty\\\":1,\\\"lastInTime\\\":\\\"2024-08-02 10:27:25\\\",\\\"vehicleId\\\":\\\"ASRS000014\\\",\\\"vehicleStatus\\\":2,\\\"vehicleType\\\":\\\"\\\"},{\\\"currentLocation\\\":\\\"02-01-06-01\\\",\\\"isEmpty\\\":1,\\\"lastInTime\\\":\\\"2024-08-02 13:13:23\\\",\\\"vehicleId\\\":\\\"ASRS000015\\\",\\\"vehicleStatus\\\":2,\\\"vehicleType\\\":\\\"\\\"},{\\\"currentLocation\\\":\\\"02-01-04-01\\\",\\\"isEmpty\\\":1,\\\"lastInTime\\\":\\\"2024-08-02 10:27:03\\\",\\\"vehicleId\\\":\\\"ASRS000016\\\",\\\"vehicleStatus\\\":2,\\\"vehicleType\\\":\\\"\\\"},{\\\"currentLocation\\\":\\\"06-01-05-01\\\",\\\"isEmpty\\\":1,\\\"lastInTime\\\":\\\"2024-08-02 10:28:54\\\",\\\"vehicleId\\\":\\\"ASRS000017\\\",\\\"vehicleStatus\\\":2,\\\"vehicleType\\\":\\\"\\\"},{\\\"currentLocation\\\":\\\"04-01-02-01\\\",\\\"isEmpty\\\":1,\\\"lastInTime\\\":\\\"2024-08-02 10:21:27\\\",\\\"vehicleId\\\":\\\"ASRS000018\\\",\\\"vehicleStatus\\\":2,\\\"vehicleType\\\":\\\"\\\"},{\\\"currentLocation\\\":\\\"04-01-06-01\\\",\\\"isEmpty\\\":1,\\\"lastInTime\\\":\\\"2024-08-02 10:30:04\\\",\\\"vehicleId\\\":\\\"ASRS000020\\\",\\\"vehicleStatus\\\":2,\\\"vehicleType\\\":\\\"\\\"},{\\\"currentLocation\\\":\\\"02-01-05-01\\\",\\\"isEmpty\\\":1,\\\"lastInTime\\\":\\\"2024-08-02 10:24:36\\\",\\\"vehicleId\\\":\\\"ASRS000021\\\",\\\"vehicleStatus\\\":2,\\\"vehicleType\\\":\\\"\\\"}],\\\"pages\\\":18,\\\"total\\\":175}}\"', '192.168.8.93', '2024-08-05 08:40:27', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408050840284231722818428423', '查询载具信息', 'getVehiclesByPage', '[{\"isAsc\": true, \"pageNo\": 3, \"sortBy\": \"\", \"isEmpty\": null, \"pageSize\": 10, \"vehicleId\": \"\", \"vehicleType\": \"\", \"vehicleStatus\": null, \"currentLocation\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"查询成功\\\",\\\"returnData\\\":{\\\"lists\\\":[{\\\"currentLocation\\\":\\\"03-01-06-01\\\",\\\"isEmpty\\\":1,\\\"lastInTime\\\":\\\"2024-08-02 10:29:17\\\",\\\"vehicleId\\\":\\\"ASRS000022\\\",\\\"vehicleStatus\\\":2,\\\"vehicleType\\\":\\\"\\\"},{\\\"currentLocation\\\":\\\"03-01-05-01\\\",\\\"isEmpty\\\":1,\\\"lastInTime\\\":\\\"2024-08-02 10:27:42\\\",\\\"vehicleId\\\":\\\"ASRS000023\\\",\\\"vehicleStatus\\\":2,\\\"vehicleType\\\":\\\"\\\"},{\\\"currentLocation\\\":\\\"01-01-12-01\\\",\\\"isEmpty\\\":1,\\\"lastInTime\\\":\\\"2024-08-02 10:36:12\\\",\\\"vehicleId\\\":\\\"ASRS000024\\\",\\\"vehicleStatus\\\":2,\\\"vehicleType\\\":\\\"\\\"},{\\\"currentLocation\\\":\\\"09-01-09-01\\\",\\\"isEmpty\\\":1,\\\"lastInTime\\\":\\\"2024-08-02 10:36:55\\\",\\\"vehicleId\\\":\\\"ASRS000025\\\",\\\"vehicleStatus\\\":2,\\\"vehicleType\\\":\\\"\\\"},{\\\"currentLocation\\\":\\\"08-01-12-01\\\",\\\"isEmpty\\\":1,\\\"lastInTime\\\":\\\"2024-08-02 12:35:28\\\",\\\"vehicleId\\\":\\\"ASRS000026\\\",\\\"vehicleStatus\\\":2,\\\"vehicleType\\\":\\\"\\\"},{\\\"currentLocation\\\":\\\"03-01-11-01\\\",\\\"isEmpty\\\":1,\\\"lastInTime\\\":\\\"2024-08-02 12:41:38\\\",\\\"vehicleId\\\":\\\"ASRS000027\\\",\\\"vehicleStatus\\\":2,\\\"vehicleType\\\":\\\"\\\"},{\\\"currentLocation\\\":\\\"02-01-12-01\\\",\\\"isEmpty\\\":1,\\\"lastInTime\\\":\\\"2024-08-02 12:42:23\\\",\\\"vehicleId\\\":\\\"ASRS000028\\\",\\\"vehicleStatus\\\":2,\\\"vehicleType\\\":\\\"\\\"},{\\\"currentLocation\\\":\\\"07-01-07-01\\\",\\\"isEmpty\\\":1,\\\"lastInTime\\\":\\\"2024-08-02 12:33:07\\\",\\\"vehicleId\\\":\\\"ASRS000029\\\",\\\"vehicleStatus\\\":2,\\\"vehicleType\\\":\\\"\\\"},{\\\"currentLocation\\\":\\\"03-01-04-01\\\",\\\"isEmpty\\\":1,\\\"lastInTime\\\":\\\"2024-08-02 10:27:15\\\",\\\"vehicleId\\\":\\\"ASRS000030\\\",\\\"vehicleStatus\\\":2,\\\"vehicleType\\\":\\\"\\\"},{\\\"currentLocation\\\":\\\"02-01-13-01\\\",\\\"isEmpty\\\":1,\\\"lastInTime\\\":\\\"2024-08-02 10:37:07\\\",\\\"vehicleId\\\":\\\"ASRS000031\\\",\\\"vehicleStatus\\\":2,\\\"vehicleType\\\":\\\"\\\"}],\\\"pages\\\":18,\\\"total\\\":175}}\"', '192.168.8.93', '2024-08-05 08:40:28', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408050840290931722818429093', '查询载具信息', 'getVehiclesByPage', '[{\"isAsc\": true, \"pageNo\": 2, \"sortBy\": \"\", \"isEmpty\": null, \"pageSize\": 10, \"vehicleId\": \"\", \"vehicleType\": \"\", \"vehicleStatus\": null, \"currentLocation\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"查询成功\\\",\\\"returnData\\\":{\\\"lists\\\":[{\\\"currentLocation\\\":\\\"09-01-04-01\\\",\\\"isEmpty\\\":1,\\\"lastInTime\\\":\\\"2024-08-02 10:28:25\\\",\\\"vehicleId\\\":\\\"ASRS000011\\\",\\\"vehicleStatus\\\":2,\\\"vehicleType\\\":\\\"\\\"},{\\\"currentLocation\\\":\\\"04-01-04-01\\\",\\\"isEmpty\\\":1,\\\"lastInTime\\\":\\\"2024-08-02 10:24:50\\\",\\\"vehicleId\\\":\\\"ASRS000012\\\",\\\"vehicleStatus\\\":2,\\\"vehicleType\\\":\\\"\\\"},{\\\"currentLocation\\\":\\\"04-01-05-01\\\",\\\"isEmpty\\\":1,\\\"lastInTime\\\":\\\"2024-08-02 10:28:40\\\",\\\"vehicleId\\\":\\\"ASRS000013\\\",\\\"vehicleStatus\\\":2,\\\"vehicleType\\\":\\\"\\\"},{\\\"currentLocation\\\":\\\"07-01-04-01\\\",\\\"isEmpty\\\":1,\\\"lastInTime\\\":\\\"2024-08-02 10:27:25\\\",\\\"vehicleId\\\":\\\"ASRS000014\\\",\\\"vehicleStatus\\\":2,\\\"vehicleType\\\":\\\"\\\"},{\\\"currentLocation\\\":\\\"02-01-06-01\\\",\\\"isEmpty\\\":1,\\\"lastInTime\\\":\\\"2024-08-02 13:13:23\\\",\\\"vehicleId\\\":\\\"ASRS000015\\\",\\\"vehicleStatus\\\":2,\\\"vehicleType\\\":\\\"\\\"},{\\\"currentLocation\\\":\\\"02-01-04-01\\\",\\\"isEmpty\\\":1,\\\"lastInTime\\\":\\\"2024-08-02 10:27:03\\\",\\\"vehicleId\\\":\\\"ASRS000016\\\",\\\"vehicleStatus\\\":2,\\\"vehicleType\\\":\\\"\\\"},{\\\"currentLocation\\\":\\\"06-01-05-01\\\",\\\"isEmpty\\\":1,\\\"lastInTime\\\":\\\"2024-08-02 10:28:54\\\",\\\"vehicleId\\\":\\\"ASRS000017\\\",\\\"vehicleStatus\\\":2,\\\"vehicleType\\\":\\\"\\\"},{\\\"currentLocation\\\":\\\"04-01-02-01\\\",\\\"isEmpty\\\":1,\\\"lastInTime\\\":\\\"2024-08-02 10:21:27\\\",\\\"vehicleId\\\":\\\"ASRS000018\\\",\\\"vehicleStatus\\\":2,\\\"vehicleType\\\":\\\"\\\"},{\\\"currentLocation\\\":\\\"04-01-06-01\\\",\\\"isEmpty\\\":1,\\\"lastInTime\\\":\\\"2024-08-02 10:30:04\\\",\\\"vehicleId\\\":\\\"ASRS000020\\\",\\\"vehicleStatus\\\":2,\\\"vehicleType\\\":\\\"\\\"},{\\\"currentLocation\\\":\\\"02-01-05-01\\\",\\\"isEmpty\\\":1,\\\"lastInTime\\\":\\\"2024-08-02 10:24:36\\\",\\\"vehicleId\\\":\\\"ASRS000021\\\",\\\"vehicleStatus\\\":2,\\\"vehicleType\\\":\\\"\\\"}],\\\"pages\\\":18,\\\"total\\\":175}}\"', '192.168.8.93', '2024-08-05 08:40:29', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408050840322291722818432229', '查询载具信息', 'getVehiclesByPage', '[{\"isAsc\": true, \"pageNo\": 3, \"sortBy\": \"\", \"isEmpty\": null, \"pageSize\": 10, \"vehicleId\": \"\", \"vehicleType\": \"\", \"vehicleStatus\": null, \"currentLocation\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"查询成功\\\",\\\"returnData\\\":{\\\"lists\\\":[{\\\"currentLocation\\\":\\\"03-01-06-01\\\",\\\"isEmpty\\\":1,\\\"lastInTime\\\":\\\"2024-08-02 10:29:17\\\",\\\"vehicleId\\\":\\\"ASRS000022\\\",\\\"vehicleStatus\\\":2,\\\"vehicleType\\\":\\\"\\\"},{\\\"currentLocation\\\":\\\"03-01-05-01\\\",\\\"isEmpty\\\":1,\\\"lastInTime\\\":\\\"2024-08-02 10:27:42\\\",\\\"vehicleId\\\":\\\"ASRS000023\\\",\\\"vehicleStatus\\\":2,\\\"vehicleType\\\":\\\"\\\"},{\\\"currentLocation\\\":\\\"01-01-12-01\\\",\\\"isEmpty\\\":1,\\\"lastInTime\\\":\\\"2024-08-02 10:36:12\\\",\\\"vehicleId\\\":\\\"ASRS000024\\\",\\\"vehicleStatus\\\":2,\\\"vehicleType\\\":\\\"\\\"},{\\\"currentLocation\\\":\\\"09-01-09-01\\\",\\\"isEmpty\\\":1,\\\"lastInTime\\\":\\\"2024-08-02 10:36:55\\\",\\\"vehicleId\\\":\\\"ASRS000025\\\",\\\"vehicleStatus\\\":2,\\\"vehicleType\\\":\\\"\\\"},{\\\"currentLocation\\\":\\\"08-01-12-01\\\",\\\"isEmpty\\\":1,\\\"lastInTime\\\":\\\"2024-08-02 12:35:28\\\",\\\"vehicleId\\\":\\\"ASRS000026\\\",\\\"vehicleStatus\\\":2,\\\"vehicleType\\\":\\\"\\\"},{\\\"currentLocation\\\":\\\"03-01-11-01\\\",\\\"isEmpty\\\":1,\\\"lastInTime\\\":\\\"2024-08-02 12:41:38\\\",\\\"vehicleId\\\":\\\"ASRS000027\\\",\\\"vehicleStatus\\\":2,\\\"vehicleType\\\":\\\"\\\"},{\\\"currentLocation\\\":\\\"02-01-12-01\\\",\\\"isEmpty\\\":1,\\\"lastInTime\\\":\\\"2024-08-02 12:42:23\\\",\\\"vehicleId\\\":\\\"ASRS000028\\\",\\\"vehicleStatus\\\":2,\\\"vehicleType\\\":\\\"\\\"},{\\\"currentLocation\\\":\\\"07-01-07-01\\\",\\\"isEmpty\\\":1,\\\"lastInTime\\\":\\\"2024-08-02 12:33:07\\\",\\\"vehicleId\\\":\\\"ASRS000029\\\",\\\"vehicleStatus\\\":2,\\\"vehicleType\\\":\\\"\\\"},{\\\"currentLocation\\\":\\\"03-01-04-01\\\",\\\"isEmpty\\\":1,\\\"lastInTime\\\":\\\"2024-08-02 10:27:15\\\",\\\"vehicleId\\\":\\\"ASRS000030\\\",\\\"vehicleStatus\\\":2,\\\"vehicleType\\\":\\\"\\\"},{\\\"currentLocation\\\":\\\"02-01-13-01\\\",\\\"isEmpty\\\":1,\\\"lastInTime\\\":\\\"2024-08-02 10:37:07\\\",\\\"vehicleId\\\":\\\"ASRS000031\\\",\\\"vehicleStatus\\\":2,\\\"vehicleType\\\":\\\"\\\"}],\\\"pages\\\":18,\\\"total\\\":175}}\"', '192.168.8.93', '2024-08-05 08:40:32', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408050840327691722818432769', '查询载具信息', 'getVehiclesByPage', '[{\"isAsc\": true, \"pageNo\": 4, \"sortBy\": \"\", \"isEmpty\": null, \"pageSize\": 10, \"vehicleId\": \"\", \"vehicleType\": \"\", \"vehicleStatus\": null, \"currentLocation\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"查询成功\\\",\\\"returnData\\\":{\\\"lists\\\":[{\\\"currentLocation\\\":\\\"01-01-02-01\\\",\\\"isEmpty\\\":1,\\\"lastInTime\\\":\\\"2024-08-02 10:21:08\\\",\\\"vehicleId\\\":\\\"ASRS000032\\\",\\\"vehicleStatus\\\":2,\\\"vehicleType\\\":\\\"\\\"},{\\\"currentLocation\\\":\\\"08-01-04-01\\\",\\\"isEmpty\\\":1,\\\"lastInTime\\\":\\\"2024-08-02 10:24:56\\\",\\\"vehicleId\\\":\\\"ASRS000033\\\",\\\"vehicleStatus\\\":2,\\\"vehicleType\\\":\\\"\\\"},{\\\"currentLocation\\\":\\\"07-01-01-01\\\",\\\"isEmpty\\\":1,\\\"lastInTime\\\":\\\"2024-08-02 10:20:27\\\",\\\"vehicleId\\\":\\\"ASRS000034\\\",\\\"vehicleStatus\\\":2,\\\"vehicleType\\\":\\\"\\\"},{\\\"currentLocation\\\":\\\"08-01-11-01\\\",\\\"isEmpty\\\":1,\\\"lastInTime\\\":\\\"2024-08-02 10:37:42\\\",\\\"vehicleId\\\":\\\"ASRS000035\\\",\\\"vehicleStatus\\\":2,\\\"vehicleType\\\":\\\"\\\"},{\\\"currentLocation\\\":\\\"09-01-01-01\\\",\\\"isEmpty\\\":1,\\\"lastInTime\\\":\\\"2024-08-02 10:21:30\\\",\\\"vehicleId\\\":\\\"ASRS000036\\\",\\\"vehicleStatus\\\":2,\\\"vehicleType\\\":\\\"\\\"},{\\\"currentLocation\\\":\\\"09-01-03-01\\\",\\\"isEmpty\\\":1,\\\"lastInTime\\\":\\\"2024-08-02 10:24:22\\\",\\\"vehicleId\\\":\\\"ASRS000037\\\",\\\"vehicleStatus\\\":2,\\\"vehicleType\\\":\\\"\\\"},{\\\"currentLocation\\\":\\\"01-01-13-01\\\",\\\"isEmpty\\\":1,\\\"lastInTime\\\":\\\"2024-08-02 10:36:56\\\",\\\"vehicleId\\\":\\\"ASRS000038\\\",\\\"vehicleStatus\\\":2,\\\"vehicleType\\\":\\\"\\\"},{\\\"currentLocation\\\":\\\"09-01-02-01\\\",\\\"isEmpty\\\":1,\\\"lastInTime\\\":\\\"2024-08-02 10:22:29\\\",\\\"vehicleId\\\":\\\"ASRS000039\\\",\\\"vehicleStatus\\\":2,\\\"vehicleType\\\":\\\"\\\"},{\\\"currentLocation\\\":\\\"03-01-02-01\\\",\\\"isEmpty\\\":1,\\\"lastInTime\\\":\\\"2024-08-02 10:26:25\\\",\\\"vehicleId\\\":\\\"ASRS000040\\\",\\\"vehicleStatus\\\":2,\\\"vehicleType\\\":\\\"\\\"},{\\\"currentLocation\\\":\\\"01-01-03-01\\\",\\\"isEmpty\\\":1,\\\"lastInTime\\\":\\\"2024-08-02 10:22:02\\\",\\\"vehicleId\\\":\\\"ASRS000041\\\",\\\"vehicleStatus\\\":2,\\\"vehicleType\\\":\\\"\\\"}],\\\"pages\\\":18,\\\"total\\\":175}}\"', '192.168.8.93', '2024-08-05 08:40:33', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408050840332411722818433241', '查询载具信息', 'getVehiclesByPage', '[{\"isAsc\": true, \"pageNo\": 5, \"sortBy\": \"\", \"isEmpty\": null, \"pageSize\": 10, \"vehicleId\": \"\", \"vehicleType\": \"\", \"vehicleStatus\": null, \"currentLocation\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"查询成功\\\",\\\"returnData\\\":{\\\"lists\\\":[{\\\"currentLocation\\\":\\\"02-01-02-01\\\",\\\"isEmpty\\\":1,\\\"lastInTime\\\":\\\"2024-08-02 10:26:00\\\",\\\"vehicleId\\\":\\\"ASRS000042\\\",\\\"vehicleStatus\\\":2,\\\"vehicleType\\\":\\\"\\\"},{\\\"currentLocation\\\":\\\"08-01-02-01\\\",\\\"isEmpty\\\":1,\\\"lastInTime\\\":\\\"2024-08-02 10:21:55\\\",\\\"vehicleId\\\":\\\"ASRS000043\\\",\\\"vehicleStatus\\\":2,\\\"vehicleType\\\":\\\"\\\"},{\\\"currentLocation\\\":\\\"07-01-09-01\\\",\\\"isEmpty\\\":1,\\\"lastInTime\\\":\\\"2024-08-02 13:08:47\\\",\\\"vehicleId\\\":\\\"ASRS000044\\\",\\\"vehicleStatus\\\":2,\\\"vehicleType\\\":\\\"\\\"},{\\\"currentLocation\\\":\\\"05-01-10-01\\\",\\\"isEmpty\\\":1,\\\"lastInTime\\\":\\\"2024-08-02 13:09:36\\\",\\\"vehicleId\\\":\\\"ASRS000045\\\",\\\"vehicleStatus\\\":2,\\\"vehicleType\\\":\\\"\\\"},{\\\"currentLocation\\\":\\\"03-01-14-01\\\",\\\"isEmpty\\\":1,\\\"lastInTime\\\":\\\"2024-08-02 13:07:57\\\",\\\"vehicleId\\\":\\\"ASRS000046\\\",\\\"vehicleStatus\\\":2,\\\"vehicleType\\\":\\\"\\\"},{\\\"currentLocation\\\":\\\"05-01-09-01\\\",\\\"isEmpty\\\":1,\\\"lastInTime\\\":\\\"2024-08-02 12:34:34\\\",\\\"vehicleId\\\":\\\"ASRS000047\\\",\\\"vehicleStatus\\\":2,\\\"vehicleType\\\":\\\"\\\"},{\\\"currentLocation\\\":\\\"01-01-14-01\\\",\\\"isEmpty\\\":1,\\\"lastInTime\\\":\\\"2024-08-02 10:38:11\\\",\\\"vehicleId\\\":\\\"ASRS000048\\\",\\\"vehicleStatus\\\":2,\\\"vehicleType\\\":\\\"\\\"},{\\\"currentLocation\\\":\\\"02-01-11-01\\\",\\\"isEmpty\\\":1,\\\"lastInTime\\\":\\\"2024-08-02 10:35:35\\\",\\\"vehicleId\\\":\\\"ASRS000049\\\",\\\"vehicleStatus\\\":2,\\\"vehicleType\\\":\\\"\\\"},{\\\"currentLocation\\\":\\\"01-01-10-01\\\",\\\"isEmpty\\\":1,\\\"lastInTime\\\":\\\"2024-08-02 10:33:54\\\",\\\"vehicleId\\\":\\\"ASRS000050\\\",\\\"vehicleStatus\\\":2,\\\"vehicleType\\\":\\\"\\\"},{\\\"currentLocation\\\":\\\"06-01-11-01\\\",\\\"isEmpty\\\":1,\\\"lastInTime\\\":\\\"2024-08-02 13:13:22\\\",\\\"vehicleId\\\":\\\"ASRS000051\\\",\\\"vehicleStatus\\\":2,\\\"vehicleType\\\":\\\"\\\"}],\\\"pages\\\":18,\\\"total\\\":175}}\"', '192.168.8.93', '2024-08-05 08:40:33', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408050840336641722818433664', '查询载具信息', 'getVehiclesByPage', '[{\"isAsc\": true, \"pageNo\": 6, \"sortBy\": \"\", \"isEmpty\": null, \"pageSize\": 10, \"vehicleId\": \"\", \"vehicleType\": \"\", \"vehicleStatus\": null, \"currentLocation\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"查询成功\\\",\\\"returnData\\\":{\\\"lists\\\":[{\\\"currentLocation\\\":\\\"05-01-08-01\\\",\\\"isEmpty\\\":1,\\\"lastInTime\\\":\\\"2024-08-02 12:32:56\\\",\\\"vehicleId\\\":\\\"ASRS000052\\\",\\\"vehicleStatus\\\":2,\\\"vehicleType\\\":\\\"\\\"},{\\\"currentLocation\\\":\\\"01-01-15-01\\\",\\\"isEmpty\\\":1,\\\"lastInTime\\\":\\\"2024-08-02 10:38:00\\\",\\\"vehicleId\\\":\\\"ASRS000053\\\",\\\"vehicleStatus\\\":2,\\\"vehicleType\\\":\\\"\\\"},{\\\"currentLocation\\\":\\\"02-01-14-01\\\",\\\"isEmpty\\\":1,\\\"lastInTime\\\":\\\"2024-08-02 12:57:41\\\",\\\"vehicleId\\\":\\\"ASRS000054\\\",\\\"vehicleStatus\\\":2,\\\"vehicleType\\\":\\\"\\\"},{\\\"currentLocation\\\":\\\"08-01-07-01\\\",\\\"isEmpty\\\":1,\\\"lastInTime\\\":\\\"2024-08-02 10:33:58\\\",\\\"vehicleId\\\":\\\"ASRS000055\\\",\\\"vehicleStatus\\\":2,\\\"vehicleType\\\":\\\"\\\"},{\\\"currentLocation\\\":\\\"09-01-10-01\\\",\\\"isEmpty\\\":1,\\\"lastInTime\\\":\\\"2024-08-02 10:37:31\\\",\\\"vehicleId\\\":\\\"ASRS000056\\\",\\\"vehicleStatus\\\":2,\\\"vehicleType\\\":\\\"\\\"},{\\\"currentLocation\\\":\\\"06-01-07-01\\\",\\\"isEmpty\\\":1,\\\"lastInTime\\\":\\\"2024-08-02 12:32:36\\\",\\\"vehicleId\\\":\\\"ASRS000057\\\",\\\"vehicleStatus\\\":2,\\\"vehicleType\\\":\\\"\\\"},{\\\"currentLocation\\\":\\\"01-01-11-01\\\",\\\"isEmpty\\\":1,\\\"lastInTime\\\":\\\"2024-08-02 10:34:57\\\",\\\"vehicleId\\\":\\\"ASRS000058\\\",\\\"vehicleStatus\\\":2,\\\"vehicleType\\\":\\\"\\\"},{\\\"currentLocation\\\":\\\"06-01-08-01\\\",\\\"isEmpty\\\":1,\\\"lastInTime\\\":\\\"2024-08-02 12:33:40\\\",\\\"vehicleId\\\":\\\"ASRS000059\\\",\\\"vehicleStatus\\\":2,\\\"vehicleType\\\":\\\"\\\"},{\\\"currentLocation\\\":\\\"04-01-07-01\\\",\\\"isEmpty\\\":1,\\\"lastInTime\\\":\\\"2024-08-02 10:33:50\\\",\\\"vehicleId\\\":\\\"ASRS000060\\\",\\\"vehicleStatus\\\":2,\\\"vehicleType\\\":\\\"\\\"},{\\\"currentLocation\\\":\\\"04-01-11-01\\\",\\\"isEmpty\\\":1,\\\"lastInTime\\\":\\\"2024-08-02 12:49:25\\\",\\\"vehicleId\\\":\\\"ASRS000061\\\",\\\"vehicleStatus\\\":2,\\\"vehicleType\\\":\\\"\\\"}],\\\"pages\\\":18,\\\"total\\\":175}}\"', '192.168.8.93', '2024-08-05 08:40:34', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408050840341481722818434148', '查询载具信息', 'getVehiclesByPage', '[{\"isAsc\": true, \"pageNo\": 8, \"sortBy\": \"\", \"isEmpty\": null, \"pageSize\": 10, \"vehicleId\": \"\", \"vehicleType\": \"\", \"vehicleStatus\": null, \"currentLocation\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"查询成功\\\",\\\"returnData\\\":{\\\"lists\\\":[{\\\"currentLocation\\\":\\\"08-01-08-01\\\",\\\"isEmpty\\\":1,\\\"lastInTime\\\":\\\"2024-08-02 10:35:16\\\",\\\"vehicleId\\\":\\\"ASRS000073\\\",\\\"vehicleStatus\\\":2,\\\"vehicleType\\\":\\\"\\\"},{\\\"currentLocation\\\":\\\"07-01-08-01\\\",\\\"isEmpty\\\":1,\\\"lastInTime\\\":\\\"2024-08-02 12:33:51\\\",\\\"vehicleId\\\":\\\"ASRS000074\\\",\\\"vehicleStatus\\\":2,\\\"vehicleType\\\":\\\"\\\"},{\\\"currentLocation\\\":\\\"03-01-09-01\\\",\\\"isEmpty\\\":1,\\\"lastInTime\\\":\\\"2024-08-02 13:05:37\\\",\\\"vehicleId\\\":\\\"ASRS000075\\\",\\\"vehicleStatus\\\":2,\\\"vehicleType\\\":\\\"\\\"},{\\\"currentLocation\\\":\\\"05-01-12-01\\\",\\\"isEmpty\\\":1,\\\"lastInTime\\\":\\\"2024-08-02 12:44:19\\\",\\\"vehicleId\\\":\\\"ASRS000076\\\",\\\"vehicleStatus\\\":2,\\\"vehicleType\\\":\\\"\\\"},{\\\"currentLocation\\\":\\\"08-01-09-01\\\",\\\"isEmpty\\\":1,\\\"lastInTime\\\":\\\"2024-08-02 10:36:22\\\",\\\"vehicleId\\\":\\\"ASRS000077\\\",\\\"vehicleStatus\\\":2,\\\"vehicleType\\\":\\\"\\\"},{\\\"currentLocation\\\":\\\"03-01-13-01\\\",\\\"isEmpty\\\":1,\\\"lastInTime\\\":\\\"2024-08-02 12:42:27\\\",\\\"vehicleId\\\":\\\"ASRS000078\\\",\\\"vehicleStatus\\\":2,\\\"vehicleType\\\":\\\"\\\"},{\\\"currentLocation\\\":\\\"04-01-10-01\\\",\\\"isEmpty\\\":1,\\\"lastInTime\\\":\\\"2024-08-02 13:07:04\\\",\\\"vehicleId\\\":\\\"ASRS000080\\\",\\\"vehicleStatus\\\":2,\\\"vehicleType\\\":\\\"\\\"},{\\\"currentLocation\\\":\\\"01-01-04-01\\\",\\\"isEmpty\\\":1,\\\"lastInTime\\\":\\\"2024-08-02 10:23:10\\\",\\\"vehicleId\\\":\\\"ASRS000081\\\",\\\"vehicleStatus\\\":2,\\\"vehicleType\\\":\\\"\\\"},{\\\"currentLocation\\\":\\\"01-01-05-01\\\",\\\"isEmpty\\\":1,\\\"lastInTime\\\":\\\"2024-08-02 10:24:02\\\",\\\"vehicleId\\\":\\\"ASRS000082\\\",\\\"vehicleStatus\\\":2,\\\"vehicleType\\\":\\\"\\\"},{\\\"currentLocation\\\":\\\"09-01-08-01\\\",\\\"isEmpty\\\":1,\\\"lastInTime\\\":\\\"2024-08-02 10:35:48\\\",\\\"vehicleId\\\":\\\"ASRS000083\\\",\\\"vehicleStatus\\\":2,\\\"vehicleType\\\":\\\"\\\"}],\\\"pages\\\":18,\\\"total\\\":175}}\"', '192.168.8.93', '2024-08-05 08:40:34', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408050840348491722818434849', '查询载具信息', 'getVehiclesByPage', '[{\"isAsc\": true, \"pageNo\": 18, \"sortBy\": \"\", \"isEmpty\": null, \"pageSize\": 10, \"vehicleId\": \"\", \"vehicleType\": \"\", \"vehicleStatus\": null, \"currentLocation\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"查询成功\\\",\\\"returnData\\\":{\\\"lists\\\":[{\\\"currentLocation\\\":\\\"05-01-18-01\\\",\\\"isEmpty\\\":0,\\\"lastInTime\\\":\\\"2024-08-02 13:57:03\\\",\\\"vehicleId\\\":\\\"ASRS000196\\\",\\\"vehicleStatus\\\":2,\\\"vehicleType\\\":\\\"\\\"},{\\\"currentLocation\\\":\\\"03-01-12-01\\\",\\\"isEmpty\\\":1,\\\"lastInTime\\\":\\\"2024-08-02 13:07:19\\\",\\\"vehicleId\\\":\\\"ASRS000197\\\",\\\"vehicleStatus\\\":2,\\\"vehicleType\\\":\\\"\\\"},{\\\"currentLocation\\\":\\\"01-01-17-01\\\",\\\"isEmpty\\\":1,\\\"lastInTime\\\":\\\"2024-08-02 12:44:40\\\",\\\"vehicleId\\\":\\\"ASRS000198\\\",\\\"vehicleStatus\\\":2,\\\"vehicleType\\\":\\\"\\\"},{\\\"currentLocation\\\":\\\"07-01-10-01\\\",\\\"isEmpty\\\":1,\\\"lastInTime\\\":\\\"2024-08-02 13:14:07\\\",\\\"vehicleId\\\":\\\"ASRS000199\\\",\\\"vehicleStatus\\\":2,\\\"vehicleType\\\":\\\"\\\"},{\\\"currentLocation\\\":\\\"01-01-18-01\\\",\\\"isEmpty\\\":1,\\\"lastInTime\\\":\\\"2024-08-02 13:26:49\\\",\\\"vehicleId\\\":\\\"ASRS000200\\\",\\\"vehicleStatus\\\":2,\\\"vehicleType\\\":\\\"\\\"}],\\\"pages\\\":18,\\\"total\\\":175}}\"', '192.168.8.93', '2024-08-05 08:40:35', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408050840379291722818437929', '查询载具信息', 'getVehiclesByPage', '[{\"isAsc\": true, \"pageNo\": 1, \"sortBy\": \"\", \"isEmpty\": null, \"pageSize\": 10, \"vehicleId\": \"\", \"vehicleType\": \"\", \"vehicleStatus\": null, \"currentLocation\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"查询成功\\\",\\\"returnData\\\":{\\\"lists\\\":[{\\\"currentLocation\\\":\\\"04-01-01-01\\\",\\\"isEmpty\\\":0,\\\"lastInTime\\\":\\\"2024-08-02 09:39:49\\\",\\\"vehicleId\\\":\\\"ASRS000001\\\",\\\"vehicleStatus\\\":2,\\\"vehicleType\\\":\\\"\\\"},{\\\"currentLocation\\\":\\\"07-01-02-01\\\",\\\"isEmpty\\\":1,\\\"lastInTime\\\":\\\"2024-08-02 10:22:20\\\",\\\"vehicleId\\\":\\\"ASRS000002\\\",\\\"vehicleStatus\\\":2,\\\"vehicleType\\\":\\\"\\\"},{\\\"currentLocation\\\":\\\"03-01-03-01\\\",\\\"isEmpty\\\":1,\\\"lastInTime\\\":\\\"2024-08-02 10:26:36\\\",\\\"vehicleId\\\":\\\"ASRS000003\\\",\\\"vehicleStatus\\\":2,\\\"vehicleType\\\":\\\"\\\"},{\\\"currentLocation\\\":\\\"01-01-06-01\\\",\\\"isEmpty\\\":1,\\\"lastInTime\\\":\\\"2024-08-02 10:25:48\\\",\\\"vehicleId\\\":\\\"ASRS000004\\\",\\\"vehicleStatus\\\":2,\\\"vehicleType\\\":\\\"\\\"},{\\\"currentLocation\\\":\\\"06-01-04-01\\\",\\\"isEmpty\\\":1,\\\"lastInTime\\\":\\\"2024-08-02 10:24:52\\\",\\\"vehicleId\\\":\\\"ASRS000005\\\",\\\"vehicleStatus\\\":2,\\\"vehicleType\\\":\\\"\\\"},{\\\"currentLocation\\\":\\\"08-01-03-01\\\",\\\"isEmpty\\\":1,\\\"lastInTime\\\":\\\"2024-08-02 10:23:47\\\",\\\"vehicleId\\\":\\\"ASRS000006\\\",\\\"vehicleStatus\\\":2,\\\"vehicleType\\\":\\\"\\\"},{\\\"currentLocation\\\":\\\"05-01-04-01\\\",\\\"isEmpty\\\":1,\\\"lastInTime\\\":\\\"2024-08-02 10:27:08\\\",\\\"vehicleId\\\":\\\"ASRS000007\\\",\\\"vehicleStatus\\\":2,\\\"vehicleType\\\":\\\"\\\"},{\\\"currentLocation\\\":\\\"04-01-03-01\\\",\\\"isEmpty\\\":1,\\\"lastInTime\\\":\\\"2024-08-02 10:23:17\\\",\\\"vehicleId\\\":\\\"ASRS000008\\\",\\\"vehicleStatus\\\":2,\\\"vehicleType\\\":\\\"\\\"},{\\\"currentLocation\\\":\\\"01-01-07-01\\\",\\\"isEmpty\\\":1,\\\"lastInTime\\\":\\\"2024-08-02 10:28:46\\\",\\\"vehicleId\\\":\\\"ASRS000009\\\",\\\"vehicleStatus\\\":2,\\\"vehicleType\\\":\\\"\\\"},{\\\"currentLocation\\\":\\\"06-01-03-01\\\",\\\"isEmpty\\\":1,\\\"lastInTime\\\":\\\"2024-08-02 10:23:45\\\",\\\"vehicleId\\\":\\\"ASRS000010\\\",\\\"vehicleStatus\\\":2,\\\"vehicleType\\\":\\\"\\\"}],\\\"pages\\\":18,\\\"total\\\":175}}\"', '192.168.8.93', '2024-08-05 08:40:38', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408050840491191722818449119', '查询库位信息', 'getLocationsByPage', '[{\"wCol\": null, \"wRow\": null, \"isAsc\": true, \"areaId\": null, \"isLock\": null, \"pageNo\": 1, \"sortBy\": \"\", \"wDepth\": null, \"wLayer\": null, \"pageSize\": 10, \"vehicleId\": \"\", \"locationId\": \"\", \"equipmentId\": null, \"locationType\": null, \"locationStatus\": null}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"查询成功\\\",\\\"returnData\\\":{\\\"lists\\\":[{\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-01-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000176\\\",\\\"wCol\\\":1,\\\"wDepth\\\":1,\\\"wLayer\\\":1,\\\"wRow\\\":1},{\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-02-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000032\\\",\\\"wCol\\\":1,\\\"wDepth\\\":1,\\\"wLayer\\\":2,\\\"wRow\\\":1},{\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-03-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000041\\\",\\\"wCol\\\":1,\\\"wDepth\\\":1,\\\"wLayer\\\":3,\\\"wRow\\\":1},{\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-04-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000081\\\",\\\"wCol\\\":1,\\\"wDepth\\\":1,\\\"wLayer\\\":4,\\\"wRow\\\":1},{\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-05-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000082\\\",\\\"wCol\\\":1,\\\"wDepth\\\":1,\\\"wLayer\\\":5,\\\"wRow\\\":1},{\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-06-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000004\\\",\\\"wCol\\\":1,\\\"wDepth\\\":1,\\\"wLayer\\\":6,\\\"wRow\\\":1},{\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-07-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000009\\\",\\\"wCol\\\":1,\\\"wDepth\\\":1,\\\"wLayer\\\":7,\\\"wRow\\\":1},{\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-08-01\\\",\\\"locationStatus\\\":0,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"\\\",\\\"wCol\\\":1,\\\"wDepth\\\":1,\\\"wLayer\\\":8,\\\"wRow\\\":1},{\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-09-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000098\\\",\\\"wCol\\\":1,\\\"wDepth\\\":1,\\\"wLayer\\\":9,\\\"wRow\\\":1},{\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-10-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000050\\\",\\\"wCol\\\":1,\\\"wDepth\\\":1,\\\"wLayer\\\":10,\\\"wRow\\\":1}],\\\"pages\\\":1268,\\\"total\\\":12672}}\"', '192.168.8.93', '2024-08-05 08:40:49', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408050840493251722818449325', '查询库位信息', 'getLocationsByPage', '[{\"wCol\": null, \"wRow\": null, \"isAsc\": true, \"areaId\": null, \"isLock\": null, \"pageNo\": 1, \"sortBy\": \"\", \"wDepth\": null, \"wLayer\": null, \"pageSize\": 10, \"vehicleId\": \"\", \"locationId\": \"\", \"equipmentId\": null, \"locationType\": null, \"locationStatus\": null}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"查询成功\\\",\\\"returnData\\\":{\\\"lists\\\":[{\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-01-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000176\\\",\\\"wCol\\\":1,\\\"wDepth\\\":1,\\\"wLayer\\\":1,\\\"wRow\\\":1},{\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-02-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000032\\\",\\\"wCol\\\":1,\\\"wDepth\\\":1,\\\"wLayer\\\":2,\\\"wRow\\\":1},{\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-03-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000041\\\",\\\"wCol\\\":1,\\\"wDepth\\\":1,\\\"wLayer\\\":3,\\\"wRow\\\":1},{\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-04-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000081\\\",\\\"wCol\\\":1,\\\"wDepth\\\":1,\\\"wLayer\\\":4,\\\"wRow\\\":1},{\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-05-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000082\\\",\\\"wCol\\\":1,\\\"wDepth\\\":1,\\\"wLayer\\\":5,\\\"wRow\\\":1},{\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-06-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000004\\\",\\\"wCol\\\":1,\\\"wDepth\\\":1,\\\"wLayer\\\":6,\\\"wRow\\\":1},{\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-07-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000009\\\",\\\"wCol\\\":1,\\\"wDepth\\\":1,\\\"wLayer\\\":7,\\\"wRow\\\":1},{\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-08-01\\\",\\\"locationStatus\\\":0,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"\\\",\\\"wCol\\\":1,\\\"wDepth\\\":1,\\\"wLayer\\\":8,\\\"wRow\\\":1},{\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-09-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000098\\\",\\\"wCol\\\":1,\\\"wDepth\\\":1,\\\"wLayer\\\":9,\\\"wRow\\\":1},{\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-10-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000050\\\",\\\"wCol\\\":1,\\\"wDepth\\\":1,\\\"wLayer\\\":10,\\\"wRow\\\":1}],\\\"pages\\\":1268,\\\"total\\\":12672}}\"', '192.168.8.93', '2024-08-05 08:40:49', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408050840494921722818449492', '查询库位信息', 'getLocationsByPage', '[{\"wCol\": null, \"wRow\": null, \"isAsc\": true, \"areaId\": null, \"isLock\": null, \"pageNo\": 1, \"sortBy\": \"\", \"wDepth\": null, \"wLayer\": null, \"pageSize\": 10, \"vehicleId\": \"\", \"locationId\": \"\", \"equipmentId\": null, \"locationType\": null, \"locationStatus\": null}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"查询成功\\\",\\\"returnData\\\":{\\\"lists\\\":[{\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-01-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000176\\\",\\\"wCol\\\":1,\\\"wDepth\\\":1,\\\"wLayer\\\":1,\\\"wRow\\\":1},{\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-02-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000032\\\",\\\"wCol\\\":1,\\\"wDepth\\\":1,\\\"wLayer\\\":2,\\\"wRow\\\":1},{\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-03-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000041\\\",\\\"wCol\\\":1,\\\"wDepth\\\":1,\\\"wLayer\\\":3,\\\"wRow\\\":1},{\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-04-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000081\\\",\\\"wCol\\\":1,\\\"wDepth\\\":1,\\\"wLayer\\\":4,\\\"wRow\\\":1},{\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-05-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000082\\\",\\\"wCol\\\":1,\\\"wDepth\\\":1,\\\"wLayer\\\":5,\\\"wRow\\\":1},{\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-06-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000004\\\",\\\"wCol\\\":1,\\\"wDepth\\\":1,\\\"wLayer\\\":6,\\\"wRow\\\":1},{\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-07-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000009\\\",\\\"wCol\\\":1,\\\"wDepth\\\":1,\\\"wLayer\\\":7,\\\"wRow\\\":1},{\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-08-01\\\",\\\"locationStatus\\\":0,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"\\\",\\\"wCol\\\":1,\\\"wDepth\\\":1,\\\"wLayer\\\":8,\\\"wRow\\\":1},{\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-09-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000098\\\",\\\"wCol\\\":1,\\\"wDepth\\\":1,\\\"wLayer\\\":9,\\\"wRow\\\":1},{\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-10-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000050\\\",\\\"wCol\\\":1,\\\"wDepth\\\":1,\\\"wLayer\\\":10,\\\"wRow\\\":1}],\\\"pages\\\":1268,\\\"total\\\":12672}}\"', '192.168.8.93', '2024-08-05 08:40:49', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408050840497281722818449728', '查询库位信息', 'getLocationsByPage', '[{\"wCol\": null, \"wRow\": null, \"isAsc\": true, \"areaId\": null, \"isLock\": null, \"pageNo\": 1, \"sortBy\": \"\", \"wDepth\": null, \"wLayer\": null, \"pageSize\": 10, \"vehicleId\": \"\", \"locationId\": \"\", \"equipmentId\": null, \"locationType\": null, \"locationStatus\": null}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"查询成功\\\",\\\"returnData\\\":{\\\"lists\\\":[{\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-01-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000176\\\",\\\"wCol\\\":1,\\\"wDepth\\\":1,\\\"wLayer\\\":1,\\\"wRow\\\":1},{\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-02-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000032\\\",\\\"wCol\\\":1,\\\"wDepth\\\":1,\\\"wLayer\\\":2,\\\"wRow\\\":1},{\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-03-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000041\\\",\\\"wCol\\\":1,\\\"wDepth\\\":1,\\\"wLayer\\\":3,\\\"wRow\\\":1},{\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-04-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000081\\\",\\\"wCol\\\":1,\\\"wDepth\\\":1,\\\"wLayer\\\":4,\\\"wRow\\\":1},{\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-05-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000082\\\",\\\"wCol\\\":1,\\\"wDepth\\\":1,\\\"wLayer\\\":5,\\\"wRow\\\":1},{\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-06-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000004\\\",\\\"wCol\\\":1,\\\"wDepth\\\":1,\\\"wLayer\\\":6,\\\"wRow\\\":1},{\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-07-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000009\\\",\\\"wCol\\\":1,\\\"wDepth\\\":1,\\\"wLayer\\\":7,\\\"wRow\\\":1},{\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-08-01\\\",\\\"locationStatus\\\":0,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"\\\",\\\"wCol\\\":1,\\\"wDepth\\\":1,\\\"wLayer\\\":8,\\\"wRow\\\":1},{\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-09-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000098\\\",\\\"wCol\\\":1,\\\"wDepth\\\":1,\\\"wLayer\\\":9,\\\"wRow\\\":1},{\\\"areaId\\\":1,\\\"equipmentId\\\":1,\\\"isLock\\\":0,\\\"locationId\\\":\\\"01-01-10-01\\\",\\\"locationStatus\\\":1,\\\"locationType\\\":1,\\\"vehicleId\\\":\\\"ASRS000050\\\",\\\"wCol\\\":1,\\\"wDepth\\\":1,\\\"wLayer\\\":10,\\\"wRow\\\":1}],\\\"pages\\\":1268,\\\"total\\\":12672}}\"', '192.168.8.93', '2024-08-05 08:40:50', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408051027199811722824839981', '查询系统配置', 'getConfigsByPage', '[{\"isAsc\": true, \"pageNo\": 2, \"sortBy\": \"\", \"configId\": null, \"pageSize\": 10, \"configKey\": \"\", \"configName\": \"\", \"configType\": \"\", \"configValue\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"查询系统配置成功。\\\",\\\"returnData\\\":{\\\"lists\\\":[{\\\"configId\\\":11,\\\"configKey\\\":\\\"URL_WCS_CHANGE_TASK\\\",\\\"configName\\\":\\\"WCS接收任务状态变更URL\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"http://192.168.103.110:2000\\\"}],\\\"pages\\\":2,\\\"total\\\":11}}\"', '192.168.8.93', '2024-08-05 10:27:20', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408051027229241722824842924', '查询系统配置', 'getConfigsByPage', '[{\"isAsc\": true, \"pageNo\": 1, \"sortBy\": \"\", \"configId\": null, \"pageSize\": 10, \"configKey\": \"\", \"configName\": \"\", \"configType\": \"\", \"configValue\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"查询系统配置成功。\\\",\\\"returnData\\\":{\\\"lists\\\":[{\\\"configId\\\":1,\\\"configKey\\\":\\\"URL_WCS_TASK\\\",\\\"configName\\\":\\\"WCS接收任务URL\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask\\\"},{\\\"configId\\\":2,\\\"configKey\\\":\\\"URL_NEW_DESTINATION\\\",\\\"configName\\\":\\\"WCS接收新库位URL\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask\\\"},{\\\"configId\\\":3,\\\"configKey\\\":\\\"URL_WCS_PICK_TASK\\\",\\\"configName\\\":\\\"WCS接收拣选任务URL\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"http://192.168.8.62:18990/api/wms/convey/conveyTask\\\"},{\\\"configId\\\":4,\\\"configKey\\\":\\\"URL_WCS_E_TASK\\\",\\\"configName\\\":\\\"电子标签亮灯地址\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"http://192.168.8.62:18990/api/wms/elTag/elTagTask\\\"},{\\\"configId\\\":5,\\\"configKey\\\":\\\"URL_WCS_DISPOSE_VEHICLE\\\",\\\"configName\\\":\\\"Wcs释放箱子URL\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"http://192.168.8.62:18990/api/wms/convey/disposeVehicle\\\"},{\\\"configId\\\":6,\\\"configKey\\\":\\\"START_WORK\\\",\\\"configName\\\":\\\"开始工作\\\",\\\"configType\\\":\\\"3\\\",\\\"configValue\\\":\\\"0\\\"},{\\\"configId\\\":7,\\\"configKey\\\":\\\"SEND_TASK\\\",\\\"configName\\\":\\\"发送任务\\\",\\\"configType\\\":\\\"3\\\",\\\"configValue\\\":\\\"0\\\"},{\\\"configId\\\":8,\\\"configKey\\\":\\\"MAX_WEIGHT\\\",\\\"configName\\\":\\\"最大负重\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"250\\\"},{\\\"configId\\\":9,\\\"configKey\\\":\\\"MAX_VEHICLE_NUMS\\\",\\\"configName\\\":\\\"最大任务数量\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"54\\\"},{\\\"configId\\\":10,\\\"configKey\\\":\\\"SLOC_FILTER_STRING\\\",\\\"configName\\\":\\\"kitting物料筛选字符\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"DM05\\\"}],\\\"pages\\\":2,\\\"total\\\":11}}\"', '192.168.8.93', '2024-08-05 10:27:23', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408051030320821722825032082', '查询系统配置', 'getConfigsByPage', '[{\"isAsc\": true, \"pageNo\": 1, \"sortBy\": \"\", \"configId\": null, \"pageSize\": 10, \"configKey\": \"\", \"configName\": \"\", \"configType\": \"\", \"configValue\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"查询系统配置成功。\\\",\\\"returnData\\\":{\\\"lists\\\":[{\\\"configId\\\":1,\\\"configKey\\\":\\\"URL_WCS_TASK\\\",\\\"configName\\\":\\\"WCS接收任务URL\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask\\\"},{\\\"configId\\\":2,\\\"configKey\\\":\\\"URL_NEW_DESTINATION\\\",\\\"configName\\\":\\\"WCS接收新库位URL\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask\\\"},{\\\"configId\\\":3,\\\"configKey\\\":\\\"URL_WCS_PICK_TASK\\\",\\\"configName\\\":\\\"WCS接收拣选任务URL\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"http://192.168.8.62:18990/api/wms/convey/conveyTask\\\"},{\\\"configId\\\":4,\\\"configKey\\\":\\\"URL_WCS_E_TASK\\\",\\\"configName\\\":\\\"电子标签亮灯地址\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"http://192.168.8.62:18990/api/wms/elTag/elTagTask\\\"},{\\\"configId\\\":5,\\\"configKey\\\":\\\"URL_WCS_DISPOSE_VEHICLE\\\",\\\"configName\\\":\\\"Wcs释放箱子URL\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"http://192.168.8.62:18990/api/wms/convey/disposeVehicle\\\"},{\\\"configId\\\":6,\\\"configKey\\\":\\\"START_WORK\\\",\\\"configName\\\":\\\"开始工作\\\",\\\"configType\\\":\\\"3\\\",\\\"configValue\\\":\\\"0\\\"},{\\\"configId\\\":7,\\\"configKey\\\":\\\"SEND_TASK\\\",\\\"configName\\\":\\\"发送任务\\\",\\\"configType\\\":\\\"3\\\",\\\"configValue\\\":\\\"0\\\"},{\\\"configId\\\":8,\\\"configKey\\\":\\\"MAX_WEIGHT\\\",\\\"configName\\\":\\\"最大负重\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"250\\\"},{\\\"configId\\\":9,\\\"configKey\\\":\\\"MAX_VEHICLE_NUMS\\\",\\\"configName\\\":\\\"最大任务数量\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"54\\\"},{\\\"configId\\\":10,\\\"configKey\\\":\\\"SLOC_FILTER_STRING\\\",\\\"configName\\\":\\\"kitting物料筛选字符\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"DM05\\\"}],\\\"pages\\\":2,\\\"total\\\":11}}\"', '192.168.8.93', '2024-08-05 10:30:32', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408051030497711722825049771', '查询系统配置', 'getConfigsByPage', '[{\"isAsc\": true, \"pageNo\": 1, \"sortBy\": \"\", \"configId\": null, \"pageSize\": 10, \"configKey\": \"\", \"configName\": \"\", \"configType\": \"\", \"configValue\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"查询系统配置成功。\\\",\\\"returnData\\\":{\\\"lists\\\":[{\\\"configId\\\":1,\\\"configKey\\\":\\\"URL_WCS_TASK\\\",\\\"configName\\\":\\\"WCS接收任务URL\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask\\\"},{\\\"configId\\\":2,\\\"configKey\\\":\\\"URL_NEW_DESTINATION\\\",\\\"configName\\\":\\\"WCS接收新库位URL\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask\\\"},{\\\"configId\\\":3,\\\"configKey\\\":\\\"URL_WCS_PICK_TASK\\\",\\\"configName\\\":\\\"WCS接收拣选任务URL\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"http://192.168.8.62:18990/api/wms/convey/conveyTask\\\"},{\\\"configId\\\":4,\\\"configKey\\\":\\\"URL_WCS_E_TASK\\\",\\\"configName\\\":\\\"电子标签亮灯地址\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"http://192.168.8.62:18990/api/wms/elTag/elTagTask\\\"},{\\\"configId\\\":5,\\\"configKey\\\":\\\"URL_WCS_DISPOSE_VEHICLE\\\",\\\"configName\\\":\\\"Wcs释放箱子URL\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"http://192.168.8.62:18990/api/wms/convey/disposeVehicle\\\"},{\\\"configId\\\":6,\\\"configKey\\\":\\\"START_WORK\\\",\\\"configName\\\":\\\"开始工作\\\",\\\"configType\\\":\\\"3\\\",\\\"configValue\\\":\\\"0\\\"},{\\\"configId\\\":7,\\\"configKey\\\":\\\"SEND_TASK\\\",\\\"configName\\\":\\\"发送任务\\\",\\\"configType\\\":\\\"3\\\",\\\"configValue\\\":\\\"0\\\"},{\\\"configId\\\":8,\\\"configKey\\\":\\\"MAX_WEIGHT\\\",\\\"configName\\\":\\\"最大负重\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"250\\\"},{\\\"configId\\\":9,\\\"configKey\\\":\\\"MAX_VEHICLE_NUMS\\\",\\\"configName\\\":\\\"最大任务数量\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"54\\\"},{\\\"configId\\\":10,\\\"configKey\\\":\\\"SLOC_FILTER_STRING\\\",\\\"configName\\\":\\\"kitting物料筛选字符\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"DM05\\\"}],\\\"pages\\\":2,\\\"total\\\":11}}\"', '192.168.8.93', '2024-08-05 10:30:50', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408051031104991722825070499', '查询系统配置', 'getConfigsByPage', '[{\"isAsc\": true, \"pageNo\": 1, \"sortBy\": \"\", \"configId\": null, \"pageSize\": 10, \"configKey\": \"\", \"configName\": \"\", \"configType\": \"\", \"configValue\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"查询系统配置成功。\\\",\\\"returnData\\\":{\\\"lists\\\":[{\\\"configId\\\":1,\\\"configKey\\\":\\\"URL_WCS_TASK\\\",\\\"configName\\\":\\\"WCS接收任务URL\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask\\\"},{\\\"configId\\\":2,\\\"configKey\\\":\\\"URL_NEW_DESTINATION\\\",\\\"configName\\\":\\\"WCS接收新库位URL\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"http://192.168.8.62:18990/api/Wms/WmsTask/SetStackerTask\\\"},{\\\"configId\\\":3,\\\"configKey\\\":\\\"URL_WCS_PICK_TASK\\\",\\\"configName\\\":\\\"WCS接收拣选任务URL\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"http://192.168.8.62:18990/api/wms/convey/conveyTask\\\"},{\\\"configId\\\":4,\\\"configKey\\\":\\\"URL_WCS_E_TASK\\\",\\\"configName\\\":\\\"电子标签亮灯地址\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"http://192.168.8.62:18990/api/wms/elTag/elTagTask\\\"},{\\\"configId\\\":5,\\\"configKey\\\":\\\"URL_WCS_DISPOSE_VEHICLE\\\",\\\"configName\\\":\\\"Wcs释放箱子URL\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"http://192.168.8.62:18990/api/wms/convey/disposeVehicle\\\"},{\\\"configId\\\":6,\\\"configKey\\\":\\\"START_WORK\\\",\\\"configName\\\":\\\"开始工作\\\",\\\"configType\\\":\\\"3\\\",\\\"configValue\\\":\\\"0\\\"},{\\\"configId\\\":7,\\\"configKey\\\":\\\"SEND_TASK\\\",\\\"configName\\\":\\\"发送任务\\\",\\\"configType\\\":\\\"3\\\",\\\"configValue\\\":\\\"0\\\"},{\\\"configId\\\":8,\\\"configKey\\\":\\\"MAX_WEIGHT\\\",\\\"configName\\\":\\\"最大负重\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"250\\\"},{\\\"configId\\\":9,\\\"configKey\\\":\\\"MAX_VEHICLE_NUMS\\\",\\\"configName\\\":\\\"最大任务数量\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"54\\\"},{\\\"configId\\\":10,\\\"configKey\\\":\\\"SLOC_FILTER_STRING\\\",\\\"configName\\\":\\\"kitting物料筛选字符\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"DM05\\\"}],\\\"pages\\\":2,\\\"total\\\":11}}\"', '192.168.8.93', '2024-08-05 10:31:10', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408051105240651722827124065', '获取当前站台任务完成信息', 'getFinishedWorkInfo', '[{\"goodsId\": \"\", \"standId\": \"ASRS-#1\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"获取工作信息成功\\\",\\\"returnData\\\":{\\\"actualCounts\\\":0,\\\"actualRows\\\":0,\\\"planCounts\\\":0,\\\"planRows\\\":0,\\\"standId\\\":\\\"ASRS-#1\\\",\\\"tip\\\":\\\"当前站台没有工作\\\"}}\"', '192.168.8.93', '2024-08-05 11:05:24', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408052115024921722863702492', '带密码登录', 'loginWithAuth', '[{\"isAsc\": true, \"pageNo\": 1, \"roleId\": null, \"sortBy\": \"\", \"userId\": null, \"addTime\": null, \"addUser\": \"\", \"pageSize\": 10, \"userName\": \"\", \"updateTime\": null, \"loginAccount\": \"admin\", \"loginPassword\": \"admin\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"登录成功\\\",\\\"returnData\\\":{\\\"menuList\\\":[{\\\"children\\\":[{\\\"children\\\":[],\\\"id\\\":\\\"11\\\",\\\"labelName\\\":\\\"入库\\\",\\\"path\\\":\\\"/goodsIn\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"12\\\",\\\"labelName\\\":\\\"出库\\\",\\\"path\\\":\\\"/goodsOut\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"13\\\",\\\"labelName\\\":\\\"盘点\\\",\\\"path\\\":\\\"/inventory\\\"}],\\\"iconValue\\\":\\\"Operation\\\",\\\"id\\\":\\\"1\\\",\\\"labelName\\\":\\\"操作\\\",\\\"path\\\":\\\"\\\"},{\\\"children\\\":[{\\\"children\\\":[],\\\"id\\\":\\\"21\\\",\\\"labelName\\\":\\\"库存信息\\\",\\\"path\\\":\\\"/stock\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"22\\\",\\\"labelName\\\":\\\"物料信息\\\",\\\"path\\\":\\\"/goods\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"23\\\",\\\"labelName\\\":\\\"入库记录\\\",\\\"path\\\":\\\"/inTaskRecord\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"24\\\",\\\"labelName\\\":\\\"出库记录\\\",\\\"path\\\":\\\"/outTaskRecord\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"241\\\",\\\"labelName\\\":\\\"盘点记录\\\",\\\"path\\\":\\\"/inventoryRecord\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"25\\\",\\\"labelName\\\":\\\"任务监控\\\",\\\"path\\\":\\\"/taskMonitor\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"26\\\",\\\"labelName\\\":\\\"库位监控\\\",\\\"path\\\":\\\"/location\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"27\\\",\\\"labelName\\\":\\\"料箱监控\\\",\\\"path\\\":\\\"/vehicles\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"28\\\",\\\"labelName\\\":\\\"接口日志\\\",\\\"path\\\":\\\"/wmsLog\\\"}],\\\"iconValue\\\":\\\"Histogram\\\",\\\"id\\\":\\\"2\\\",\\\"labelName\\\":\\\"数据\\\",\\\"path\\\":\\\"\\\"},{\\\"children\\\":[{\\\"children\\\":[],\\\"id\\\":\\\"35\\\",\\\"labelName\\\":\\\"系统配置\\\",\\\"path\\\":\\\"/config\\\"}],\\\"iconValue\\\":\\\"Setting\\\",\\\"id\\\":\\\"3\\\",\\\"labelName\\\":\\\"系统\\\"},{\\\"children\\\":[{\\\"children\\\":[],\\\"id\\\":\\\"41\\\",\\\"labelName\\\":\\\"备料执行\\\",\\\"path\\\":\\\"/testDoKitting\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"42\\\",\\\"labelName\\\":\\\"备料完成\\\",\\\"path\\\":\\\"/testFinishKitting\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"43\\\",\\\"labelName\\\":\\\"呼叫空箱\\\",\\\"path\\\":\\\"/testCallEmptyVehicle\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"44\\\",\\\"labelName\\\":\\\"整理盒子\\\",\\\"path\\\":\\\"/testSortBoxs\\\"}],\\\"iconValue\\\":\\\"Lock\\\",\\\"id\\\":\\\"4\\\",\\\"labelName\\\":\\\"测试\\\"}],\\\"standId\\\":\\\"\\\",\\\"user\\\":{\\\"addTime\\\":\\\"2023-03-23 11:17:06\\\",\\\"addUser\\\":\\\"系统\\\",\\\"loginAccount\\\":\\\"admin\\\",\\\"loginPassword\\\":\\\"812C0C84E2970FA98456DDC5B0B59594\\\",\\\"roleId\\\":1,\\\"updateTime\\\":\\\"2023-03-23 11:17:10\\\",\\\"userId\\\":1,\\\"userName\\\":\\\"管理员\\\"}}}\"', '127.0.0.1', '2024-08-05 21:15:02', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061336228401722922582840', '带密码登录', 'loginWithAuth', '[{\"isAsc\": true, \"pageNo\": 1, \"roleId\": null, \"sortBy\": \"\", \"userId\": null, \"addTime\": null, \"addUser\": \"\", \"pageSize\": 10, \"userName\": \"\", \"updateTime\": null, \"loginAccount\": \"admin\", \"loginPassword\": \"admin\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"登录成功\\\",\\\"returnData\\\":{\\\"menuList\\\":[{\\\"children\\\":[{\\\"children\\\":[],\\\"id\\\":\\\"11\\\",\\\"labelName\\\":\\\"入库\\\",\\\"path\\\":\\\"/goodsIn\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"12\\\",\\\"labelName\\\":\\\"出库\\\",\\\"path\\\":\\\"/goodsOut\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"13\\\",\\\"labelName\\\":\\\"盘点\\\",\\\"path\\\":\\\"/inventory\\\"}],\\\"iconValue\\\":\\\"Operation\\\",\\\"id\\\":\\\"1\\\",\\\"labelName\\\":\\\"操作\\\",\\\"path\\\":\\\"\\\"},{\\\"children\\\":[{\\\"children\\\":[],\\\"id\\\":\\\"21\\\",\\\"labelName\\\":\\\"库存信息\\\",\\\"path\\\":\\\"/stock\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"22\\\",\\\"labelName\\\":\\\"物料信息\\\",\\\"path\\\":\\\"/goods\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"23\\\",\\\"labelName\\\":\\\"入库记录\\\",\\\"path\\\":\\\"/inTaskRecord\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"24\\\",\\\"labelName\\\":\\\"出库记录\\\",\\\"path\\\":\\\"/outTaskRecord\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"241\\\",\\\"labelName\\\":\\\"盘点记录\\\",\\\"path\\\":\\\"/inventoryRecord\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"25\\\",\\\"labelName\\\":\\\"任务监控\\\",\\\"path\\\":\\\"/taskMonitor\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"26\\\",\\\"labelName\\\":\\\"库位监控\\\",\\\"path\\\":\\\"/location\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"27\\\",\\\"labelName\\\":\\\"料箱监控\\\",\\\"path\\\":\\\"/vehicles\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"28\\\",\\\"labelName\\\":\\\"接口日志\\\",\\\"path\\\":\\\"/wmsLog\\\"}],\\\"iconValue\\\":\\\"Histogram\\\",\\\"id\\\":\\\"2\\\",\\\"labelName\\\":\\\"数据\\\",\\\"path\\\":\\\"\\\"},{\\\"children\\\":[{\\\"children\\\":[],\\\"id\\\":\\\"35\\\",\\\"labelName\\\":\\\"系统配置\\\",\\\"path\\\":\\\"/config\\\"}],\\\"iconValue\\\":\\\"Setting\\\",\\\"id\\\":\\\"3\\\",\\\"labelName\\\":\\\"系统\\\"},{\\\"children\\\":[{\\\"children\\\":[],\\\"id\\\":\\\"41\\\",\\\"labelName\\\":\\\"备料执行\\\",\\\"path\\\":\\\"/testDoKitting\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"42\\\",\\\"labelName\\\":\\\"备料完成\\\",\\\"path\\\":\\\"/testFinishKitting\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"43\\\",\\\"labelName\\\":\\\"呼叫空箱\\\",\\\"path\\\":\\\"/testCallEmptyVehicle\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"44\\\",\\\"labelName\\\":\\\"整理盒子\\\",\\\"path\\\":\\\"/testSortBoxs\\\"}],\\\"iconValue\\\":\\\"Lock\\\",\\\"id\\\":\\\"4\\\",\\\"labelName\\\":\\\"测试\\\"}],\\\"standId\\\":\\\"\\\",\\\"user\\\":{\\\"addTime\\\":\\\"2023-03-23 11:17:06\\\",\\\"addUser\\\":\\\"系统\\\",\\\"loginAccount\\\":\\\"admin\\\",\\\"loginPassword\\\":\\\"812C0C84E2970FA98456DDC5B0B59594\\\",\\\"roleId\\\":1,\\\"updateTime\\\":\\\"2023-03-23 11:17:10\\\",\\\"userId\\\":1,\\\"userName\\\":\\\"管理员\\\"}}}\"', '127.0.0.1', '2024-08-06 13:36:23', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061339230131722922763013', '查询系统配置', 'getConfigsByPage', '[{\"isAsc\": true, \"pageNo\": 1, \"sortBy\": \"\", \"configId\": null, \"pageSize\": 10, \"configKey\": \"\", \"configName\": \"\", \"configType\": \"\", \"configValue\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"查询系统配置成功。\\\",\\\"returnData\\\":{\\\"lists\\\":[{\\\"configId\\\":1,\\\"configKey\\\":\\\"URL_WCS_TASK\\\",\\\"configName\\\":\\\"WCS接收任务URL\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask\\\"},{\\\"configId\\\":2,\\\"configKey\\\":\\\"URL_NEW_DESTINATION\\\",\\\"configName\\\":\\\"WCS接收新库位URL\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask\\\"},{\\\"configId\\\":3,\\\"configKey\\\":\\\"URL_WCS_PICK_TASK\\\",\\\"configName\\\":\\\"WCS接收拣选任务URL\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"http://10.90.106.61:18990/api/wms/convey/conveyTask\\\"},{\\\"configId\\\":4,\\\"configKey\\\":\\\"URL_WCS_E_TASK\\\",\\\"configName\\\":\\\"电子标签亮灯地址\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"http://10.90.106.61:18990/api/wms/elTag/elTagTask\\\"},{\\\"configId\\\":5,\\\"configKey\\\":\\\"URL_WCS_DISPOSE_VEHICLE\\\",\\\"configName\\\":\\\"Wcs释放箱子URL\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"http://10.90.106.61:18990/api/wms/convey/disposeVehicle\\\"},{\\\"configId\\\":6,\\\"configKey\\\":\\\"START_WORK\\\",\\\"configName\\\":\\\"开始工作\\\",\\\"configType\\\":\\\"3\\\",\\\"configValue\\\":\\\"0\\\"},{\\\"configId\\\":7,\\\"configKey\\\":\\\"SEND_TASK\\\",\\\"configName\\\":\\\"发送任务\\\",\\\"configType\\\":\\\"3\\\",\\\"configValue\\\":\\\"0\\\"},{\\\"configId\\\":8,\\\"configKey\\\":\\\"MAX_WEIGHT\\\",\\\"configName\\\":\\\"最大负重\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"250\\\"},{\\\"configId\\\":9,\\\"configKey\\\":\\\"MAX_VEHICLE_NUMS\\\",\\\"configName\\\":\\\"最大任务数量\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"54\\\"},{\\\"configId\\\":10,\\\"configKey\\\":\\\"SLOC_FILTER_STRING\\\",\\\"configName\\\":\\\"kitting物料筛选字符\\\",\\\"configType\\\":\\\"1\\\",\\\"configValue\\\":\\\"DM05\\\"}],\\\"pages\\\":2,\\\"total\\\":11}}\"', '127.0.0.1', '2024-08-06 13:39:23', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061343484301722923028430', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000104\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '10.90.106.61', '2024-08-06 13:43:48', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061344137581722923053758', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021321149521722576074952\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000104\", \"taskStatus\": 2, \"destination\": \"09-01-15-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 13:44:14', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061344521421722923092142', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021321149521722576074952\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000104\", \"taskStatus\": 100, \"destination\": \"09-01-15-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 13:44:52', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061355225261722923722526', '呼叫空箱', 'callEmptyVehicle', '[{\"goodsId\": \"\", \"needNum\": 100, \"userName\": \"管理员\", \"vehicleType1\": \"\", \"vehicleType2\": \"CLC一箱一料\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"呼叫空箱成功,请等待箱子出库。\\\"}\"', '127.0.0.1', '2024-08-06 13:55:23', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061356506361722923810636', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355214861722923721486\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000154\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355214981722923721498\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000034\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355215031722923721503\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000032\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355215081722923721508\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000018\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355215131722923721513\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000036\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355215181722923721518\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000087\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355215231722923721523\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000043\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355215281722923721528\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000041\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355215341722923721534\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000143\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355215391722923721539\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000002\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355215431722923721543\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000039\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355215471722923721547\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000081\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355215521722923721552\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000008\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355215571722923721557\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000010\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355215641722923721564\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000006\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355215721722923721572\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000082\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355215811722923721581\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000085\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355215871722923721587\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000084\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355215931722923721593\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000037\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355215981722923721598\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000021\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355216031722923721603\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000012\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355216071722923721607\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000005\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355216121722923721612\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000033\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355216161722923721616\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000004\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355216201722923721620\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000042\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355216251722923721625\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000040\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355216291722923721629\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000003\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355216321722923721632\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000016\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355216371722923721637\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000007\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355216421722923721642\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000030\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355216461722923721646\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000014\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355216491722923721649\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000023\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355216531722923721653\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000011\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355216581722923721658\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000013\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355216631722923721663\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000009\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355216691722923721669\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000017\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355216741722923721674\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000097\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355216791722923721679\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000022\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355216831722923721683\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000090\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355216881722923721688\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000099\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355216931722923721693\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000088\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355216981722923721698\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000089\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217021722923721702\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000020\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217061722923721706\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000092\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217091722923721709\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000098\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217141722923721714\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000091\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217181722923721718\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000063\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217231722923721723\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000064\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217271722923721727\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000060\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217321722923721732\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000050\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217361722923721736\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000055\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217401722923721740\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000086\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217441722923721744\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000066\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217481722923721748\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000058\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":0,\\\"message\\\":\\\"任务创建成功,任务号:202408061355214861722923721486,202408061355214981722923721498,202408061355215031722923721503,202408061355215081722923721508,202408061355215131722923721513,202408061355215181722923721518,202408061355215231722923721523,202408061355215281722923721528,202408061355215341722923721534,202408061355215391722923721539,202408061355215431722923721543,202408061355215471722923721547,202408061355215521722923721552,202408061355215571722923721557,202408061355215641722923721564,202408061355215721722923721572,202408061355215811722923721581,202408061355215871722923721587,202408061355215931722923721593,202408061355215981722923721598,202408061355216031722923721603,202408061355216071722923721607,202408061355216121722923721612,202408061355216161722923721616,202408061355216201722923721620,202408061355216251722923721625,202408061355216291722923721629,202408061355216321722923721632,202408061355216371722923721637,202408061355216421722923721642,202408061355216461722923721646,202408061355216491722923721649,202408061355216531722923721653,202408061355216581722923721658,202408061355216631722923721663,202408061355216691722923721669,202408061355216741722923721674,202408061355216791722923721679,202408061355216831722923721683,202408061355216881722923721688,202408061355216931722923721693,202408061355216981722923721698,202408061355217021722923721702,202408061355217061722923721706,202408061355217091722923721709,202408061355217141722923721714,202408061355217181722923721718,202408061355217231722923721723,202408061355217271722923721727,202408061355217321722923721732,202408061355217361722923721736,202408061355217401722923721740,202408061355217441722923721744,202408061355217481722923721748\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 13:56:51', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061356513481722923811348', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061355214981722923721498\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000034\", \"taskStatus\": 2, \"destination\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 13:56:51', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061356562481722923816248', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217521722923721752\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000073\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217561722923721756\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000049\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217621722923721762\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000083\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217741722923721774\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000024\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217821722923721782\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000077\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217891722923721789\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000025\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217961722923721796\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000038\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218021722923721802\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000031\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218621722923721862\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218811722923721881\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218901722923721890\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000053\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218971722923721897\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000048\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219041722923721904\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000093\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219111722923721911\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000100\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219181722923721918\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000062\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219251722923721925\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000057\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219321722923721932\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000052\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219391722923721939\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000029\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219461722923721946\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219511722923721951\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000059\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219571722923721957\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000074\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219631722923721963\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219691722923721969\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000188\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219761722923721976\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000118\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219821722923721982\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219961722923721996\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000067\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220631722923722063\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000193\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220711722923722071\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000166\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220761722923722076\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000168\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223411722923722341\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000112\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223631722923722363\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223701722923722370\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223761722923722376\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000061\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224411722923722441\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000080\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"null\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 13:56:56', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061356582831722923818283', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217521722923721752\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000073\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217561722923721756\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000049\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217621722923721762\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000083\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217741722923721774\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000024\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217821722923721782\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000077\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217891722923721789\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000025\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217961722923721796\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000038\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218021722923721802\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000031\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218621722923721862\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218811722923721881\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218901722923721890\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000053\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218971722923721897\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000048\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219041722923721904\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000093\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219111722923721911\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000100\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219181722923721918\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000062\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219251722923721925\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000057\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219321722923721932\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000052\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219391722923721939\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000029\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219461722923721946\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219511722923721951\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000059\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219571722923721957\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000074\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219631722923721963\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219691722923721969\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000188\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219761722923721976\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000118\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219821722923721982\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219961722923721996\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000067\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220631722923722063\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000193\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220711722923722071\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000166\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220761722923722076\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000168\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223411722923722341\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000112\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223631722923722363\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223701722923722370\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223761722923722376\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000061\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224411722923722441\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000080\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"null\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 13:56:58', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061357002861722923820286', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217521722923721752\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000073\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217561722923721756\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000049\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217621722923721762\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000083\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217741722923721774\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000024\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217821722923721782\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000077\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217891722923721789\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000025\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217961722923721796\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000038\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218021722923721802\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000031\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218621722923721862\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218811722923721881\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218901722923721890\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000053\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218971722923721897\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000048\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219041722923721904\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000093\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219111722923721911\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000100\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219181722923721918\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000062\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219251722923721925\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000057\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219321722923721932\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000052\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219391722923721939\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000029\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219461722923721946\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219511722923721951\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000059\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219571722923721957\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000074\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219631722923721963\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219691722923721969\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000188\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219761722923721976\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000118\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219821722923721982\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219961722923721996\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000067\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220631722923722063\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000193\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220711722923722071\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000166\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220761722923722076\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000168\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223411722923722341\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000112\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223631722923722363\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223701722923722370\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223761722923722376\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000061\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224411722923722441\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000080\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"null\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 13:57:00', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061357022701722923822270', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217521722923721752\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000073\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217561722923721756\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000049\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217621722923721762\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000083\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217741722923721774\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000024\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217821722923721782\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000077\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217891722923721789\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000025\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217961722923721796\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000038\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218021722923721802\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000031\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218621722923721862\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218811722923721881\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218901722923721890\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000053\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218971722923721897\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000048\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219041722923721904\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000093\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219111722923721911\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000100\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219181722923721918\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000062\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219251722923721925\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000057\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219321722923721932\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000052\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219391722923721939\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000029\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219461722923721946\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219511722923721951\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000059\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219571722923721957\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000074\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219631722923721963\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219691722923721969\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000188\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219761722923721976\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000118\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219821722923721982\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219961722923721996\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000067\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220631722923722063\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000193\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220711722923722071\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000166\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220761722923722076\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000168\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223411722923722341\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000112\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223631722923722363\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223701722923722370\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223761722923722376\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000061\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224411722923722441\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000080\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"null\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 13:57:02', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061357042951722923824295', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217521722923721752\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000073\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217561722923721756\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000049\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217621722923721762\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000083\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217741722923721774\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000024\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217821722923721782\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000077\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217891722923721789\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000025\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217961722923721796\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000038\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218021722923721802\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000031\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218621722923721862\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218811722923721881\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218901722923721890\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000053\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218971722923721897\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000048\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219041722923721904\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000093\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219111722923721911\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000100\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219181722923721918\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000062\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219251722923721925\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000057\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219321722923721932\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000052\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219391722923721939\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000029\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219461722923721946\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219511722923721951\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000059\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219571722923721957\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000074\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219631722923721963\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219691722923721969\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000188\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219761722923721976\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000118\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219821722923721982\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219961722923721996\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000067\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220631722923722063\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000193\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220711722923722071\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000166\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220761722923722076\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000168\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223411722923722341\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000112\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223631722923722363\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223701722923722370\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223761722923722376\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000061\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224411722923722441\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000080\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"null\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 13:57:04', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061357062791722923826279', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217521722923721752\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000073\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217561722923721756\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000049\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217621722923721762\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000083\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217741722923721774\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000024\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217821722923721782\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000077\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217891722923721789\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000025\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217961722923721796\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000038\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218021722923721802\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000031\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218621722923721862\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218811722923721881\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218901722923721890\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000053\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218971722923721897\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000048\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219041722923721904\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000093\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219111722923721911\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000100\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219181722923721918\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000062\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219251722923721925\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000057\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219321722923721932\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000052\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219391722923721939\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000029\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219461722923721946\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219511722923721951\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000059\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219571722923721957\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000074\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219631722923721963\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219691722923721969\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000188\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219761722923721976\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000118\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219821722923721982\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219961722923721996\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000067\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220631722923722063\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000193\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220711722923722071\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000166\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220761722923722076\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000168\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223411722923722341\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000112\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223631722923722363\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223701722923722370\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223761722923722376\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000061\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224411722923722441\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000080\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"null\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 13:57:06', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061357082671722923828267', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217521722923721752\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000073\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217561722923721756\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000049\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217621722923721762\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000083\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217741722923721774\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000024\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217821722923721782\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000077\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217891722923721789\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000025\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217961722923721796\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000038\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218021722923721802\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000031\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218621722923721862\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218811722923721881\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218901722923721890\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000053\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218971722923721897\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000048\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219041722923721904\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000093\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219111722923721911\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000100\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219181722923721918\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000062\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219251722923721925\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000057\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219321722923721932\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000052\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219391722923721939\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000029\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219461722923721946\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219511722923721951\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000059\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219571722923721957\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000074\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219631722923721963\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219691722923721969\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000188\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219761722923721976\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000118\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219821722923721982\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219961722923721996\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000067\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220631722923722063\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000193\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220711722923722071\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000166\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220761722923722076\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000168\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223411722923722341\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000112\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223631722923722363\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223701722923722370\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223761722923722376\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000061\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224411722923722441\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000080\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"null\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 13:57:08', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061357102771722923830277', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217521722923721752\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000073\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217561722923721756\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000049\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217621722923721762\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000083\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217741722923721774\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000024\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217821722923721782\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000077\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217891722923721789\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000025\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217961722923721796\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000038\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218021722923721802\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000031\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218621722923721862\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218811722923721881\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218901722923721890\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000053\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218971722923721897\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000048\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219041722923721904\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000093\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219111722923721911\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000100\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219181722923721918\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000062\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219251722923721925\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000057\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219321722923721932\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000052\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219391722923721939\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000029\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219461722923721946\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219511722923721951\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000059\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219571722923721957\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000074\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219631722923721963\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219691722923721969\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000188\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219761722923721976\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000118\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219821722923721982\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219961722923721996\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000067\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220631722923722063\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000193\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220711722923722071\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000166\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220761722923722076\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000168\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223411722923722341\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000112\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223631722923722363\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223701722923722370\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223761722923722376\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000061\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224411722923722441\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000080\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"null\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 13:57:10', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061357122731722923832273', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217521722923721752\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000073\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217561722923721756\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000049\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217621722923721762\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000083\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217741722923721774\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000024\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217821722923721782\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000077\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217891722923721789\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000025\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217961722923721796\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000038\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218021722923721802\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000031\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218621722923721862\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218811722923721881\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218901722923721890\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000053\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218971722923721897\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000048\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219041722923721904\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000093\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219111722923721911\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000100\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219181722923721918\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000062\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219251722923721925\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000057\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219321722923721932\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000052\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219391722923721939\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000029\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219461722923721946\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219511722923721951\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000059\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219571722923721957\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000074\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219631722923721963\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219691722923721969\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000188\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219761722923721976\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000118\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219821722923721982\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219961722923721996\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000067\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220631722923722063\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000193\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220711722923722071\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000166\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220761722923722076\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000168\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223411722923722341\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000112\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223631722923722363\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223701722923722370\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223761722923722376\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000061\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224411722923722441\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000080\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"null\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 13:57:12', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061357142851722923834285', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217521722923721752\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000073\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217561722923721756\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000049\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217621722923721762\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000083\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217741722923721774\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000024\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217821722923721782\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000077\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217891722923721789\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000025\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217961722923721796\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000038\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218021722923721802\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000031\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218621722923721862\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218811722923721881\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218901722923721890\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000053\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218971722923721897\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000048\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219041722923721904\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000093\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219111722923721911\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000100\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219181722923721918\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000062\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219251722923721925\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000057\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219321722923721932\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000052\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219391722923721939\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000029\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219461722923721946\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219511722923721951\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000059\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219571722923721957\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000074\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219631722923721963\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219691722923721969\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000188\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219761722923721976\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000118\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219821722923721982\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219961722923721996\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000067\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220631722923722063\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000193\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220711722923722071\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000166\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220761722923722076\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000168\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223411722923722341\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000112\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223631722923722363\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223701722923722370\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223761722923722376\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000061\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224411722923722441\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000080\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"null\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 13:57:14', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061357162951722923836295', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217521722923721752\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000073\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217561722923721756\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000049\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217621722923721762\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000083\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217741722923721774\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000024\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217821722923721782\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000077\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217891722923721789\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000025\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217961722923721796\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000038\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218021722923721802\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000031\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218621722923721862\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218811722923721881\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218901722923721890\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000053\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218971722923721897\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000048\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219041722923721904\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000093\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219111722923721911\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000100\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219181722923721918\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000062\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219251722923721925\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000057\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219321722923721932\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000052\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219391722923721939\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000029\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219461722923721946\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219511722923721951\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000059\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219571722923721957\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000074\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219631722923721963\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219691722923721969\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000188\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219761722923721976\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000118\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219821722923721982\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219961722923721996\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000067\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220631722923722063\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000193\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220711722923722071\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000166\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220761722923722076\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000168\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223411722923722341\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000112\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223631722923722363\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223701722923722370\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223761722923722376\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000061\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224411722923722441\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000080\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"null\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 13:57:16', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061357182801722923838280', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217521722923721752\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000073\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217561722923721756\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000049\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217621722923721762\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000083\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217741722923721774\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000024\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217821722923721782\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000077\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217891722923721789\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000025\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217961722923721796\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000038\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218021722923721802\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000031\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218621722923721862\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218811722923721881\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218901722923721890\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000053\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218971722923721897\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000048\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219041722923721904\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000093\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219111722923721911\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000100\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219181722923721918\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000062\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219251722923721925\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000057\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219321722923721932\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000052\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219391722923721939\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000029\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219461722923721946\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219511722923721951\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000059\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219571722923721957\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000074\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219631722923721963\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219691722923721969\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000188\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219761722923721976\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000118\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219821722923721982\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219961722923721996\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000067\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220631722923722063\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000193\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220711722923722071\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000166\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220761722923722076\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000168\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223411722923722341\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000112\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223631722923722363\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223701722923722370\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223761722923722376\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000061\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224411722923722441\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000080\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"null\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 13:57:18', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061357202811722923840281', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217521722923721752\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000073\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217561722923721756\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000049\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217621722923721762\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000083\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217741722923721774\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000024\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217821722923721782\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000077\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217891722923721789\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000025\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217961722923721796\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000038\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218021722923721802\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000031\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218621722923721862\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218811722923721881\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218901722923721890\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000053\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218971722923721897\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000048\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219041722923721904\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000093\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219111722923721911\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000100\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219181722923721918\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000062\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219251722923721925\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000057\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219321722923721932\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000052\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219391722923721939\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000029\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219461722923721946\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219511722923721951\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000059\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219571722923721957\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000074\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219631722923721963\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219691722923721969\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000188\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219761722923721976\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000118\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219821722923721982\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219961722923721996\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000067\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220631722923722063\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000193\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220711722923722071\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000166\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220761722923722076\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000168\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223411722923722341\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000112\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223631722923722363\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223701722923722370\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223761722923722376\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000061\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224411722923722441\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000080\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"null\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 13:57:20', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061357216011722923841601', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217521722923721752\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000073\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217561722923721756\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000049\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217621722923721762\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000083\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217741722923721774\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000024\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217821722923721782\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000077\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217891722923721789\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000025\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217961722923721796\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000038\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218021722923721802\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000031\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218621722923721862\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218811722923721881\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218901722923721890\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000053\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218971722923721897\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000048\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219041722923721904\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000093\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219111722923721911\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000100\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219181722923721918\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000062\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219251722923721925\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000057\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219321722923721932\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000052\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219391722923721939\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000029\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219461722923721946\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219511722923721951\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000059\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219571722923721957\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000074\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219631722923721963\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219691722923721969\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000188\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219761722923721976\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000118\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219821722923721982\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219961722923721996\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000067\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220631722923722063\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000193\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220711722923722071\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000166\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220761722923722076\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000168\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223411722923722341\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000112\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223631722923722363\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223701722923722370\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223761722923722376\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000061\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224411722923722441\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000080\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"null\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 13:57:22', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061357216031722923841603', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217521722923721752\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000073\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217561722923721756\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000049\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217621722923721762\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000083\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217741722923721774\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000024\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217821722923721782\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000077\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217891722923721789\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000025\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217961722923721796\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000038\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218021722923721802\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000031\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218621722923721862\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218811722923721881\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218901722923721890\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000053\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218971722923721897\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000048\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219041722923721904\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000093\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219111722923721911\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000100\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219181722923721918\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000062\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219251722923721925\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000057\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219321722923721932\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000052\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219391722923721939\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000029\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219461722923721946\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219511722923721951\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000059\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219571722923721957\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000074\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219631722923721963\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219691722923721969\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000188\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219761722923721976\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000118\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219821722923721982\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219961722923721996\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000067\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220631722923722063\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000193\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220711722923722071\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000166\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220761722923722076\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000168\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223411722923722341\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000112\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223631722923722363\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223701722923722370\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223761722923722376\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000061\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224411722923722441\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000080\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"null\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 13:57:22', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061357216051722923841605', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217521722923721752\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000073\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217561722923721756\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000049\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217621722923721762\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000083\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217741722923721774\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000024\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217821722923721782\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000077\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217891722923721789\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000025\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217961722923721796\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000038\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218021722923721802\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000031\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218621722923721862\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218811722923721881\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218901722923721890\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000053\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218971722923721897\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000048\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219041722923721904\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000093\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219111722923721911\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000100\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219181722923721918\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000062\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219251722923721925\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000057\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219321722923721932\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000052\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219391722923721939\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000029\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219461722923721946\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219511722923721951\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000059\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219571722923721957\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000074\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219631722923721963\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219691722923721969\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000188\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219761722923721976\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000118\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219821722923721982\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219961722923721996\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000067\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220631722923722063\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000193\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220711722923722071\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000166\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220761722923722076\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000168\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223411722923722341\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000112\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223631722923722363\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223701722923722370\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223761722923722376\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000061\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224411722923722441\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000080\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"null\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 13:57:22', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061357292941722923849294', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217521722923721752\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000073\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217561722923721756\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000049\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217621722923721762\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000083\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217741722923721774\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000024\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217821722923721782\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000077\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217891722923721789\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000025\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217961722923721796\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000038\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218021722923721802\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000031\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218621722923721862\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218811722923721881\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218901722923721890\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000053\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218971722923721897\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000048\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219041722923721904\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000093\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219111722923721911\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000100\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219181722923721918\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000062\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219251722923721925\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000057\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219321722923721932\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000052\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219391722923721939\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000029\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219461722923721946\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219511722923721951\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000059\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219571722923721957\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000074\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219631722923721963\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219691722923721969\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000188\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219761722923721976\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000118\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219821722923721982\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219961722923721996\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000067\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220631722923722063\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000193\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220711722923722071\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000166\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220761722923722076\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000168\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223411722923722341\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000112\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223631722923722363\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223701722923722370\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223761722923722376\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000061\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224411722923722441\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000080\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"null\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 13:57:29', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061357303231722923850323', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217521722923721752\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000073\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217561722923721756\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000049\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217621722923721762\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000083\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217741722923721774\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000024\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217821722923721782\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000077\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217891722923721789\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000025\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217961722923721796\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000038\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218021722923721802\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000031\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218621722923721862\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218811722923721881\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218901722923721890\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000053\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218971722923721897\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000048\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219041722923721904\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000093\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219111722923721911\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000100\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219181722923721918\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000062\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219251722923721925\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000057\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219321722923721932\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000052\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219391722923721939\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000029\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219461722923721946\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219511722923721951\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000059\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219571722923721957\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000074\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219631722923721963\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219691722923721969\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000188\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219761722923721976\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000118\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219821722923721982\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219961722923721996\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000067\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220631722923722063\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000193\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220711722923722071\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000166\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220761722923722076\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000168\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223411722923722341\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000112\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223631722923722363\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223701722923722370\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223761722923722376\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000061\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224411722923722441\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000080\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"null\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 13:57:30', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061357320701722923852070', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217521722923721752\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000073\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217561722923721756\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000049\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217621722923721762\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000083\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217741722923721774\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000024\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217821722923721782\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000077\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217891722923721789\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000025\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217961722923721796\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000038\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218021722923721802\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000031\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218621722923721862\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218811722923721881\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218901722923721890\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000053\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218971722923721897\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000048\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219041722923721904\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000093\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219111722923721911\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000100\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219181722923721918\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000062\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219251722923721925\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000057\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219321722923721932\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000052\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219391722923721939\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000029\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219461722923721946\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219511722923721951\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000059\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219571722923721957\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000074\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219631722923721963\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219691722923721969\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000188\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219761722923721976\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000118\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219821722923721982\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219961722923721996\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000067\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220631722923722063\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000193\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220711722923722071\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000166\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220761722923722076\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000168\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223411722923722341\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000112\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223631722923722363\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223701722923722370\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223761722923722376\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000061\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224411722923722441\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000080\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"null\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 13:57:32', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061357320721722923852072', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217521722923721752\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000073\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217561722923721756\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000049\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217621722923721762\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000083\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217741722923721774\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000024\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217821722923721782\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000077\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217891722923721789\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000025\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217961722923721796\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000038\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218021722923721802\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000031\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218621722923721862\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218811722923721881\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218901722923721890\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000053\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218971722923721897\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000048\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219041722923721904\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000093\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219111722923721911\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000100\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219181722923721918\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000062\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219251722923721925\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000057\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219321722923721932\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000052\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219391722923721939\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000029\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219461722923721946\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219511722923721951\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000059\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219571722923721957\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000074\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219631722923721963\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219691722923721969\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000188\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219761722923721976\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000118\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219821722923721982\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219961722923721996\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000067\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220631722923722063\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000193\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220711722923722071\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000166\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220761722923722076\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000168\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223411722923722341\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000112\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223631722923722363\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223701722923722370\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223761722923722376\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000061\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224411722923722441\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000080\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"null\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 13:57:32', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061357320741722923852074', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217521722923721752\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000073\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217561722923721756\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000049\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217621722923721762\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000083\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217741722923721774\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000024\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217821722923721782\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000077\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217891722923721789\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000025\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217961722923721796\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000038\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218021722923721802\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000031\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218621722923721862\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218811722923721881\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218901722923721890\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000053\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218971722923721897\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000048\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219041722923721904\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000093\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219111722923721911\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000100\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219181722923721918\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000062\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219251722923721925\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000057\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219321722923721932\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000052\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219391722923721939\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000029\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219461722923721946\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219511722923721951\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000059\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219571722923721957\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000074\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219631722923721963\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219691722923721969\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000188\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219761722923721976\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000118\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219821722923721982\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219961722923721996\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000067\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220631722923722063\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000193\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220711722923722071\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000166\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220761722923722076\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000168\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223411722923722341\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000112\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223631722923722363\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223701722923722370\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223761722923722376\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000061\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224411722923722441\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000080\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"null\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 13:57:32', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061357354911722923855491', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217521722923721752\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000073\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217561722923721756\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000049\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217621722923721762\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000083\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217741722923721774\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000024\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217821722923721782\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000077\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217891722923721789\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000025\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217961722923721796\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000038\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218021722923721802\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000031\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218621722923721862\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218811722923721881\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218901722923721890\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000053\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218971722923721897\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000048\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219041722923721904\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000093\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219111722923721911\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000100\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219181722923721918\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000062\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219251722923721925\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000057\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219321722923721932\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000052\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219391722923721939\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000029\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219461722923721946\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219511722923721951\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000059\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219571722923721957\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000074\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219631722923721963\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219691722923721969\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000188\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219761722923721976\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000118\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219821722923721982\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219961722923721996\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000067\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220631722923722063\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000193\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220711722923722071\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000166\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220761722923722076\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000168\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223411722923722341\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000112\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223631722923722363\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223701722923722370\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223761722923722376\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000061\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224411722923722441\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000080\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355217521722923721752 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 13:57:35', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061357364101722923856410', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217521722923721752\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000073\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217561722923721756\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000049\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217621722923721762\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000083\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217741722923721774\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000024\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217821722923721782\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000077\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217891722923721789\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000025\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217961722923721796\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000038\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218021722923721802\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000031\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218621722923721862\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218811722923721881\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218901722923721890\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000053\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218971722923721897\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000048\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219041722923721904\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000093\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219111722923721911\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000100\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219181722923721918\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000062\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219251722923721925\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000057\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219321722923721932\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000052\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219391722923721939\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000029\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219461722923721946\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219511722923721951\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000059\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219571722923721957\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000074\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219631722923721963\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219691722923721969\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000188\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219761722923721976\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000118\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219821722923721982\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219961722923721996\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000067\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220631722923722063\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000193\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220711722923722071\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000166\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220761722923722076\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000168\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223411722923722341\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000112\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223631722923722363\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223701722923722370\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223761722923722376\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000061\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224411722923722441\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000080\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355217521722923721752 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 13:57:36', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061357364221722923856422', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061355215281722923721528\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000041\", \"taskStatus\": 2, \"destination\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 13:57:36', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061357364251722923856425', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061355215031722923721503\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000032\", \"taskStatus\": 2, \"destination\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 13:57:36', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061357368451722923856845', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061355214981722923721498\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000034\", \"taskStatus\": 100, \"destination\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 13:57:37', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061357372961722923857296', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217521722923721752\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000073\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217561722923721756\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000049\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217621722923721762\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000083\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217741722923721774\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000024\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217821722923721782\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000077\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217891722923721789\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000025\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217961722923721796\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000038\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218021722923721802\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000031\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218621722923721862\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218811722923721881\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218901722923721890\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000053\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218971722923721897\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000048\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219041722923721904\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000093\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219111722923721911\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000100\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219181722923721918\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000062\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219251722923721925\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000057\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219321722923721932\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000052\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219391722923721939\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000029\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219461722923721946\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219511722923721951\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000059\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219571722923721957\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000074\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219631722923721963\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219691722923721969\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000188\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219761722923721976\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000118\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219821722923721982\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219961722923721996\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000067\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220631722923722063\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000193\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220711722923722071\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000166\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220761722923722076\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000168\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223411722923722341\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000112\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223631722923722363\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223701722923722370\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223761722923722376\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000061\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224411722923722441\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000080\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355217521722923721752 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 13:57:37', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061357375591722923857559', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061355216251722923721625\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000040\", \"taskStatus\": 2, \"destination\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 13:57:38', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061357375611722923857561', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061355216201722923721620\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000042\", \"taskStatus\": 2, \"destination\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 13:57:38', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061357388111722923858811', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061355215341722923721534\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000143\", \"taskStatus\": 2, \"destination\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 13:57:39', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061357392841722923859284', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217521722923721752\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000073\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217561722923721756\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000049\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217621722923721762\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000083\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217741722923721774\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000024\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217821722923721782\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000077\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217891722923721789\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000025\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217961722923721796\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000038\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218021722923721802\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000031\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218621722923721862\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218811722923721881\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218901722923721890\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000053\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218971722923721897\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000048\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219041722923721904\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000093\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219111722923721911\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000100\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219181722923721918\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000062\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219251722923721925\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000057\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219321722923721932\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000052\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219391722923721939\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000029\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219461722923721946\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219511722923721951\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000059\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219571722923721957\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000074\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219631722923721963\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219691722923721969\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000188\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219761722923721976\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000118\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219821722923721982\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219961722923721996\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000067\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220631722923722063\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000193\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220711722923722071\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000166\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220761722923722076\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000168\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223411722923722341\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000112\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223631722923722363\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223701722923722370\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223761722923722376\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000061\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224411722923722441\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000080\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355217521722923721752 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 13:57:39', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061357399621722923859962', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061355215391722923721539\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000002\", \"taskStatus\": 2, \"destination\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 13:57:40', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061357413711722923861371', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217521722923721752\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000073\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217561722923721756\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000049\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217621722923721762\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000083\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217741722923721774\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000024\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217821722923721782\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000077\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217891722923721789\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000025\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217961722923721796\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000038\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218021722923721802\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000031\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218621722923721862\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218811722923721881\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218901722923721890\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000053\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218971722923721897\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000048\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219041722923721904\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000093\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219111722923721911\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000100\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219181722923721918\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000062\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219251722923721925\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000057\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219321722923721932\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000052\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219391722923721939\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000029\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219461722923721946\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219511722923721951\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000059\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219571722923721957\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000074\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219631722923721963\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219691722923721969\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000188\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219761722923721976\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000118\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219821722923721982\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219961722923721996\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000067\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220631722923722063\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000193\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220711722923722071\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000166\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220761722923722076\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000168\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223411722923722341\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000112\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223631722923722363\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223701722923722370\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223761722923722376\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000061\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224411722923722441\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000080\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355217521722923721752 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 13:57:41', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061357433141722923863314', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217521722923721752\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000073\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217561722923721756\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000049\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217621722923721762\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000083\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217741722923721774\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000024\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217821722923721782\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000077\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217891722923721789\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000025\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217961722923721796\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000038\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218021722923721802\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000031\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218621722923721862\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218811722923721881\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218901722923721890\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000053\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218971722923721897\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000048\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219041722923721904\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000093\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219111722923721911\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000100\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219181722923721918\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000062\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219251722923721925\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000057\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219321722923721932\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000052\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219391722923721939\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000029\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219461722923721946\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219511722923721951\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000059\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219571722923721957\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000074\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219631722923721963\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219691722923721969\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000188\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219761722923721976\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000118\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219821722923721982\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219961722923721996\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000067\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220631722923722063\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000193\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220711722923722071\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000166\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220761722923722076\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000168\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223411722923722341\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000112\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223631722923722363\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223701722923722370\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223761722923722376\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000061\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224411722923722441\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000080\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355217521722923721752 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 13:57:43', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061357453141722923865314', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217521722923721752\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000073\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217561722923721756\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000049\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217621722923721762\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000083\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217741722923721774\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000024\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217821722923721782\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000077\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217891722923721789\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000025\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217961722923721796\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000038\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218021722923721802\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000031\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218621722923721862\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218811722923721881\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218901722923721890\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000053\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218971722923721897\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000048\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219041722923721904\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000093\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219111722923721911\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000100\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219181722923721918\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000062\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219251722923721925\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000057\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219321722923721932\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000052\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219391722923721939\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000029\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219461722923721946\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219511722923721951\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000059\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219571722923721957\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000074\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219631722923721963\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219691722923721969\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000188\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219761722923721976\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000118\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219821722923721982\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219961722923721996\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000067\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220631722923722063\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000193\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220711722923722071\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000166\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220761722923722076\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000168\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223411722923722341\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000112\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223631722923722363\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223701722923722370\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223761722923722376\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000061\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224411722923722441\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000080\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355217521722923721752 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 13:57:45', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061357472921722923867292', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217521722923721752\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000073\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217561722923721756\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000049\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217621722923721762\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000083\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217741722923721774\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000024\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217821722923721782\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000077\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217891722923721789\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000025\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217961722923721796\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000038\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218021722923721802\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000031\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218621722923721862\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218811722923721881\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218901722923721890\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000053\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218971722923721897\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000048\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219041722923721904\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000093\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219111722923721911\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000100\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219181722923721918\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000062\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219251722923721925\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000057\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219321722923721932\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000052\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219391722923721939\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000029\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219461722923721946\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219511722923721951\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000059\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219571722923721957\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000074\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219631722923721963\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219691722923721969\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000188\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219761722923721976\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000118\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219821722923721982\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219961722923721996\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000067\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220631722923722063\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000193\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220711722923722071\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000166\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220761722923722076\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000168\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223411722923722341\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000112\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223631722923722363\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223701722923722370\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223761722923722376\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000061\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224411722923722441\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000080\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355217521722923721752 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 13:57:47', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061357493061722923869306', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217521722923721752\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000073\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217561722923721756\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000049\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217621722923721762\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000083\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217741722923721774\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000024\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217821722923721782\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000077\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217891722923721789\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000025\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217961722923721796\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000038\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218021722923721802\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000031\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218621722923721862\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218811722923721881\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218901722923721890\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000053\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218971722923721897\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000048\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219041722923721904\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000093\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219111722923721911\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000100\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219181722923721918\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000062\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219251722923721925\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000057\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219321722923721932\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000052\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219391722923721939\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000029\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219461722923721946\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219511722923721951\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000059\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219571722923721957\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000074\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219631722923721963\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219691722923721969\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000188\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219761722923721976\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000118\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219821722923721982\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219961722923721996\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000067\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220631722923722063\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000193\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220711722923722071\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000166\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220761722923722076\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000168\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223411722923722341\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000112\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223631722923722363\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223701722923722370\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223761722923722376\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000061\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224411722923722441\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000080\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355217521722923721752 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 13:57:49', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061357513181722923871318', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217521722923721752\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000073\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217561722923721756\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000049\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217621722923721762\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000083\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217741722923721774\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000024\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217821722923721782\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000077\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217891722923721789\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000025\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217961722923721796\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000038\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218021722923721802\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000031\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218621722923721862\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218811722923721881\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218901722923721890\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000053\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218971722923721897\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000048\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219041722923721904\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000093\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219111722923721911\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000100\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219181722923721918\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000062\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219251722923721925\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000057\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219321722923721932\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000052\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219391722923721939\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000029\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219461722923721946\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219511722923721951\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000059\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219571722923721957\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000074\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219631722923721963\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219691722923721969\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000188\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219761722923721976\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000118\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219821722923721982\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219961722923721996\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000067\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220631722923722063\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000193\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220711722923722071\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000166\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220761722923722076\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000168\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223411722923722341\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000112\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223631722923722363\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223701722923722370\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223761722923722376\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000061\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224411722923722441\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000080\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355217521722923721752 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 13:57:51', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061357517761722923871776', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061355215131722923721513\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000036\", \"taskStatus\": 100, \"destination\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 13:57:52', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061357532971722923873297', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217521722923721752\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000073\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217561722923721756\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000049\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217621722923721762\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000083\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217741722923721774\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000024\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217821722923721782\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000077\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217891722923721789\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000025\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217961722923721796\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000038\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218021722923721802\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000031\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218621722923721862\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218811722923721881\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218901722923721890\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000053\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218971722923721897\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000048\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219041722923721904\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000093\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219111722923721911\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000100\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219181722923721918\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000062\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219251722923721925\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000057\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219321722923721932\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000052\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219391722923721939\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000029\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219461722923721946\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219511722923721951\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000059\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219571722923721957\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000074\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219631722923721963\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219691722923721969\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000188\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219761722923721976\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000118\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219821722923721982\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219961722923721996\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000067\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220631722923722063\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000193\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220711722923722071\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000166\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220761722923722076\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000168\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223411722923722341\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000112\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223631722923722363\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223701722923722370\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223761722923722376\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000061\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224411722923722441\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000080\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355217521722923721752 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 13:57:53', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061357544151722923874415', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061355214861722923721486\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000154\", \"taskStatus\": 2, \"destination\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 13:57:54', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061357552971722923875297', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217521722923721752\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000073\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217561722923721756\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000049\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217621722923721762\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000083\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217741722923721774\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000024\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217821722923721782\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000077\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217891722923721789\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000025\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217961722923721796\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000038\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218021722923721802\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000031\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218621722923721862\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218811722923721881\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218901722923721890\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000053\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218971722923721897\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000048\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219041722923721904\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000093\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219111722923721911\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000100\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219181722923721918\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000062\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219251722923721925\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000057\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219321722923721932\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000052\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219391722923721939\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000029\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219461722923721946\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219511722923721951\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000059\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219571722923721957\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000074\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219631722923721963\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219691722923721969\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000188\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219761722923721976\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000118\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219821722923721982\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219961722923721996\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000067\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220631722923722063\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000193\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220711722923722071\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000166\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220761722923722076\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000168\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223411722923722341\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000112\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223631722923722363\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223701722923722370\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223761722923722376\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000061\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224411722923722441\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000080\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355217521722923721752 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 13:57:55', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061357573041722923877304', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217521722923721752\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000073\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217561722923721756\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000049\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217621722923721762\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000083\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217741722923721774\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000024\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217821722923721782\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000077\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217891722923721789\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000025\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217961722923721796\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000038\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218021722923721802\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000031\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218621722923721862\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218811722923721881\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218901722923721890\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000053\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218971722923721897\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000048\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219041722923721904\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000093\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219111722923721911\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000100\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219181722923721918\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000062\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219251722923721925\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000057\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219321722923721932\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000052\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219391722923721939\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000029\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219461722923721946\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219511722923721951\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000059\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219571722923721957\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000074\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219631722923721963\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219691722923721969\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000188\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219761722923721976\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000118\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219821722923721982\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219961722923721996\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000067\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220631722923722063\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000193\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220711722923722071\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000166\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220761722923722076\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000168\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223411722923722341\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000112\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223631722923722363\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223701722923722370\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223761722923722376\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000061\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224411722923722441\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000080\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355217521722923721752 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 13:57:57', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061357592871722923879287', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217521722923721752\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000073\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217561722923721756\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000049\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217621722923721762\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000083\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217741722923721774\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000024\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217821722923721782\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000077\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217891722923721789\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000025\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217961722923721796\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000038\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218021722923721802\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000031\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218621722923721862\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218811722923721881\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218901722923721890\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000053\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218971722923721897\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000048\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219041722923721904\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000093\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219111722923721911\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000100\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219181722923721918\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000062\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219251722923721925\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000057\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219321722923721932\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000052\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219391722923721939\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000029\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219461722923721946\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219511722923721951\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000059\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219571722923721957\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000074\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219631722923721963\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219691722923721969\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000188\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219761722923721976\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000118\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219821722923721982\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219961722923721996\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000067\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220631722923722063\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000193\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220711722923722071\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000166\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220761722923722076\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000168\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223411722923722341\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000112\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223631722923722363\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223701722923722370\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223761722923722376\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000061\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224411722923722441\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000080\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355217521722923721752 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 13:57:59', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061358013001722923881300', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217521722923721752\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000073\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217561722923721756\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000049\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217621722923721762\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000083\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217741722923721774\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000024\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217821722923721782\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000077\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217891722923721789\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000025\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217961722923721796\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000038\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218021722923721802\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000031\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218621722923721862\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218811722923721881\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218901722923721890\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000053\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218971722923721897\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000048\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219041722923721904\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000093\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219111722923721911\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000100\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219181722923721918\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000062\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219251722923721925\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000057\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219321722923721932\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000052\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219391722923721939\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000029\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219461722923721946\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219511722923721951\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000059\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219571722923721957\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000074\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219631722923721963\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219691722923721969\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000188\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219761722923721976\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000118\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219821722923721982\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219961722923721996\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000067\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220631722923722063\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000193\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220711722923722071\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000166\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220761722923722076\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000168\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223411722923722341\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000112\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223631722923722363\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223701722923722370\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223761722923722376\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000061\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224411722923722441\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000080\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355217521722923721752 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 13:58:01', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061358032951722923883295', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217521722923721752\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000073\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217561722923721756\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000049\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217621722923721762\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000083\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217741722923721774\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000024\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217821722923721782\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000077\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217891722923721789\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000025\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217961722923721796\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000038\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218021722923721802\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000031\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218621722923721862\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218811722923721881\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218901722923721890\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000053\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218971722923721897\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000048\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219041722923721904\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000093\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219111722923721911\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000100\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219181722923721918\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000062\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219251722923721925\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000057\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219321722923721932\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000052\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219391722923721939\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000029\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219461722923721946\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219511722923721951\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000059\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219571722923721957\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000074\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219631722923721963\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219691722923721969\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000188\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219761722923721976\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000118\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219821722923721982\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219961722923721996\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000067\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220631722923722063\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000193\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220711722923722071\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000166\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220761722923722076\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000168\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223411722923722341\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000112\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223631722923722363\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223701722923722370\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223761722923722376\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000061\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224411722923722441\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000080\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355217521722923721752 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 13:58:03', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061358048031722923884803', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061355215391722923721539\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000002\", \"taskStatus\": 100, \"destination\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 13:58:05', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061358053181722923885318', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217521722923721752\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000073\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217561722923721756\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000049\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217621722923721762\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000083\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217741722923721774\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000024\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217821722923721782\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000077\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217891722923721789\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000025\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217961722923721796\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000038\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218021722923721802\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000031\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218621722923721862\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218811722923721881\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218901722923721890\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000053\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218971722923721897\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000048\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219041722923721904\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000093\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219111722923721911\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000100\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219181722923721918\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000062\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219251722923721925\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000057\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219321722923721932\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000052\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219391722923721939\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000029\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219461722923721946\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219511722923721951\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000059\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219571722923721957\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000074\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219631722923721963\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219691722923721969\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000188\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219761722923721976\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000118\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219821722923721982\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219961722923721996\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000067\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220631722923722063\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000193\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220711722923722071\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000166\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220761722923722076\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000168\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223411722923722341\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000112\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223631722923722363\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223701722923722370\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223761722923722376\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000061\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224411722923722441\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000080\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355217521722923721752 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 13:58:05', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061358068861722923886886', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061355215571722923721557\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000010\", \"taskStatus\": 2, \"destination\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 13:58:07', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061358073021722923887302', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217521722923721752\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000073\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217561722923721756\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000049\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217621722923721762\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000083\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217741722923721774\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000024\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217821722923721782\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000077\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217891722923721789\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000025\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217961722923721796\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000038\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218021722923721802\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000031\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218621722923721862\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218811722923721881\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218901722923721890\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000053\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218971722923721897\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000048\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219041722923721904\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000093\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219111722923721911\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000100\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219181722923721918\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000062\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219251722923721925\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000057\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219321722923721932\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000052\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219391722923721939\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000029\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219461722923721946\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219511722923721951\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000059\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219571722923721957\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000074\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219631722923721963\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219691722923721969\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000188\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219761722923721976\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000118\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219821722923721982\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219961722923721996\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000067\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220631722923722063\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000193\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220711722923722071\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000166\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220761722923722076\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000168\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223411722923722341\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000112\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223631722923722363\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223701722923722370\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223761722923722376\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000061\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224411722923722441\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000080\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355217521722923721752 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 13:58:07', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061358092991722923889299', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217521722923721752\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000073\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217561722923721756\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000049\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217621722923721762\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000083\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217741722923721774\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000024\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217821722923721782\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000077\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217891722923721789\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000025\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217961722923721796\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000038\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218021722923721802\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000031\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218621722923721862\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218811722923721881\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218901722923721890\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000053\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218971722923721897\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000048\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219041722923721904\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000093\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219111722923721911\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000100\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219181722923721918\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000062\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219251722923721925\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000057\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219321722923721932\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000052\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219391722923721939\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000029\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219461722923721946\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219511722923721951\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000059\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219571722923721957\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000074\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219631722923721963\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219691722923721969\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000188\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219761722923721976\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000118\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219821722923721982\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219961722923721996\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000067\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220631722923722063\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000193\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220711722923722071\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000166\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220761722923722076\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000168\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223411722923722341\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000112\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223631722923722363\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223701722923722370\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223761722923722376\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000061\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224411722923722441\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000080\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355217521722923721752 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 13:58:09', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061358113201722923891320', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217521722923721752\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000073\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217561722923721756\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000049\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217621722923721762\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000083\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217741722923721774\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000024\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217821722923721782\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000077\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217891722923721789\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000025\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217961722923721796\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000038\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218021722923721802\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000031\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218621722923721862\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218811722923721881\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218901722923721890\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000053\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218971722923721897\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000048\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219041722923721904\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000093\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219111722923721911\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000100\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219181722923721918\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000062\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219251722923721925\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000057\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219321722923721932\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000052\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219391722923721939\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000029\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219461722923721946\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219511722923721951\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000059\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219571722923721957\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000074\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219631722923721963\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219691722923721969\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000188\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219761722923721976\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000118\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219821722923721982\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219961722923721996\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000067\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220631722923722063\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000193\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220711722923722071\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000166\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220761722923722076\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000168\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223411722923722341\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000112\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223631722923722363\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223701722923722370\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223761722923722376\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000061\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224411722923722441\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000080\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355217521722923721752 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 13:58:11', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061358117941722923891794', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061355215341722923721534\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000143\", \"taskStatus\": 100, \"destination\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 13:58:12', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061358128541722923892854', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061355215031722923721503\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000032\", \"taskStatus\": 100, \"destination\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 13:58:13', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061358128641722923892864', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061355215281722923721528\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000041\", \"taskStatus\": 100, \"destination\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 13:58:13', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061358128841722923892884', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061355216251722923721625\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000040\", \"taskStatus\": 100, \"destination\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 13:58:13', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061358133171722923893317', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217521722923721752\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000073\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217561722923721756\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000049\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217621722923721762\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000083\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217741722923721774\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000024\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217821722923721782\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000077\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217891722923721789\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000025\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217961722923721796\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000038\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218021722923721802\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000031\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218621722923721862\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218811722923721881\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218901722923721890\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000053\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218971722923721897\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000048\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219041722923721904\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000093\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219111722923721911\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000100\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219181722923721918\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000062\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219251722923721925\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000057\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219321722923721932\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000052\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219391722923721939\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000029\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219461722923721946\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219511722923721951\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000059\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219571722923721957\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000074\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219631722923721963\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219691722923721969\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000188\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219761722923721976\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000118\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219821722923721982\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219961722923721996\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000067\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220631722923722063\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000193\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220711722923722071\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000166\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220761722923722076\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000168\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223411722923722341\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000112\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223631722923722363\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223701722923722370\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223761722923722376\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000061\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224411722923722441\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000080\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355217521722923721752 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 13:58:13', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061358137911722923893791', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061355216201722923721620\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000042\", \"taskStatus\": 100, \"destination\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 13:58:14', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061358147081722923894708', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061355215081722923721508\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000018\", \"taskStatus\": 2, \"destination\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 13:58:15', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061358147111722923894711', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061355215521722923721552\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000008\", \"taskStatus\": 2, \"destination\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 13:58:15', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061358153061722923895306', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217521722923721752\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000073\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217561722923721756\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000049\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217621722923721762\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000083\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217741722923721774\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000024\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217821722923721782\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000077\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217891722923721789\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000025\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217961722923721796\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000038\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218021722923721802\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000031\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218621722923721862\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218811722923721881\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218901722923721890\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000053\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218971722923721897\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000048\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219041722923721904\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000093\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219111722923721911\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000100\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219181722923721918\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000062\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219251722923721925\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000057\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219321722923721932\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000052\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219391722923721939\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000029\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219461722923721946\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219511722923721951\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000059\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219571722923721957\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000074\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219631722923721963\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219691722923721969\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000188\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219761722923721976\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000118\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219821722923721982\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219961722923721996\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000067\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220631722923722063\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000193\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220711722923722071\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000166\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220761722923722076\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000168\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223411722923722341\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000112\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223631722923722363\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223701722923722370\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223761722923722376\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000061\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224411722923722441\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000080\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355217521722923721752 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 13:58:15', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061358158571722923895857', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061355215721722923721572\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000082\", \"taskStatus\": 2, \"destination\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 13:58:16', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061358158591722923895859', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061355215471722923721547\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000081\", \"taskStatus\": 2, \"destination\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 13:58:16', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061358173111722923897311', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217521722923721752\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000073\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217561722923721756\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000049\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217621722923721762\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000083\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217741722923721774\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000024\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217821722923721782\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000077\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217891722923721789\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000025\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217961722923721796\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000038\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218021722923721802\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000031\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218621722923721862\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218811722923721881\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218901722923721890\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000053\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218971722923721897\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000048\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219041722923721904\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000093\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219111722923721911\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000100\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219181722923721918\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000062\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219251722923721925\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000057\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219321722923721932\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000052\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219391722923721939\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000029\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219461722923721946\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219511722923721951\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000059\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219571722923721957\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000074\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219631722923721963\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219691722923721969\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000188\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219761722923721976\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000118\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219821722923721982\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219961722923721996\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000067\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220631722923722063\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000193\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220711722923722071\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000166\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220761722923722076\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000168\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223411722923722341\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000112\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223631722923722363\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223701722923722370\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223761722923722376\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000061\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224411722923722441\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000080\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355217521722923721752 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 13:58:17', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061358175921722923897592', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061355216321722923721632\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000016\", \"taskStatus\": 2, \"destination\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 13:58:18', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061358193081722923899308', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217521722923721752\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000073\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217561722923721756\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000049\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217621722923721762\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000083\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217741722923721774\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000024\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217821722923721782\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000077\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217891722923721789\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000025\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217961722923721796\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000038\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218021722923721802\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000031\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218621722923721862\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218811722923721881\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218901722923721890\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000053\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218971722923721897\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000048\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219041722923721904\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000093\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219111722923721911\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000100\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219181722923721918\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000062\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219251722923721925\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000057\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219321722923721932\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000052\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219391722923721939\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000029\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219461722923721946\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219511722923721951\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000059\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219571722923721957\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000074\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219631722923721963\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219691722923721969\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000188\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219761722923721976\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000118\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219821722923721982\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219961722923721996\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000067\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220631722923722063\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000193\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220711722923722071\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000166\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220761722923722076\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000168\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223411722923722341\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000112\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223631722923722363\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223701722923722370\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223761722923722376\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000061\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224411722923722441\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000080\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355217521722923721752 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 13:58:19', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061358213111722923901311', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217521722923721752\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000073\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217561722923721756\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000049\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217621722923721762\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000083\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217741722923721774\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000024\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217821722923721782\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000077\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217891722923721789\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000025\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217961722923721796\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000038\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218021722923721802\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000031\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218621722923721862\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218811722923721881\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218901722923721890\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000053\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218971722923721897\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000048\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219041722923721904\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000093\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219111722923721911\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000100\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219181722923721918\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000062\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219251722923721925\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000057\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219321722923721932\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000052\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219391722923721939\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000029\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219461722923721946\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219511722923721951\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000059\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219571722923721957\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000074\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219631722923721963\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219691722923721969\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000188\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219761722923721976\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000118\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219821722923721982\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219961722923721996\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000067\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220631722923722063\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000193\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220711722923722071\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000166\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220761722923722076\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000168\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223411722923722341\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000112\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223631722923722363\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223701722923722370\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223761722923722376\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000061\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224411722923722441\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000080\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355217521722923721752 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 13:58:21', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061358217661722923901766', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061355214861722923721486\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000154\", \"taskStatus\": 100, \"destination\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 13:58:22', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061358233081722923903308', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217521722923721752\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000073\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217561722923721756\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000049\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217621722923721762\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000083\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217741722923721774\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000024\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217821722923721782\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000077\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217891722923721789\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000025\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217961722923721796\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000038\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218021722923721802\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000031\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218621722923721862\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218811722923721881\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218901722923721890\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000053\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218971722923721897\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000048\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219041722923721904\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000093\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219111722923721911\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000100\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219181722923721918\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000062\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219251722923721925\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000057\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219321722923721932\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000052\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219391722923721939\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000029\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219461722923721946\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219511722923721951\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000059\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219571722923721957\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000074\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219631722923721963\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219691722923721969\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000188\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219761722923721976\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000118\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219821722923721982\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219961722923721996\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000067\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220631722923722063\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000193\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220711722923722071\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000166\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220761722923722076\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000168\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223411722923722341\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000112\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223631722923722363\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223701722923722370\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223761722923722376\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000061\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224411722923722441\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000080\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355217521722923721752 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 13:58:23', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061358239431722923903943', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061355215231722923721523\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000043\", \"taskStatus\": 2, \"destination\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 13:58:24', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061358239591722923903959', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061355215431722923721543\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000039\", \"taskStatus\": 2, \"destination\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 13:58:24', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061358253071722923905307', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217521722923721752\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000073\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217561722923721756\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000049\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217621722923721762\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000083\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217741722923721774\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000024\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217821722923721782\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000077\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217891722923721789\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000025\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217961722923721796\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000038\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218021722923721802\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000031\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218621722923721862\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218811722923721881\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218901722923721890\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000053\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218971722923721897\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000048\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219041722923721904\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000093\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219111722923721911\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000100\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219181722923721918\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000062\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219251722923721925\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000057\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219321722923721932\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000052\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219391722923721939\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000029\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219461722923721946\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219511722923721951\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000059\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219571722923721957\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000074\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219631722923721963\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219691722923721969\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000188\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219761722923721976\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000118\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219821722923721982\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219961722923721996\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000067\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220631722923722063\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000193\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220711722923722071\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000166\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220761722923722076\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000168\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223411722923722341\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000112\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223631722923722363\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223701722923722370\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223761722923722376\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000061\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224411722923722441\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000080\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355217521722923721752 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 13:58:25', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061358273191722923907319', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217521722923721752\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000073\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217561722923721756\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000049\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217621722923721762\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000083\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217741722923721774\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000024\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217821722923721782\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000077\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217891722923721789\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000025\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217961722923721796\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000038\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218021722923721802\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000031\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218621722923721862\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218811722923721881\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218901722923721890\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000053\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218971722923721897\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000048\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219041722923721904\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000093\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219111722923721911\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000100\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219181722923721918\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000062\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219251722923721925\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000057\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219321722923721932\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000052\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219391722923721939\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000029\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219461722923721946\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219511722923721951\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000059\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219571722923721957\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000074\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219631722923721963\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219691722923721969\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000188\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219761722923721976\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000118\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219821722923721982\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219961722923721996\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000067\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220631722923722063\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000193\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220711722923722071\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000166\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220761722923722076\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000168\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223411722923722341\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000112\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223631722923722363\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223701722923722370\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223761722923722376\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000061\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224411722923722441\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000080\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355217521722923721752 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 13:58:27', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061358293361722923909336', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217521722923721752\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000073\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217561722923721756\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000049\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217621722923721762\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000083\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217741722923721774\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000024\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217821722923721782\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000077\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217891722923721789\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000025\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217961722923721796\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000038\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218021722923721802\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000031\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218621722923721862\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218811722923721881\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218901722923721890\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000053\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218971722923721897\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000048\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219041722923721904\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000093\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219111722923721911\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000100\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219181722923721918\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000062\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219251722923721925\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000057\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219321722923721932\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000052\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219391722923721939\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000029\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219461722923721946\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219511722923721951\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000059\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219571722923721957\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000074\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219631722923721963\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219691722923721969\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000188\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219761722923721976\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000118\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219821722923721982\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219961722923721996\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000067\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220631722923722063\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000193\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220711722923722071\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000166\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220761722923722076\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000168\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223411722923722341\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000112\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223631722923722363\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223701722923722370\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223761722923722376\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000061\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224411722923722441\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000080\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355217521722923721752 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 13:58:29', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061358313331722923911333', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217521722923721752\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000073\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217561722923721756\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000049\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217621722923721762\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000083\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217741722923721774\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000024\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217821722923721782\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000077\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217891722923721789\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000025\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217961722923721796\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000038\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218021722923721802\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000031\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218621722923721862\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218811722923721881\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218901722923721890\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000053\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218971722923721897\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000048\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219041722923721904\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000093\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219111722923721911\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000100\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219181722923721918\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000062\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219251722923721925\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000057\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219321722923721932\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000052\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219391722923721939\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000029\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219461722923721946\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219511722923721951\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000059\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219571722923721957\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000074\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219631722923721963\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219691722923721969\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000188\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219761722923721976\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000118\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219821722923721982\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219961722923721996\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000067\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220631722923722063\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000193\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220711722923722071\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000166\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220761722923722076\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000168\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223411722923722341\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000112\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223631722923722363\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223701722923722370\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223761722923722376\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000061\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224411722923722441\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000080\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355217521722923721752 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 13:58:31', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061358318231722923911823', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061355215571722923721557\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000010\", \"taskStatus\": 100, \"destination\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 13:58:32', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061358333101722923913310', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217521722923721752\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000073\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217561722923721756\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000049\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217621722923721762\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000083\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217741722923721774\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000024\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217821722923721782\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000077\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217891722923721789\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000025\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217961722923721796\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000038\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218021722923721802\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000031\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218621722923721862\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218811722923721881\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218901722923721890\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000053\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218971722923721897\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000048\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219041722923721904\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000093\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219111722923721911\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000100\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219181722923721918\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000062\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219251722923721925\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000057\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219321722923721932\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000052\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219391722923721939\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000029\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219461722923721946\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219511722923721951\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000059\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219571722923721957\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000074\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219631722923721963\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219691722923721969\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000188\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219761722923721976\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000118\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219821722923721982\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219961722923721996\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000067\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220631722923722063\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000193\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220711722923722071\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000166\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220761722923722076\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000168\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223411722923722341\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000112\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223631722923722363\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223701722923722370\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223761722923722376\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000061\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224411722923722441\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000080\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355217521722923721752 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 13:58:33', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061358344661722923914466', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061355215181722923721518\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000087\", \"taskStatus\": 2, \"destination\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 13:58:34', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061358344761722923914476', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061355215871722923721587\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000084\", \"taskStatus\": 2, \"destination\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 13:58:34', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061358353431722923915343', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217521722923721752\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000073\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217561722923721756\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000049\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217621722923721762\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000083\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217741722923721774\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000024\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217821722923721782\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000077\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217891722923721789\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000025\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217961722923721796\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000038\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218021722923721802\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000031\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218621722923721862\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218811722923721881\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218901722923721890\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000053\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218971722923721897\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000048\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219041722923721904\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000093\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219111722923721911\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000100\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219181722923721918\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000062\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219251722923721925\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000057\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219321722923721932\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000052\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219391722923721939\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000029\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219461722923721946\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219511722923721951\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000059\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219571722923721957\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000074\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219631722923721963\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219691722923721969\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000188\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219761722923721976\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000118\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219821722923721982\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219961722923721996\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000067\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220631722923722063\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000193\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220711722923722071\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000166\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220761722923722076\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000168\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223411722923722341\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000112\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223631722923722363\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223701722923722370\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223761722923722376\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000061\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224411722923722441\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000080\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355217521722923721752 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 13:58:35', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061358373301722923917330', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217521722923721752\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000073\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217561722923721756\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000049\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217621722923721762\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000083\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217741722923721774\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000024\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217821722923721782\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000077\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217891722923721789\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000025\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217961722923721796\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000038\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218021722923721802\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000031\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218621722923721862\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218811722923721881\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218901722923721890\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000053\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218971722923721897\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000048\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219041722923721904\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000093\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219111722923721911\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000100\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219181722923721918\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000062\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219251722923721925\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000057\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219321722923721932\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000052\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219391722923721939\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000029\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219461722923721946\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219511722923721951\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000059\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219571722923721957\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000074\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219631722923721963\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219691722923721969\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000188\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219761722923721976\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000118\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219821722923721982\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219961722923721996\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000067\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220631722923722063\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000193\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220711722923722071\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000166\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220761722923722076\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000168\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223411722923722341\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000112\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223631722923722363\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223701722923722370\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223761722923722376\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000061\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224411722923722441\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000080\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355217521722923721752 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 13:58:37', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061358393401722923919340', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217521722923721752\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000073\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217561722923721756\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000049\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217621722923721762\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000083\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217741722923721774\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000024\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217821722923721782\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000077\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217891722923721789\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000025\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217961722923721796\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000038\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218021722923721802\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000031\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218621722923721862\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218811722923721881\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218901722923721890\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000053\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218971722923721897\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000048\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219041722923721904\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000093\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219111722923721911\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000100\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219181722923721918\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000062\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219251722923721925\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000057\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219321722923721932\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000052\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219391722923721939\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000029\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219461722923721946\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219511722923721951\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000059\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219571722923721957\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000074\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219631722923721963\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219691722923721969\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000188\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219761722923721976\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000118\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219821722923721982\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219961722923721996\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000067\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220631722923722063\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000193\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220711722923722071\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000166\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220761722923722076\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000168\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223411722923722341\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000112\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223631722923722363\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223701722923722370\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223761722923722376\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000061\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224411722923722441\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000080\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355217521722923721752 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 13:58:39', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061358413231722923921323', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217521722923721752\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000073\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217561722923721756\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000049\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217621722923721762\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000083\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217741722923721774\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000024\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217821722923721782\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000077\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217891722923721789\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000025\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217961722923721796\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000038\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218021722923721802\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000031\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218621722923721862\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218811722923721881\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218901722923721890\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000053\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218971722923721897\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000048\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219041722923721904\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000093\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219111722923721911\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000100\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219181722923721918\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000062\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219251722923721925\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000057\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219321722923721932\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000052\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219391722923721939\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000029\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219461722923721946\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219511722923721951\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000059\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219571722923721957\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000074\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219631722923721963\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219691722923721969\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000188\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219761722923721976\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000118\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219821722923721982\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219961722923721996\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000067\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220631722923722063\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000193\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220711722923722071\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000166\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220761722923722076\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000168\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223411722923722341\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000112\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223631722923722363\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223701722923722370\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223761722923722376\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000061\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224411722923722441\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000080\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355217521722923721752 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 13:58:41', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061358433671722923923367', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217521722923721752\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000073\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217561722923721756\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000049\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217621722923721762\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000083\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217741722923721774\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000024\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217821722923721782\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000077\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217891722923721789\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000025\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217961722923721796\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000038\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218021722923721802\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000031\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218621722923721862\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218811722923721881\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218901722923721890\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000053\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218971722923721897\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000048\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219041722923721904\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000093\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219111722923721911\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000100\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219181722923721918\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000062\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219251722923721925\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000057\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219321722923721932\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000052\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219391722923721939\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000029\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219461722923721946\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219511722923721951\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000059\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219571722923721957\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000074\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219631722923721963\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219691722923721969\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000188\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219761722923721976\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000118\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219821722923721982\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219961722923721996\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000067\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220631722923722063\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000193\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220711722923722071\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000166\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220761722923722076\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000168\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223411722923722341\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000112\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223631722923722363\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223701722923722370\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223761722923722376\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000061\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224411722923722441\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000080\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355217521722923721752 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 13:58:43', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061358453261722923925326', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217521722923721752\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000073\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217561722923721756\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000049\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217621722923721762\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000083\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217741722923721774\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000024\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217821722923721782\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000077\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217891722923721789\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000025\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217961722923721796\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000038\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218021722923721802\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000031\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218621722923721862\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218811722923721881\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218901722923721890\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000053\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218971722923721897\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000048\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219041722923721904\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000093\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219111722923721911\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000100\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219181722923721918\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000062\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219251722923721925\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000057\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219321722923721932\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000052\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219391722923721939\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000029\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219461722923721946\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219511722923721951\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000059\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219571722923721957\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000074\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219631722923721963\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219691722923721969\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000188\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219761722923721976\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000118\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219821722923721982\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219961722923721996\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000067\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220631722923722063\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000193\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220711722923722071\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000166\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220761722923722076\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000168\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223411722923722341\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000112\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223631722923722363\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223701722923722370\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223761722923722376\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000061\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224411722923722441\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000080\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355217521722923721752 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 13:58:45', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061358473341722923927334', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217521722923721752\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000073\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217561722923721756\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000049\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217621722923721762\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000083\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217741722923721774\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000024\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217821722923721782\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000077\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217891722923721789\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000025\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217961722923721796\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000038\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218021722923721802\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000031\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218621722923721862\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218811722923721881\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218901722923721890\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000053\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218971722923721897\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000048\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219041722923721904\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000093\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219111722923721911\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000100\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219181722923721918\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000062\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219251722923721925\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000057\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219321722923721932\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000052\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219391722923721939\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000029\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219461722923721946\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219511722923721951\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000059\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219571722923721957\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000074\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219631722923721963\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219691722923721969\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000188\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219761722923721976\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000118\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219821722923721982\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219961722923721996\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000067\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220631722923722063\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000193\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220711722923722071\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000166\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220761722923722076\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000168\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223411722923722341\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000112\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223631722923722363\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223701722923722370\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223761722923722376\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000061\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224411722923722441\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000080\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355217521722923721752 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 13:58:47', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061358493251722923929325', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217521722923721752\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000073\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217561722923721756\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000049\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217621722923721762\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000083\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217741722923721774\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000024\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217821722923721782\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000077\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217891722923721789\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000025\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217961722923721796\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000038\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218021722923721802\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000031\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218621722923721862\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218811722923721881\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218901722923721890\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000053\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218971722923721897\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000048\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219041722923721904\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000093\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219111722923721911\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000100\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219181722923721918\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000062\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219251722923721925\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000057\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219321722923721932\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000052\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219391722923721939\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000029\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219461722923721946\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219511722923721951\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000059\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219571722923721957\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000074\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219631722923721963\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219691722923721969\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000188\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219761722923721976\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000118\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219821722923721982\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219961722923721996\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000067\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220631722923722063\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000193\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220711722923722071\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000166\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220761722923722076\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000168\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223411722923722341\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000112\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223631722923722363\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223701722923722370\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223761722923722376\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000061\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224411722923722441\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000080\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355217521722923721752 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 13:58:49', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061358513441722923931344', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217521722923721752\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000073\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217561722923721756\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000049\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217621722923721762\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000083\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217741722923721774\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000024\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217821722923721782\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000077\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217891722923721789\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000025\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217961722923721796\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000038\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218021722923721802\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000031\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218621722923721862\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218811722923721881\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218901722923721890\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000053\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218971722923721897\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000048\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219041722923721904\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000093\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219111722923721911\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000100\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219181722923721918\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000062\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219251722923721925\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000057\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219321722923721932\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000052\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219391722923721939\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000029\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219461722923721946\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219511722923721951\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000059\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219571722923721957\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000074\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219631722923721963\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219691722923721969\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000188\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219761722923721976\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000118\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219821722923721982\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219961722923721996\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000067\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220631722923722063\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000193\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220711722923722071\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000166\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220761722923722076\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000168\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223411722923722341\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000112\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223631722923722363\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223701722923722370\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223761722923722376\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000061\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224411722923722441\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000080\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355217521722923721752 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 13:58:51', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061358531081722923933108', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061355215521722923721552\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000008\", \"taskStatus\": 100, \"destination\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 13:58:53', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061358531171722923933117', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061355215081722923721508\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000018\", \"taskStatus\": 100, \"destination\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 13:58:53', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061358533361722923933336', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217521722923721752\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000073\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217561722923721756\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000049\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217621722923721762\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000083\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217741722923721774\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000024\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217821722923721782\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000077\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217891722923721789\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000025\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217961722923721796\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000038\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218021722923721802\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000031\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218621722923721862\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218811722923721881\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218901722923721890\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000053\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218971722923721897\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000048\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219041722923721904\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000093\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219111722923721911\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000100\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219181722923721918\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000062\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219251722923721925\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000057\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219321722923721932\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000052\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219391722923721939\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000029\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219461722923721946\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219511722923721951\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000059\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219571722923721957\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000074\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219631722923721963\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219691722923721969\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000188\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219761722923721976\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000118\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219821722923721982\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219961722923721996\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000067\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220631722923722063\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000193\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220711722923722071\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000166\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220761722923722076\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000168\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223411722923722341\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000112\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223631722923722363\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223701722923722370\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223761722923722376\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000061\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224411722923722441\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000080\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355217521722923721752 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 13:58:53', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061358548091722923934809', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061355215471722923721547\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000081\", \"taskStatus\": 100, \"destination\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 13:58:55', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061358548511722923934851', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061355215721722923721572\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000082\", \"taskStatus\": 100, \"destination\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 13:58:55', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061358553751722923935375', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217521722923721752\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000073\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217561722923721756\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000049\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217621722923721762\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000083\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217741722923721774\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000024\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217821722923721782\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000077\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217891722923721789\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000025\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217961722923721796\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000038\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218021722923721802\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000031\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218621722923721862\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218811722923721881\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218901722923721890\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000053\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218971722923721897\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000048\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219041722923721904\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000093\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219111722923721911\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000100\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219181722923721918\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000062\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219251722923721925\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000057\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219321722923721932\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000052\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219391722923721939\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000029\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219461722923721946\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219511722923721951\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000059\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219571722923721957\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000074\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219631722923721963\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219691722923721969\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000188\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219761722923721976\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000118\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219821722923721982\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219961722923721996\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000067\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220631722923722063\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000193\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220711722923722071\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000166\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220761722923722076\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000168\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223411722923722341\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000112\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223631722923722363\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223701722923722370\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223761722923722376\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000061\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224411722923722441\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000080\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355217521722923721752 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 13:58:55', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061358570571722923937057', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061355215811722923721581\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000085\", \"taskStatus\": 2, \"destination\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 13:58:57', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061358570691722923937069', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061355216031722923721603\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000012\", \"taskStatus\": 2, \"destination\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 13:58:57', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061358573431722923937343', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217521722923721752\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000073\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217561722923721756\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000049\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217621722923721762\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000083\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217741722923721774\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000024\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217821722923721782\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000077\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217891722923721789\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000025\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217961722923721796\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000038\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218021722923721802\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000031\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218621722923721862\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218811722923721881\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218901722923721890\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000053\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218971722923721897\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000048\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219041722923721904\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000093\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219111722923721911\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000100\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219181722923721918\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000062\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219251722923721925\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000057\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219321722923721932\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000052\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219391722923721939\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000029\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219461722923721946\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219511722923721951\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000059\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219571722923721957\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000074\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219631722923721963\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219691722923721969\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000188\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219761722923721976\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000118\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219821722923721982\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219961722923721996\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000067\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220631722923722063\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000193\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220711722923722071\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000166\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220761722923722076\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000168\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223411722923722341\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000112\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223631722923722363\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223701722923722370\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223761722923722376\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000061\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224411722923722441\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000080\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355217521722923721752 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 13:58:57', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061358581781722923938178', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061355215981722923721598\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000021\", \"taskStatus\": 2, \"destination\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 13:58:58', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061358581891722923938189', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061355216161722923721616\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000004\", \"taskStatus\": 2, \"destination\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 13:58:58', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061358593261722923939326', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217521722923721752\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000073\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217561722923721756\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000049\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217621722923721762\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000083\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217741722923721774\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000024\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217821722923721782\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000077\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217891722923721789\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000025\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217961722923721796\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000038\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218021722923721802\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000031\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218621722923721862\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218811722923721881\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218901722923721890\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000053\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218971722923721897\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000048\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219041722923721904\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000093\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219111722923721911\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000100\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219181722923721918\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000062\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219251722923721925\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000057\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219321722923721932\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000052\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219391722923721939\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000029\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219461722923721946\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219511722923721951\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000059\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219571722923721957\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000074\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219631722923721963\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219691722923721969\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000188\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219761722923721976\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000118\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219821722923721982\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219961722923721996\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000067\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220631722923722063\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000193\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220711722923722071\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000166\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220761722923722076\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000168\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223411722923722341\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000112\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223631722923722363\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223701722923722370\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223761722923722376\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000061\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224411722923722441\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000080\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355217521722923721752 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 13:58:59', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061359013461722923941346', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217521722923721752\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000073\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217561722923721756\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000049\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217621722923721762\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000083\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217741722923721774\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000024\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217821722923721782\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000077\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217891722923721789\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000025\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217961722923721796\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000038\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218021722923721802\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000031\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218621722923721862\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218811722923721881\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218901722923721890\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000053\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218971722923721897\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000048\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219041722923721904\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000093\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219111722923721911\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000100\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219181722923721918\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000062\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219251722923721925\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000057\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219321722923721932\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000052\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219391722923721939\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000029\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219461722923721946\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219511722923721951\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000059\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219571722923721957\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000074\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219631722923721963\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219691722923721969\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000188\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219761722923721976\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000118\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219821722923721982\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219961722923721996\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000067\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220631722923722063\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000193\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220711722923722071\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000166\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220761722923722076\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000168\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223411722923722341\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000112\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223631722923722363\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223701722923722370\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223761722923722376\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000061\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224411722923722441\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000080\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355217521722923721752 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 13:59:01', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061359018181722923941818', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061355215431722923721543\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000039\", \"taskStatus\": 100, \"destination\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 13:59:02', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061359028211722923942821', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061355215231722923721523\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000043\", \"taskStatus\": 100, \"destination\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 13:59:03', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061359033521722923943352', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217521722923721752\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000073\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217561722923721756\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000049\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217621722923721762\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000083\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217741722923721774\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000024\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217821722923721782\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000077\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217891722923721789\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000025\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217961722923721796\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000038\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218021722923721802\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000031\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218621722923721862\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218811722923721881\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218901722923721890\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000053\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218971722923721897\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000048\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219041722923721904\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000093\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219111722923721911\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000100\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219181722923721918\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000062\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219251722923721925\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000057\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219321722923721932\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000052\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219391722923721939\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000029\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219461722923721946\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219511722923721951\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000059\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219571722923721957\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000074\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219631722923721963\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219691722923721969\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000188\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219761722923721976\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000118\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219821722923721982\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219961722923721996\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000067\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220631722923722063\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000193\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220711722923722071\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000166\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220761722923722076\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000168\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223411722923722341\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000112\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223631722923722363\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223701722923722370\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223761722923722376\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000061\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224411722923722441\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000080\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355217521722923721752 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 13:59:03', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061359053571722923945357', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217521722923721752\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000073\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217561722923721756\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000049\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217621722923721762\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000083\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217741722923721774\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000024\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217821722923721782\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000077\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217891722923721789\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000025\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217961722923721796\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000038\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218021722923721802\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000031\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218621722923721862\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218811722923721881\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218901722923721890\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000053\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218971722923721897\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000048\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219041722923721904\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000093\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219111722923721911\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000100\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219181722923721918\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000062\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219251722923721925\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000057\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219321722923721932\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000052\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219391722923721939\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000029\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219461722923721946\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219511722923721951\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000059\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219571722923721957\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000074\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219631722923721963\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219691722923721969\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000188\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219761722923721976\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000118\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219821722923721982\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219961722923721996\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000067\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220631722923722063\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000193\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220711722923722071\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000166\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220761722923722076\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000168\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223411722923722341\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000112\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223631722923722363\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223701722923722370\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223761722923722376\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000061\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224411722923722441\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000080\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355217521722923721752 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 13:59:05', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061359059771722923945977', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061355215931722923721593\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000037\", \"taskStatus\": 2, \"destination\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 13:59:06', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061359073671722923947367', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217521722923721752\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000073\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217561722923721756\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000049\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217621722923721762\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000083\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217741722923721774\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000024\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217821722923721782\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000077\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217891722923721789\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000025\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217961722923721796\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000038\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218021722923721802\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000031\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218621722923721862\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218811722923721881\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218901722923721890\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000053\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218971722923721897\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000048\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219041722923721904\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000093\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219111722923721911\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000100\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219181722923721918\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000062\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219251722923721925\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000057\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219321722923721932\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000052\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219391722923721939\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000029\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219461722923721946\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219511722923721951\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000059\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219571722923721957\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000074\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219631722923721963\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219691722923721969\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000188\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219761722923721976\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000118\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219821722923721982\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219961722923721996\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000067\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220631722923722063\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000193\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220711722923722071\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000166\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220761722923722076\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000168\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223411722923722341\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000112\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223631722923722363\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223701722923722370\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223761722923722376\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000061\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224411722923722441\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000080\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355217521722923721752 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 13:59:07', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061359093541722923949354', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217521722923721752\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000073\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217561722923721756\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000049\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217621722923721762\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000083\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217741722923721774\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000024\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217821722923721782\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000077\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217891722923721789\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000025\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217961722923721796\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000038\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218021722923721802\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000031\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218621722923721862\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218811722923721881\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218901722923721890\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000053\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218971722923721897\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000048\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219041722923721904\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000093\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219111722923721911\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000100\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219181722923721918\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000062\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219251722923721925\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000057\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219321722923721932\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000052\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219391722923721939\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000029\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219461722923721946\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219511722923721951\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000059\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219571722923721957\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000074\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219631722923721963\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219691722923721969\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000188\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219761722923721976\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000118\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219821722923721982\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219961722923721996\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000067\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220631722923722063\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000193\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220711722923722071\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000166\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220761722923722076\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000168\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223411722923722341\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000112\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223631722923722363\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223701722923722370\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223761722923722376\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000061\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224411722923722441\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000080\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355217521722923721752 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 13:59:09', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061359113601722923951360', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217521722923721752\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000073\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217561722923721756\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000049\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217621722923721762\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000083\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217741722923721774\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000024\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217821722923721782\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000077\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217891722923721789\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000025\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217961722923721796\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000038\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218021722923721802\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000031\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218621722923721862\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218811722923721881\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218901722923721890\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000053\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218971722923721897\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000048\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219041722923721904\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000093\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219111722923721911\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000100\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219181722923721918\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000062\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219251722923721925\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000057\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219321722923721932\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000052\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219391722923721939\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000029\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219461722923721946\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219511722923721951\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000059\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219571722923721957\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000074\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219631722923721963\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219691722923721969\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000188\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219761722923721976\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000118\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219821722923721982\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219961722923721996\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000067\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220631722923722063\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000193\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220711722923722071\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000166\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220761722923722076\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000168\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223411722923722341\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000112\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223631722923722363\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223701722923722370\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223761722923722376\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000061\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224411722923722441\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000080\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355217521722923721752 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 13:59:11', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061359128091722923952809', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061355215871722923721587\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000084\", \"taskStatus\": 100, \"destination\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 13:59:13', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061359128341722923952834', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061355215181722923721518\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000087\", \"taskStatus\": 100, \"destination\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 13:59:13', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061359133401722923953340', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217521722923721752\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000073\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217561722923721756\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000049\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217621722923721762\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000083\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217741722923721774\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000024\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217821722923721782\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000077\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217891722923721789\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000025\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217961722923721796\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000038\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218021722923721802\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000031\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218621722923721862\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218811722923721881\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218901722923721890\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000053\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218971722923721897\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000048\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219041722923721904\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000093\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219111722923721911\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000100\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219181722923721918\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000062\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219251722923721925\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000057\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219321722923721932\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000052\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219391722923721939\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000029\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219461722923721946\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219511722923721951\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000059\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219571722923721957\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000074\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219631722923721963\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219691722923721969\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000188\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219761722923721976\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000118\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219821722923721982\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219961722923721996\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000067\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220631722923722063\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000193\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220711722923722071\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000166\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220761722923722076\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000168\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223411722923722341\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000112\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223631722923722363\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223701722923722370\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223761722923722376\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000061\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224411722923722441\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000080\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355217521722923721752 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 13:59:13', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061359153651722923955365', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217521722923721752\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000073\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217561722923721756\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000049\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217621722923721762\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000083\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217741722923721774\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000024\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217821722923721782\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000077\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217891722923721789\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000025\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217961722923721796\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000038\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218021722923721802\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000031\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218621722923721862\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218811722923721881\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218901722923721890\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000053\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218971722923721897\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000048\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219041722923721904\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000093\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219111722923721911\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000100\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219181722923721918\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000062\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219251722923721925\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000057\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219321722923721932\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000052\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219391722923721939\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000029\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219461722923721946\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219511722923721951\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000059\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219571722923721957\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000074\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219631722923721963\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219691722923721969\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000188\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219761722923721976\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000118\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219821722923721982\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219961722923721996\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000067\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220631722923722063\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000193\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220711722923722071\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000166\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220761722923722076\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000168\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223411722923722341\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000112\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223631722923722363\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223701722923722370\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223761722923722376\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000061\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224411722923722441\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000080\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355217521722923721752 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 13:59:15', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061359164371722923956437', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061355216071722923721607\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000005\", \"taskStatus\": 2, \"destination\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 13:59:16', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061359164501722923956450', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061355216461722923721646\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000014\", \"taskStatus\": 2, \"destination\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 13:59:16', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061359173661722923957366', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217521722923721752\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000073\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217561722923721756\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000049\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217621722923721762\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000083\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217741722923721774\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000024\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217821722923721782\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000077\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217891722923721789\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000025\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217961722923721796\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000038\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218021722923721802\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000031\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218621722923721862\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218811722923721881\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218901722923721890\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000053\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218971722923721897\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000048\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219041722923721904\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000093\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219111722923721911\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000100\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219181722923721918\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000062\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219251722923721925\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000057\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219321722923721932\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000052\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219391722923721939\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000029\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219461722923721946\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219511722923721951\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000059\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219571722923721957\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000074\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219631722923721963\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219691722923721969\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000188\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219761722923721976\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000118\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219821722923721982\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219961722923721996\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000067\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220631722923722063\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000193\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220711722923722071\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000166\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220761722923722076\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000168\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223411722923722341\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000112\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223631722923722363\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223701722923722370\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223761722923722376\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000061\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224411722923722441\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000080\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355217521722923721752 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 13:59:17', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061359193561722923959356', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217521722923721752\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000073\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217561722923721756\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000049\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217621722923721762\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000083\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217741722923721774\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000024\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217821722923721782\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000077\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217891722923721789\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000025\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217961722923721796\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000038\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218021722923721802\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000031\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218621722923721862\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218811722923721881\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218901722923721890\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000053\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218971722923721897\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000048\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219041722923721904\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000093\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219111722923721911\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000100\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219181722923721918\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000062\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219251722923721925\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000057\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219321722923721932\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000052\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219391722923721939\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000029\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219461722923721946\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219511722923721951\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000059\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219571722923721957\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000074\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219631722923721963\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219691722923721969\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000188\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219761722923721976\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000118\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219821722923721982\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219961722923721996\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000067\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220631722923722063\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000193\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220711722923722071\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000166\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220761722923722076\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000168\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223411722923722341\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000112\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223631722923722363\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223701722923722370\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223761722923722376\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000061\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224411722923722441\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000080\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355217521722923721752 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 13:59:19', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061359213621722923961362', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217521722923721752\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000073\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217561722923721756\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000049\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217621722923721762\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000083\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217741722923721774\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000024\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217821722923721782\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000077\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217891722923721789\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000025\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217961722923721796\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000038\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218021722923721802\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000031\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218621722923721862\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218811722923721881\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218901722923721890\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000053\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218971722923721897\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000048\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219041722923721904\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000093\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219111722923721911\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000100\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219181722923721918\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000062\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219251722923721925\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000057\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219321722923721932\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000052\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219391722923721939\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000029\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219461722923721946\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219511722923721951\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000059\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219571722923721957\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000074\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219631722923721963\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219691722923721969\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000188\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219761722923721976\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000118\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219821722923721982\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219961722923721996\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000067\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220631722923722063\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000193\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220711722923722071\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000166\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220761722923722076\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000168\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223411722923722341\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000112\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223631722923722363\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223701722923722370\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223761722923722376\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000061\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224411722923722441\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000080\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355217521722923721752 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 13:59:21', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061359233501722923963350', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217521722923721752\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000073\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217561722923721756\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000049\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217621722923721762\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000083\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217741722923721774\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000024\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217821722923721782\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000077\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217891722923721789\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000025\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217961722923721796\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000038\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218021722923721802\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000031\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218621722923721862\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218811722923721881\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218901722923721890\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000053\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218971722923721897\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000048\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219041722923721904\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000093\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219111722923721911\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000100\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219181722923721918\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000062\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219251722923721925\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000057\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219321722923721932\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000052\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219391722923721939\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000029\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219461722923721946\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219511722923721951\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000059\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219571722923721957\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000074\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219631722923721963\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219691722923721969\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000188\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219761722923721976\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000118\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219821722923721982\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219961722923721996\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000067\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220631722923722063\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000193\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220711722923722071\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000166\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220761722923722076\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000168\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223411722923722341\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000112\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223631722923722363\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223701722923722370\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223761722923722376\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000061\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224411722923722441\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000080\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355217521722923721752 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 13:59:23', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061359253561722923965356', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217521722923721752\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000073\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217561722923721756\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000049\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217621722923721762\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000083\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217741722923721774\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000024\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217821722923721782\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000077\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217891722923721789\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000025\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217961722923721796\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000038\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218021722923721802\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000031\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218621722923721862\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218811722923721881\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218901722923721890\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000053\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218971722923721897\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000048\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219041722923721904\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000093\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219111722923721911\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000100\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219181722923721918\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000062\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219251722923721925\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000057\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219321722923721932\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000052\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219391722923721939\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000029\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219461722923721946\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219511722923721951\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000059\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219571722923721957\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000074\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219631722923721963\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219691722923721969\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000188\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219761722923721976\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000118\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219821722923721982\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219961722923721996\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000067\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220631722923722063\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000193\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220711722923722071\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000166\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220761722923722076\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000168\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223411722923722341\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000112\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223631722923722363\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223701722923722370\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223761722923722376\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000061\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224411722923722441\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000080\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355217521722923721752 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 13:59:25', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061359273571722923967357', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217521722923721752\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000073\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217561722923721756\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000049\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217621722923721762\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000083\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217741722923721774\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000024\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217821722923721782\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000077\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217891722923721789\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000025\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217961722923721796\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000038\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218021722923721802\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000031\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218621722923721862\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218811722923721881\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218901722923721890\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000053\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218971722923721897\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000048\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219041722923721904\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000093\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219111722923721911\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000100\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219181722923721918\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000062\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219251722923721925\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000057\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219321722923721932\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000052\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219391722923721939\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000029\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219461722923721946\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219511722923721951\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000059\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219571722923721957\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000074\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219631722923721963\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219691722923721969\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000188\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219761722923721976\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000118\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219821722923721982\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219961722923721996\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000067\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220631722923722063\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000193\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220711722923722071\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000166\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220761722923722076\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000168\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223411722923722341\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000112\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223631722923722363\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223701722923722370\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223761722923722376\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000061\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224411722923722441\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000080\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355217521722923721752 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 13:59:27', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061359293941722923969394', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217521722923721752\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000073\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217561722923721756\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000049\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217621722923721762\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000083\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217741722923721774\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000024\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217821722923721782\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000077\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217891722923721789\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000025\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217961722923721796\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000038\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218021722923721802\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000031\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218621722923721862\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218811722923721881\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218901722923721890\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000053\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218971722923721897\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000048\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219041722923721904\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000093\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219111722923721911\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000100\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219181722923721918\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000062\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219251722923721925\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000057\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219321722923721932\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000052\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219391722923721939\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000029\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219461722923721946\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219511722923721951\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000059\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219571722923721957\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000074\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219631722923721963\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219691722923721969\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000188\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219761722923721976\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000118\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219821722923721982\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219961722923721996\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000067\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220631722923722063\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000193\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220711722923722071\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000166\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220761722923722076\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000168\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223411722923722341\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000112\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223631722923722363\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223701722923722370\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223761722923722376\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000061\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224411722923722441\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000080\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355217521722923721752 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 13:59:29', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061359307971722923970797', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061355215931722923721593\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000037\", \"taskStatus\": 100, \"destination\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 13:59:31', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061359313801722923971380', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217521722923721752\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000073\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217561722923721756\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000049\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217621722923721762\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000083\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217741722923721774\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000024\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217821722923721782\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000077\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217891722923721789\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000025\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217961722923721796\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000038\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218021722923721802\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000031\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218621722923721862\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218811722923721881\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218901722923721890\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000053\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218971722923721897\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000048\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219041722923721904\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000093\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219111722923721911\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000100\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219181722923721918\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000062\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219251722923721925\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000057\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219321722923721932\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000052\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219391722923721939\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000029\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219461722923721946\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219511722923721951\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000059\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219571722923721957\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000074\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219631722923721963\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219691722923721969\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000188\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219761722923721976\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000118\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219821722923721982\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219961722923721996\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000067\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220631722923722063\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000193\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220711722923722071\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000166\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220761722923722076\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000168\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223411722923722341\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000112\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223631722923722363\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223701722923722370\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223761722923722376\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000061\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224411722923722441\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000080\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355217521722923721752 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 13:59:31', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061359329491722923972949', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061355215641722923721564\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000006\", \"taskStatus\": 2, \"destination\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 13:59:33', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061359333901722923973390', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217521722923721752\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000073\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217561722923721756\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000049\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217621722923721762\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000083\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217741722923721774\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000024\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217821722923721782\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000077\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217891722923721789\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000025\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217961722923721796\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000038\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218021722923721802\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000031\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218621722923721862\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218811722923721881\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218901722923721890\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000053\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218971722923721897\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000048\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219041722923721904\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000093\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219111722923721911\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000100\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219181722923721918\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000062\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219251722923721925\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000057\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219321722923721932\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000052\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219391722923721939\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000029\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219461722923721946\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219511722923721951\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000059\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219571722923721957\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000074\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219631722923721963\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219691722923721969\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000188\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219761722923721976\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000118\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219821722923721982\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219961722923721996\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000067\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220631722923722063\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000193\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220711722923722071\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000166\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220761722923722076\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000168\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223411722923722341\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000112\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223631722923722363\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223701722923722370\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223761722923722376\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000061\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224411722923722441\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000080\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355217521722923721752 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 13:59:33', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061359348611722923974861', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061355215811722923721581\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000085\", \"taskStatus\": 100, \"destination\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 13:59:35', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061359353741722923975374', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217521722923721752\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000073\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217561722923721756\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000049\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217621722923721762\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000083\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217741722923721774\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000024\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217821722923721782\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000077\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217891722923721789\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000025\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217961722923721796\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000038\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218021722923721802\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000031\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218621722923721862\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218811722923721881\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218901722923721890\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000053\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218971722923721897\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000048\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219041722923721904\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000093\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219111722923721911\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000100\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219181722923721918\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000062\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219251722923721925\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000057\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219321722923721932\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000052\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219391722923721939\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000029\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219461722923721946\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219511722923721951\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000059\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219571722923721957\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000074\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219631722923721963\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219691722923721969\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000188\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219761722923721976\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000118\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219821722923721982\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219961722923721996\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000067\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220631722923722063\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000193\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220711722923722071\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000166\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220761722923722076\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000168\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223411722923722341\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000112\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223631722923722363\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223701722923722370\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223761722923722376\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000061\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224411722923722441\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000080\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355217521722923721752 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 13:59:35', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061359358151722923975815', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061355216031722923721603\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000012\", \"taskStatus\": 100, \"destination\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 13:59:36', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061359373831722923977383', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217521722923721752\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000073\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217561722923721756\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000049\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217621722923721762\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000083\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217741722923721774\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000024\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217821722923721782\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000077\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217891722923721789\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000025\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217961722923721796\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000038\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218021722923721802\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000031\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218621722923721862\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218811722923721881\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218901722923721890\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000053\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218971722923721897\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000048\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219041722923721904\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000093\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219111722923721911\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000100\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219181722923721918\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000062\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219251722923721925\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000057\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219321722923721932\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000052\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219391722923721939\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000029\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219461722923721946\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219511722923721951\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000059\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219571722923721957\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000074\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219631722923721963\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219691722923721969\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000188\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219761722923721976\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000118\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219821722923721982\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219961722923721996\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000067\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220631722923722063\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000193\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220711722923722071\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000166\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220761722923722076\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000168\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223411722923722341\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000112\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223631722923722363\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223701722923722370\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223761722923722376\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000061\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224411722923722441\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000080\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355217521722923721752 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 13:59:37', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061359378371722923977837', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061355215981722923721598\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000021\", \"taskStatus\": 100, \"destination\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 13:59:38', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061359378551722923977855', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061355216161722923721616\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000004\", \"taskStatus\": 100, \"destination\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 13:59:38', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061359392331722923979233', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061355216581722923721658\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000013\", \"taskStatus\": 2, \"destination\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 13:59:39', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061359393481722923979348', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217521722923721752\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000073\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217561722923721756\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000049\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217621722923721762\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000083\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217741722923721774\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000024\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217821722923721782\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000077\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217891722923721789\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000025\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217961722923721796\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000038\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218021722923721802\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000031\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218621722923721862\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218811722923721881\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218901722923721890\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000053\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218971722923721897\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000048\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219041722923721904\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000093\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219111722923721911\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000100\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219181722923721918\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000062\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219251722923721925\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000057\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219321722923721932\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000052\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219391722923721939\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000029\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219461722923721946\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219511722923721951\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000059\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219571722923721957\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000074\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219631722923721963\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219691722923721969\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000188\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219761722923721976\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000118\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219821722923721982\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219961722923721996\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000067\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220631722923722063\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000193\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220711722923722071\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000166\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220761722923722076\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000168\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223411722923722341\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000112\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223631722923722363\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223701722923722370\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223761722923722376\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000061\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224411722923722441\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000080\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355217521722923721752 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 13:59:39', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061359413381722923981338', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061355216631722923721663\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000009\", \"taskStatus\": 2, \"destination\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 13:59:41', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061359413451722923981345', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061355216831722923721683\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000090\", \"taskStatus\": 2, \"destination\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 13:59:41', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061359413531722923981353', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217521722923721752\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000073\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217561722923721756\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000049\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217621722923721762\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000083\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217741722923721774\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000024\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217821722923721782\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000077\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217891722923721789\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000025\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217961722923721796\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000038\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218021722923721802\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000031\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218621722923721862\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218811722923721881\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218901722923721890\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000053\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218971722923721897\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000048\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219041722923721904\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000093\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219111722923721911\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000100\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219181722923721918\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000062\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219251722923721925\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000057\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219321722923721932\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000052\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219391722923721939\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000029\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219461722923721946\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219511722923721951\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000059\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219571722923721957\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000074\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219631722923721963\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219691722923721969\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000188\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219761722923721976\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000118\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219821722923721982\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219961722923721996\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000067\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220631722923722063\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000193\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220711722923722071\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000166\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220761722923722076\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000168\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223411722923722341\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000112\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223631722923722363\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223701722923722370\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223761722923722376\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000061\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224411722923722441\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000080\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355217521722923721752 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 13:59:41', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061359433711722923983371', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217521722923721752\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000073\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217561722923721756\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000049\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217621722923721762\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000083\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217741722923721774\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000024\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217821722923721782\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000077\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217891722923721789\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000025\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217961722923721796\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000038\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218021722923721802\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000031\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218621722923721862\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218811722923721881\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218901722923721890\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000053\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218971722923721897\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000048\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219041722923721904\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000093\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219111722923721911\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000100\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219181722923721918\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000062\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219251722923721925\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000057\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219321722923721932\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000052\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219391722923721939\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000029\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219461722923721946\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219511722923721951\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000059\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219571722923721957\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000074\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219631722923721963\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219691722923721969\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000188\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219761722923721976\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000118\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219821722923721982\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219961722923721996\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000067\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220631722923722063\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000193\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220711722923722071\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000166\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220761722923722076\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000168\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223411722923722341\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000112\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223631722923722363\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223701722923722370\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223761722923722376\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000061\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224411722923722441\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000080\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355217521722923721752 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 13:59:43', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061359453671722923985367', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217521722923721752\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000073\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217561722923721756\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000049\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217621722923721762\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000083\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217741722923721774\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000024\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217821722923721782\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000077\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217891722923721789\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000025\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217961722923721796\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000038\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218021722923721802\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000031\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218621722923721862\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218811722923721881\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218901722923721890\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000053\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218971722923721897\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000048\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219041722923721904\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000093\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219111722923721911\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000100\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219181722923721918\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000062\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219251722923721925\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000057\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219321722923721932\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000052\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219391722923721939\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000029\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219461722923721946\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219511722923721951\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000059\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219571722923721957\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000074\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219631722923721963\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219691722923721969\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000188\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219761722923721976\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000118\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219821722923721982\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219961722923721996\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000067\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220631722923722063\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000193\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220711722923722071\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000166\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220761722923722076\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000168\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223411722923722341\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000112\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223631722923722363\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223701722923722370\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223761722923722376\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000061\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224411722923722441\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000080\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355217521722923721752 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 13:59:45', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061359473641722923987364', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217521722923721752\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000073\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217561722923721756\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000049\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217621722923721762\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000083\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217741722923721774\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000024\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217821722923721782\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000077\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217891722923721789\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000025\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217961722923721796\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000038\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218021722923721802\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000031\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218621722923721862\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218811722923721881\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218901722923721890\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000053\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218971722923721897\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000048\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219041722923721904\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000093\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219111722923721911\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000100\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219181722923721918\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000062\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219251722923721925\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000057\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219321722923721932\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000052\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219391722923721939\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000029\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219461722923721946\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219511722923721951\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000059\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219571722923721957\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000074\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219631722923721963\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219691722923721969\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000188\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219761722923721976\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000118\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219821722923721982\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219961722923721996\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000067\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220631722923722063\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000193\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220711722923722071\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000166\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220761722923722076\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000168\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223411722923722341\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000112\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223631722923722363\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223701722923722370\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223761722923722376\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000061\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224411722923722441\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000080\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355217521722923721752 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 13:59:47', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061359493761722923989376', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217521722923721752\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000073\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217561722923721756\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000049\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217621722923721762\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000083\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217741722923721774\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000024\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217821722923721782\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000077\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217891722923721789\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000025\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217961722923721796\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000038\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218021722923721802\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000031\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218621722923721862\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218811722923721881\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218901722923721890\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000053\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218971722923721897\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000048\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219041722923721904\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000093\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219111722923721911\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000100\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219181722923721918\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000062\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219251722923721925\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000057\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219321722923721932\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000052\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219391722923721939\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000029\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219461722923721946\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219511722923721951\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000059\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219571722923721957\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000074\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219631722923721963\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219691722923721969\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000188\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219761722923721976\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000118\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219821722923721982\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219961722923721996\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000067\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220631722923722063\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000193\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220711722923722071\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000166\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220761722923722076\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000168\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223411722923722341\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000112\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223631722923722363\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223701722923722370\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223761722923722376\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000061\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224411722923722441\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000080\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355217521722923721752 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 13:59:49', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061359513881722923991388', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217521722923721752\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000073\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217561722923721756\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000049\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217621722923721762\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000083\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217741722923721774\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000024\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217821722923721782\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000077\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217891722923721789\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000025\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217961722923721796\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000038\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218021722923721802\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000031\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218621722923721862\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218811722923721881\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218901722923721890\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000053\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218971722923721897\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000048\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219041722923721904\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000093\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219111722923721911\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000100\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219181722923721918\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000062\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219251722923721925\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000057\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219321722923721932\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000052\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219391722923721939\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000029\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219461722923721946\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219511722923721951\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000059\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219571722923721957\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000074\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219631722923721963\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219691722923721969\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000188\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219761722923721976\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000118\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219821722923721982\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219961722923721996\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000067\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220631722923722063\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000193\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220711722923722071\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000166\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220761722923722076\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000168\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223411722923722341\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000112\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223631722923722363\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223701722923722370\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223761722923722376\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000061\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224411722923722441\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000080\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355217521722923721752 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 13:59:51', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061359533891722923993389', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217521722923721752\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000073\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217561722923721756\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000049\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217621722923721762\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000083\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217741722923721774\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000024\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217821722923721782\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000077\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217891722923721789\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000025\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217961722923721796\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000038\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218021722923721802\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000031\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218621722923721862\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218811722923721881\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218901722923721890\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000053\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218971722923721897\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000048\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219041722923721904\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000093\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219111722923721911\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000100\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219181722923721918\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000062\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219251722923721925\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000057\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219321722923721932\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000052\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219391722923721939\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000029\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219461722923721946\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219511722923721951\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000059\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219571722923721957\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000074\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219631722923721963\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219691722923721969\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000188\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219761722923721976\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000118\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219821722923721982\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219961722923721996\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000067\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220631722923722063\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000193\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220711722923722071\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000166\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220761722923722076\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000168\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223411722923722341\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000112\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223631722923722363\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223701722923722370\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223761722923722376\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000061\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224411722923722441\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000080\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355217521722923721752 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 13:59:53', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061359548001722923994800', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061355216461722923721646\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000014\", \"taskStatus\": 100, \"destination\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 13:59:55', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061359548111722923994811', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061355216071722923721607\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000005\", \"taskStatus\": 100, \"destination\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 13:59:55', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061359553671722923995367', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217521722923721752\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000073\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217561722923721756\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000049\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217621722923721762\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000083\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217741722923721774\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000024\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217821722923721782\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000077\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217891722923721789\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000025\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217961722923721796\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000038\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218021722923721802\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000031\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218621722923721862\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218811722923721881\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218901722923721890\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000053\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218971722923721897\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000048\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219041722923721904\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000093\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219111722923721911\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000100\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219181722923721918\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000062\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219251722923721925\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000057\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219321722923721932\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000052\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219391722923721939\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000029\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219461722923721946\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219511722923721951\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000059\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219571722923721957\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000074\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219631722923721963\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219691722923721969\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000188\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219761722923721976\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000118\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219821722923721982\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219961722923721996\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000067\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220631722923722063\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000193\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220711722923722071\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000166\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220761722923722076\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000168\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223411722923722341\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000112\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223631722923722363\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223701722923722370\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223761722923722376\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000061\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224411722923722441\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000080\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355217521722923721752 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 13:59:55', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061359573641722923997364', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217521722923721752\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000073\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217561722923721756\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000049\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217621722923721762\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000083\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217741722923721774\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000024\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217821722923721782\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000077\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217891722923721789\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000025\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217961722923721796\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000038\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218021722923721802\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000031\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218621722923721862\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218811722923721881\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218901722923721890\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000053\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218971722923721897\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000048\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219041722923721904\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000093\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219111722923721911\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000100\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219181722923721918\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000062\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219251722923721925\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000057\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219321722923721932\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000052\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219391722923721939\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000029\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219461722923721946\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219511722923721951\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000059\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219571722923721957\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000074\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219631722923721963\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219691722923721969\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000188\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219761722923721976\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000118\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219821722923721982\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219961722923721996\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000067\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220631722923722063\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000193\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220711722923722071\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000166\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220761722923722076\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000168\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223411722923722341\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000112\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223631722923722363\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223701722923722370\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223761722923722376\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000061\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224411722923722441\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000080\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355217521722923721752 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 13:59:57', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061359584381722923998438', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061355216691722923721669\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000017\", \"taskStatus\": 2, \"destination\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 13:59:58', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061359584521722923998452', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061355216981722923721698\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000089\", \"taskStatus\": 2, \"destination\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 13:59:58', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061359593801722923999380', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217521722923721752\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000073\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217561722923721756\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000049\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217621722923721762\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000083\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217741722923721774\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000024\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217821722923721782\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000077\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217891722923721789\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000025\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217961722923721796\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000038\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218021722923721802\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000031\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218621722923721862\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218811722923721881\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218901722923721890\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000053\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218971722923721897\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000048\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219041722923721904\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000093\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219111722923721911\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000100\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219181722923721918\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000062\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219251722923721925\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000057\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219321722923721932\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000052\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219391722923721939\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000029\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219461722923721946\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219511722923721951\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000059\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219571722923721957\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000074\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219631722923721963\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219691722923721969\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000188\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219761722923721976\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000118\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219821722923721982\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219961722923721996\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000067\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220631722923722063\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000193\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220711722923722071\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000166\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220761722923722076\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000168\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223411722923722341\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000112\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223631722923722363\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223701722923722370\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223761722923722376\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000061\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224411722923722441\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000080\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355217521722923721752 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 13:59:59', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061400008151722924000815', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061355215641722923721564\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000006\", \"taskStatus\": 100, \"destination\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:00:01', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061400013721722924001372', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217521722923721752\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000073\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217561722923721756\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000049\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217621722923721762\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000083\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217741722923721774\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000024\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217821722923721782\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000077\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217891722923721789\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000025\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217961722923721796\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000038\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218021722923721802\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000031\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218621722923721862\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218811722923721881\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218901722923721890\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000053\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218971722923721897\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000048\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219041722923721904\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000093\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219111722923721911\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000100\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219181722923721918\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000062\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219251722923721925\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000057\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219321722923721932\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000052\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219391722923721939\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000029\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219461722923721946\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219511722923721951\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000059\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219571722923721957\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000074\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219631722923721963\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219691722923721969\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000188\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219761722923721976\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000118\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219821722923721982\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219961722923721996\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000067\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220631722923722063\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000193\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220711722923722071\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000166\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220761722923722076\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000168\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223411722923722341\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000112\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223631722923722363\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223701722923722370\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223761722923722376\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000061\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224411722923722441\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000080\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355217521722923721752 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:00:01', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061400024301722924002430', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061355216121722923721612\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000033\", \"taskStatus\": 2, \"destination\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:00:02', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061400024651722924002465', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061355216531722923721653\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000011\", \"taskStatus\": 2, \"destination\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:00:02', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061400033941722924003394', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217521722923721752\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000073\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217561722923721756\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000049\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217621722923721762\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000083\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217741722923721774\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000024\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217821722923721782\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000077\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217891722923721789\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000025\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217961722923721796\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000038\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218021722923721802\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000031\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218621722923721862\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218811722923721881\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218901722923721890\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000053\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218971722923721897\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000048\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219041722923721904\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000093\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219111722923721911\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000100\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219181722923721918\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000062\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219251722923721925\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000057\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219321722923721932\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000052\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219391722923721939\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000029\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219461722923721946\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219511722923721951\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000059\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219571722923721957\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000074\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219631722923721963\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219691722923721969\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000188\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219761722923721976\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000118\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219821722923721982\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219961722923721996\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000067\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220631722923722063\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000193\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220711722923722071\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000166\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220761722923722076\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000168\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223411722923722341\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000112\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223631722923722363\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223701722923722370\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223761722923722376\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000061\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224411722923722441\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000080\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355217521722923721752 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:00:03', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061400048061722924004806', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061355216581722923721658\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000013\", \"taskStatus\": 100, \"destination\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:00:05', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061400053701722924005370', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217521722923721752\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000073\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217561722923721756\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000049\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217621722923721762\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000083\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217741722923721774\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000024\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217821722923721782\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000077\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217891722923721789\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000025\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217961722923721796\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000038\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218021722923721802\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000031\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218621722923721862\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218811722923721881\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218901722923721890\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000053\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218971722923721897\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000048\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219041722923721904\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000093\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219111722923721911\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000100\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219181722923721918\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000062\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219251722923721925\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000057\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219321722923721932\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000052\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219391722923721939\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000029\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219461722923721946\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219511722923721951\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000059\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219571722923721957\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000074\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219631722923721963\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219691722923721969\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000188\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219761722923721976\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000118\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219821722923721982\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219961722923721996\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000067\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220631722923722063\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000193\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220711722923722071\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000166\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220761722923722076\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000168\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223411722923722341\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000112\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223631722923722363\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223701722923722370\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223761722923722376\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000061\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224411722923722441\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000080\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355217521722923721752 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:00:05', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061400073751722924007375', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217521722923721752\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000073\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217561722923721756\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000049\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217621722923721762\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000083\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217741722923721774\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000024\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217821722923721782\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000077\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217891722923721789\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000025\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217961722923721796\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000038\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218021722923721802\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000031\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218621722923721862\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218811722923721881\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218901722923721890\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000053\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218971722923721897\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000048\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219041722923721904\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000093\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219111722923721911\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000100\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219181722923721918\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000062\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219251722923721925\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000057\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219321722923721932\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000052\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219391722923721939\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000029\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219461722923721946\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219511722923721951\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000059\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219571722923721957\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000074\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219631722923721963\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219691722923721969\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000188\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219761722923721976\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000118\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219821722923721982\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219961722923721996\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000067\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220631722923722063\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000193\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220711722923722071\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000166\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220761722923722076\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000168\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223411722923722341\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000112\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223631722923722363\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223701722923722370\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223761722923722376\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000061\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224411722923722441\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000080\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355217521722923721752 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:00:07', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061400074161722924007416', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061355216371722923721637\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000007\", \"taskStatus\": 2, \"destination\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:00:07', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061400094191722924009419', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217521722923721752\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000073\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217561722923721756\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000049\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217621722923721762\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000083\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217741722923721774\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000024\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217821722923721782\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000077\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217891722923721789\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000025\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217961722923721796\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000038\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218021722923721802\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000031\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218621722923721862\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218811722923721881\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218901722923721890\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000053\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218971722923721897\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000048\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219041722923721904\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000093\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219111722923721911\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000100\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219181722923721918\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000062\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219251722923721925\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000057\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219321722923721932\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000052\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219391722923721939\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000029\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219461722923721946\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219511722923721951\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000059\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219571722923721957\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000074\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219631722923721963\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219691722923721969\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000188\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219761722923721976\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000118\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219821722923721982\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219961722923721996\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000067\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220631722923722063\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000193\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220711722923722071\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000166\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220761722923722076\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000168\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223411722923722341\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000112\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223631722923722363\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223701722923722370\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223761722923722376\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000061\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224411722923722441\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000080\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355217521722923721752 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:00:09', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061400113761722924011376', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217521722923721752\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000073\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217561722923721756\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000049\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217621722923721762\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000083\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217741722923721774\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000024\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217821722923721782\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000077\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217891722923721789\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000025\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217961722923721796\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000038\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218021722923721802\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000031\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218621722923721862\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218811722923721881\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218901722923721890\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000053\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218971722923721897\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000048\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219041722923721904\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000093\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219111722923721911\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000100\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219181722923721918\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000062\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219251722923721925\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000057\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219321722923721932\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000052\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219391722923721939\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000029\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219461722923721946\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219511722923721951\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000059\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219571722923721957\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000074\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219631722923721963\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219691722923721969\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000188\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219761722923721976\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000118\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219821722923721982\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219961722923721996\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000067\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220631722923722063\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000193\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220711722923722071\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000166\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220761722923722076\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000168\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223411722923722341\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000112\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223631722923722363\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223701722923722370\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223761722923722376\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000061\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224411722923722441\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000080\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355217521722923721752 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:00:11', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061400134021722924013402', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217521722923721752\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000073\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217561722923721756\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000049\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217621722923721762\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000083\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217741722923721774\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000024\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217821722923721782\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000077\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217891722923721789\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000025\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217961722923721796\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000038\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218021722923721802\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000031\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218621722923721862\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218811722923721881\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218901722923721890\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000053\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218971722923721897\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000048\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219041722923721904\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000093\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219111722923721911\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000100\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219181722923721918\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000062\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219251722923721925\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000057\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219321722923721932\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000052\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219391722923721939\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000029\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219461722923721946\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219511722923721951\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000059\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219571722923721957\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000074\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219631722923721963\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219691722923721969\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000188\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219761722923721976\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000118\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219821722923721982\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219961722923721996\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000067\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220631722923722063\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000193\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220711722923722071\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000166\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220761722923722076\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000168\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223411722923722341\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000112\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223631722923722363\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223701722923722370\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223761722923722376\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000061\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224411722923722441\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000080\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355217521722923721752 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:00:13', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061400153791722924015379', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217521722923721752\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000073\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217561722923721756\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000049\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217621722923721762\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000083\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217741722923721774\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000024\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217821722923721782\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000077\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217891722923721789\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000025\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217961722923721796\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000038\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218021722923721802\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000031\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218621722923721862\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218811722923721881\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218901722923721890\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000053\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218971722923721897\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000048\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219041722923721904\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000093\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219111722923721911\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000100\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219181722923721918\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000062\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219251722923721925\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000057\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219321722923721932\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000052\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219391722923721939\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000029\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219461722923721946\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219511722923721951\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000059\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219571722923721957\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000074\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219631722923721963\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219691722923721969\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000188\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219761722923721976\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000118\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219821722923721982\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219961722923721996\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000067\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220631722923722063\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000193\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220711722923722071\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000166\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220761722923722076\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000168\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223411722923722341\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000112\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223631722923722363\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223701722923722370\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223761722923722376\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000061\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224411722923722441\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000080\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355217521722923721752 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:00:15', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061400173711722924017371', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217521722923721752\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000073\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217561722923721756\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000049\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217621722923721762\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000083\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217741722923721774\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000024\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217821722923721782\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000077\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217891722923721789\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000025\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217961722923721796\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000038\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218021722923721802\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000031\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218621722923721862\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218811722923721881\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218901722923721890\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000053\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218971722923721897\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000048\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219041722923721904\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000093\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219111722923721911\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000100\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219181722923721918\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000062\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219251722923721925\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000057\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219321722923721932\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000052\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219391722923721939\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000029\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219461722923721946\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219511722923721951\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000059\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219571722923721957\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000074\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219631722923721963\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219691722923721969\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000188\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219761722923721976\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000118\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219821722923721982\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219961722923721996\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000067\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220631722923722063\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000193\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220711722923722071\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000166\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220761722923722076\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000168\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223411722923722341\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000112\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223631722923722363\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223701722923722370\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223761722923722376\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000061\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224411722923722441\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000080\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355217521722923721752 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:00:17', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061400193771722924019377', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217521722923721752\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000073\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217561722923721756\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000049\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217621722923721762\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000083\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217741722923721774\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000024\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217821722923721782\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000077\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217891722923721789\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000025\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217961722923721796\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000038\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218021722923721802\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000031\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218621722923721862\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218811722923721881\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218901722923721890\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000053\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218971722923721897\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000048\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219041722923721904\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000093\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219111722923721911\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000100\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219181722923721918\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000062\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219251722923721925\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000057\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219321722923721932\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000052\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219391722923721939\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000029\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219461722923721946\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219511722923721951\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000059\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219571722923721957\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000074\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219631722923721963\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219691722923721969\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000188\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219761722923721976\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000118\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219821722923721982\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219961722923721996\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000067\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220631722923722063\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000193\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220711722923722071\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000166\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220761722923722076\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000168\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223411722923722341\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000112\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223631722923722363\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223701722923722370\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223761722923722376\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000061\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224411722923722441\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000080\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355217521722923721752 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:00:19', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061400213891722924021389', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217521722923721752\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000073\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217561722923721756\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000049\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217621722923721762\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000083\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217741722923721774\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000024\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217821722923721782\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000077\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217891722923721789\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000025\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217961722923721796\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000038\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218021722923721802\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000031\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218621722923721862\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218811722923721881\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218901722923721890\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000053\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218971722923721897\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000048\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219041722923721904\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000093\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219111722923721911\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000100\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219181722923721918\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000062\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219251722923721925\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000057\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219321722923721932\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000052\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219391722923721939\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000029\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219461722923721946\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219511722923721951\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000059\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219571722923721957\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000074\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219631722923721963\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219691722923721969\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000188\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219761722923721976\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000118\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219821722923721982\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219961722923721996\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000067\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220631722923722063\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000193\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220711722923722071\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000166\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220761722923722076\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000168\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223411722923722341\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000112\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223631722923722363\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223701722923722370\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223761722923722376\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000061\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224411722923722441\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000080\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355217521722923721752 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:00:21', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061400227921722924022792', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061355216631722923721663\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000009\", \"taskStatus\": 100, \"destination\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:00:23', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061400228111722924022811', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061355216831722923721683\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000090\", \"taskStatus\": 100, \"destination\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:00:23', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061400234071722924023407', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217521722923721752\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000073\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217561722923721756\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000049\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217621722923721762\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000083\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217741722923721774\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000024\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217821722923721782\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000077\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217891722923721789\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000025\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217961722923721796\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000038\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218021722923721802\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000031\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218621722923721862\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218811722923721881\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218901722923721890\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000053\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218971722923721897\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000048\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219041722923721904\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000093\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219111722923721911\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000100\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219181722923721918\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000062\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219251722923721925\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000057\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219321722923721932\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000052\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219391722923721939\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000029\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219461722923721946\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219511722923721951\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000059\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219571722923721957\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000074\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219631722923721963\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219691722923721969\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000188\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219761722923721976\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000118\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219821722923721982\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219961722923721996\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000067\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220631722923722063\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000193\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220711722923722071\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000166\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220761722923722076\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000168\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223411722923722341\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000112\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223631722923722363\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223701722923722370\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223761722923722376\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000061\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224411722923722441\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000080\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355217521722923721752 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:00:23', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061400253841722924025384', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217521722923721752\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000073\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217561722923721756\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000049\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217621722923721762\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000083\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217741722923721774\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000024\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217821722923721782\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000077\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217891722923721789\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000025\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217961722923721796\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000038\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218021722923721802\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000031\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218621722923721862\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218811722923721881\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218901722923721890\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000053\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218971722923721897\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000048\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219041722923721904\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000093\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219111722923721911\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000100\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219181722923721918\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000062\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219251722923721925\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000057\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219321722923721932\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000052\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219391722923721939\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000029\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219461722923721946\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219511722923721951\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000059\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219571722923721957\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000074\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219631722923721963\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219691722923721969\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000188\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219761722923721976\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000118\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219821722923721982\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219961722923721996\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000067\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220631722923722063\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000193\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220711722923722071\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000166\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220761722923722076\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000168\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223411722923722341\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000112\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223631722923722363\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223701722923722370\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223761722923722376\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000061\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224411722923722441\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000080\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355217521722923721752 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:00:25', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061400258831722924025883', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061355217091722923721709\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000098\", \"taskStatus\": 2, \"destination\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:00:26', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061400259091722924025909', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061355217231722923721723\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000064\", \"taskStatus\": 2, \"destination\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:00:26', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061400273811722924027381', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217521722923721752\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000073\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217561722923721756\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000049\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217621722923721762\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000083\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217741722923721774\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000024\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217821722923721782\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000077\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217891722923721789\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000025\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217961722923721796\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000038\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218021722923721802\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000031\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218621722923721862\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218811722923721881\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218901722923721890\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000053\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218971722923721897\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000048\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219041722923721904\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000093\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219111722923721911\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000100\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219181722923721918\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000062\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219251722923721925\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000057\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219321722923721932\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000052\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219391722923721939\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000029\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219461722923721946\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219511722923721951\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000059\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219571722923721957\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000074\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219631722923721963\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219691722923721969\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000188\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219761722923721976\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000118\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219821722923721982\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219961722923721996\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000067\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220631722923722063\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000193\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220711722923722071\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000166\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220761722923722076\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000168\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223411722923722341\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000112\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223631722923722363\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223701722923722370\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223761722923722376\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000061\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224411722923722441\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000080\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355217521722923721752 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:00:27', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061400294141722924029414', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217521722923721752\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000073\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217561722923721756\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000049\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217621722923721762\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000083\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217741722923721774\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000024\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217821722923721782\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000077\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217891722923721789\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000025\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217961722923721796\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000038\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218021722923721802\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000031\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218621722923721862\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218811722923721881\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218901722923721890\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000053\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218971722923721897\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000048\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219041722923721904\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000093\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219111722923721911\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000100\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219181722923721918\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000062\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219251722923721925\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000057\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219321722923721932\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000052\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219391722923721939\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000029\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219461722923721946\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219511722923721951\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000059\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219571722923721957\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000074\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219631722923721963\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219691722923721969\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000188\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219761722923721976\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000118\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219821722923721982\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219961722923721996\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000067\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220631722923722063\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000193\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220711722923722071\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000166\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220761722923722076\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000168\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223411722923722341\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000112\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223631722923722363\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223701722923722370\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223761722923722376\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000061\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224411722923722441\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000080\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355217521722923721752 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:00:29', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061400314331722924031433', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217521722923721752\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000073\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217561722923721756\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000049\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217621722923721762\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000083\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217741722923721774\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000024\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217821722923721782\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000077\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217891722923721789\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000025\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217961722923721796\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000038\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218021722923721802\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000031\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218621722923721862\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218811722923721881\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218901722923721890\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000053\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218971722923721897\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000048\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219041722923721904\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000093\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219111722923721911\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000100\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219181722923721918\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000062\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219251722923721925\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000057\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219321722923721932\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000052\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219391722923721939\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000029\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219461722923721946\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219511722923721951\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000059\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219571722923721957\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000074\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219631722923721963\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219691722923721969\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000188\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219761722923721976\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000118\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219821722923721982\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219961722923721996\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000067\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220631722923722063\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000193\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220711722923722071\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000166\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220761722923722076\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000168\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223411722923722341\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000112\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223631722923722363\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223701722923722370\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223761722923722376\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000061\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224411722923722441\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000080\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355217521722923721752 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:00:31', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061400333901722924033390', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217521722923721752\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000073\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217561722923721756\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000049\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217621722923721762\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000083\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217741722923721774\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000024\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217821722923721782\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000077\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217891722923721789\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000025\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217961722923721796\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000038\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218021722923721802\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000031\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218621722923721862\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218811722923721881\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218901722923721890\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000053\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218971722923721897\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000048\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219041722923721904\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000093\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219111722923721911\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000100\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219181722923721918\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000062\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219251722923721925\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000057\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219321722923721932\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000052\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219391722923721939\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000029\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219461722923721946\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219511722923721951\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000059\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219571722923721957\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000074\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219631722923721963\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219691722923721969\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000188\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219761722923721976\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000118\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219821722923721982\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219961722923721996\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000067\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220631722923722063\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000193\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220711722923722071\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000166\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220761722923722076\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000168\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223411722923722341\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000112\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223631722923722363\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223701722923722370\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223761722923722376\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000061\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224411722923722441\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000080\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355217521722923721752 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:00:33', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061400348421722924034842', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061355216371722923721637\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000007\", \"taskStatus\": 100, \"destination\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:00:35', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061400353841722924035384', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217521722923721752\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000073\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217561722923721756\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000049\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217621722923721762\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000083\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217741722923721774\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000024\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217821722923721782\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000077\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217891722923721789\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000025\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217961722923721796\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000038\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218021722923721802\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000031\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218621722923721862\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218811722923721881\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218901722923721890\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000053\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218971722923721897\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000048\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219041722923721904\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000093\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219111722923721911\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000100\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219181722923721918\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000062\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219251722923721925\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000057\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219321722923721932\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000052\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219391722923721939\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000029\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219461722923721946\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219511722923721951\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000059\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219571722923721957\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000074\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219631722923721963\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219691722923721969\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000188\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219761722923721976\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000118\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219821722923721982\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219961722923721996\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000067\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220631722923722063\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000193\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220711722923722071\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000166\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220761722923722076\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000168\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223411722923722341\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000112\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223631722923722363\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223701722923722370\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223761722923722376\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000061\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224411722923722441\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000080\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355217521722923721752 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:00:35', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061400363341722924036334', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061355217021722923721702\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000020\", \"taskStatus\": 2, \"destination\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:00:36', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061400368191722924036819', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061355216981722923721698\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000089\", \"taskStatus\": 100, \"destination\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:00:37', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061400374081722924037408', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217521722923721752\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000073\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217561722923721756\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000049\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217621722923721762\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000083\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217741722923721774\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000024\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217821722923721782\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000077\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217891722923721789\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000025\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217961722923721796\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000038\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218021722923721802\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000031\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218621722923721862\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218811722923721881\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218901722923721890\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000053\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218971722923721897\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000048\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219041722923721904\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000093\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219111722923721911\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000100\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219181722923721918\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000062\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219251722923721925\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000057\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219321722923721932\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000052\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219391722923721939\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000029\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219461722923721946\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219511722923721951\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000059\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219571722923721957\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000074\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219631722923721963\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219691722923721969\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000188\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219761722923721976\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000118\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219821722923721982\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219961722923721996\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000067\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220631722923722063\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000193\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220711722923722071\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000166\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220761722923722076\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000168\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223411722923722341\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000112\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223631722923722363\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223701722923722370\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223761722923722376\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000061\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224411722923722441\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000080\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355217521722923721752 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:00:37', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061400377961722924037796', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061355216691722923721669\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000017\", \"taskStatus\": 100, \"destination\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:00:38', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061400394141722924039414', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217521722923721752\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000073\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217561722923721756\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000049\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217621722923721762\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000083\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217741722923721774\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000024\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217821722923721782\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000077\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217891722923721789\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000025\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217961722923721796\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000038\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218021722923721802\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000031\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218621722923721862\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218811722923721881\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218901722923721890\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000053\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218971722923721897\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000048\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219041722923721904\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000093\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219111722923721911\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000100\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219181722923721918\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000062\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219251722923721925\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000057\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219321722923721932\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000052\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219391722923721939\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000029\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219461722923721946\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219511722923721951\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000059\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219571722923721957\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000074\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219631722923721963\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219691722923721969\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000188\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219761722923721976\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000118\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219821722923721982\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219961722923721996\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000067\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220631722923722063\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000193\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220711722923722071\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000166\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220761722923722076\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000168\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223411722923722341\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000112\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223631722923722363\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223701722923722370\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223761722923722376\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000061\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224411722923722441\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000080\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355217521722923721752 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:00:39', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061400408481722924040848', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061355216531722923721653\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000011\", \"taskStatus\": 100, \"destination\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:00:41', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061400408831722924040883', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061355216121722923721612\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000033\", \"taskStatus\": 100, \"destination\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:00:41', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061400414141722924041414', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217521722923721752\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000073\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217561722923721756\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000049\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217621722923721762\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000083\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217741722923721774\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000024\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217821722923721782\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000077\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217891722923721789\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000025\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217961722923721796\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000038\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218021722923721802\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000031\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218621722923721862\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218811722923721881\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218901722923721890\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000053\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218971722923721897\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000048\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219041722923721904\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000093\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219111722923721911\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000100\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219181722923721918\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000062\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219251722923721925\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000057\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219321722923721932\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000052\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219391722923721939\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000029\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219461722923721946\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219511722923721951\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000059\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219571722923721957\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000074\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219631722923721963\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219691722923721969\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000188\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219761722923721976\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000118\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219821722923721982\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219961722923721996\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000067\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220631722923722063\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000193\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220711722923722071\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000166\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220761722923722076\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000168\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223411722923722341\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000112\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223631722923722363\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223701722923722370\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223761722923722376\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000061\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224411722923722441\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000080\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355217521722923721752 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:00:41', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061400434291722924043429', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217521722923721752\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000073\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217561722923721756\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000049\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217621722923721762\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000083\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217741722923721774\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000024\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217821722923721782\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000077\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217891722923721789\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000025\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217961722923721796\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000038\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218021722923721802\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000031\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218621722923721862\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218811722923721881\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218901722923721890\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000053\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218971722923721897\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000048\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219041722923721904\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000093\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219111722923721911\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000100\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219181722923721918\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000062\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219251722923721925\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000057\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219321722923721932\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000052\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219391722923721939\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000029\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219461722923721946\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219511722923721951\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000059\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219571722923721957\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000074\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219631722923721963\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219691722923721969\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000188\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219761722923721976\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000118\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219821722923721982\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219961722923721996\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000067\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220631722923722063\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000193\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220711722923722071\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000166\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220761722923722076\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000168\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223411722923722341\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000112\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223631722923722363\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223701722923722370\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223761722923722376\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000061\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224411722923722441\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000080\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355217521722923721752 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:00:43', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061400448071722924044807', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061355216741722923721674\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000097\", \"taskStatus\": 2, \"destination\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:00:45', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061400448131722924044813', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061355216931722923721693\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000088\", \"taskStatus\": 2, \"destination\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:00:45', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061400454251722924045425', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217521722923721752\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000073\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217561722923721756\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000049\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217621722923721762\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000083\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217741722923721774\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000024\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217821722923721782\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000077\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217891722923721789\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000025\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217961722923721796\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000038\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218021722923721802\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000031\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218621722923721862\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218811722923721881\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218901722923721890\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000053\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218971722923721897\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000048\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219041722923721904\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000093\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219111722923721911\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000100\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219181722923721918\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000062\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219251722923721925\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000057\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219321722923721932\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000052\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219391722923721939\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000029\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219461722923721946\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219511722923721951\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000059\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219571722923721957\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000074\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219631722923721963\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219691722923721969\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000188\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219761722923721976\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000118\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219821722923721982\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219961722923721996\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000067\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220631722923722063\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000193\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220711722923722071\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000166\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220761722923722076\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000168\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223411722923722341\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000112\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223631722923722363\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223701722923722370\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223761722923722376\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000061\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224411722923722441\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000080\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355217521722923721752 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:00:45', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061400474441722924047444', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217521722923721752\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000073\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217561722923721756\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000049\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217621722923721762\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000083\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217741722923721774\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000024\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217821722923721782\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000077\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217891722923721789\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000025\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217961722923721796\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000038\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218021722923721802\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000031\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218621722923721862\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218811722923721881\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218901722923721890\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000053\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218971722923721897\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000048\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219041722923721904\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000093\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219111722923721911\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000100\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219181722923721918\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000062\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219251722923721925\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000057\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219321722923721932\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000052\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219391722923721939\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000029\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219461722923721946\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219511722923721951\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000059\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219571722923721957\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000074\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219631722923721963\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219691722923721969\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000188\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219761722923721976\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000118\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219821722923721982\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219961722923721996\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000067\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220631722923722063\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000193\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220711722923722071\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000166\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220761722923722076\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000168\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223411722923722341\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000112\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223631722923722363\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223701722923722370\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223761722923722376\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000061\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224411722923722441\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000080\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355217521722923721752 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:00:47', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061400494591722924049459', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217521722923721752\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000073\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217561722923721756\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000049\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217621722923721762\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000083\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217741722923721774\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000024\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217821722923721782\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000077\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217891722923721789\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000025\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217961722923721796\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000038\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218021722923721802\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000031\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218621722923721862\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218811722923721881\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218901722923721890\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000053\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218971722923721897\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000048\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219041722923721904\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000093\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219111722923721911\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000100\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219181722923721918\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000062\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219251722923721925\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000057\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219321722923721932\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000052\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219391722923721939\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000029\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219461722923721946\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219511722923721951\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000059\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219571722923721957\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000074\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219631722923721963\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219691722923721969\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000188\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219761722923721976\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000118\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219821722923721982\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219961722923721996\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000067\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220631722923722063\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000193\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220711722923722071\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000166\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220761722923722076\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000168\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223411722923722341\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000112\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223631722923722363\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223701722923722370\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223761722923722376\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000061\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224411722923722441\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000080\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355217521722923721752 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:00:49', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061400514631722924051463', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217521722923721752\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000073\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217561722923721756\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000049\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217621722923721762\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000083\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217741722923721774\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000024\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217821722923721782\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000077\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217891722923721789\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000025\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217961722923721796\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000038\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218021722923721802\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000031\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218621722923721862\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218811722923721881\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218901722923721890\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000053\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218971722923721897\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000048\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219041722923721904\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000093\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219111722923721911\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000100\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219181722923721918\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000062\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219251722923721925\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000057\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219321722923721932\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000052\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219391722923721939\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000029\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219461722923721946\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219511722923721951\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000059\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219571722923721957\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000074\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219631722923721963\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219691722923721969\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000188\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219761722923721976\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000118\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219821722923721982\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219961722923721996\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000067\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220631722923722063\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000193\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220711722923722071\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000166\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220761722923722076\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000168\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223411722923722341\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000112\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223631722923722363\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223701722923722370\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223761722923722376\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000061\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224411722923722441\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000080\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355217521722923721752 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:00:51', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061400534751722924053475', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217521722923721752\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000073\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217561722923721756\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000049\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217621722923721762\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000083\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217741722923721774\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000024\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217821722923721782\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000077\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217891722923721789\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000025\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217961722923721796\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000038\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218021722923721802\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000031\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218621722923721862\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218811722923721881\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218901722923721890\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000053\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218971722923721897\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000048\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219041722923721904\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000093\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219111722923721911\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000100\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219181722923721918\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000062\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219251722923721925\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000057\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219321722923721932\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000052\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219391722923721939\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000029\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219461722923721946\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219511722923721951\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000059\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219571722923721957\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000074\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219631722923721963\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219691722923721969\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000188\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219761722923721976\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000118\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219821722923721982\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219961722923721996\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000067\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220631722923722063\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000193\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220711722923722071\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000166\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220761722923722076\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000168\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223411722923722341\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000112\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223631722923722363\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223701722923722370\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223761722923722376\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000061\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224411722923722441\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000080\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355217521722923721752 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:00:53', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061400554751722924055475', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217521722923721752\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000073\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217561722923721756\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000049\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217621722923721762\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000083\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217741722923721774\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000024\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217821722923721782\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000077\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217891722923721789\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000025\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217961722923721796\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000038\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218021722923721802\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000031\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218621722923721862\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218811722923721881\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218901722923721890\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000053\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218971722923721897\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000048\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219041722923721904\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000093\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219111722923721911\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000100\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219181722923721918\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000062\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219251722923721925\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000057\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219321722923721932\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000052\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219391722923721939\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000029\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219461722923721946\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219511722923721951\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000059\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219571722923721957\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000074\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219631722923721963\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219691722923721969\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000188\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219761722923721976\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000118\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219821722923721982\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219961722923721996\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000067\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220631722923722063\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000193\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220711722923722071\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000166\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220761722923722076\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000168\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223411722923722341\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000112\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223631722923722363\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223701722923722370\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223761722923722376\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000061\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224411722923722441\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000080\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355217521722923721752 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:00:55', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061400574751722924057475', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217521722923721752\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000073\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217561722923721756\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000049\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217621722923721762\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000083\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217741722923721774\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000024\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217821722923721782\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000077\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217891722923721789\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000025\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217961722923721796\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000038\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218021722923721802\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000031\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218621722923721862\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218811722923721881\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218901722923721890\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000053\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218971722923721897\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000048\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219041722923721904\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000093\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219111722923721911\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000100\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219181722923721918\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000062\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219251722923721925\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000057\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219321722923721932\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000052\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219391722923721939\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000029\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219461722923721946\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219511722923721951\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000059\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219571722923721957\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000074\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219631722923721963\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219691722923721969\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000188\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219761722923721976\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000118\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219821722923721982\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219961722923721996\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000067\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220631722923722063\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000193\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220711722923722071\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000166\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220761722923722076\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000168\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223411722923722341\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000112\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223631722923722363\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223701722923722370\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223761722923722376\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000061\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224411722923722441\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000080\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355217521722923721752 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:00:57', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061400588531722924058853', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061355219041722923721904\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000093\", \"taskStatus\": 2, \"destination\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:00:59', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061400588611722924058861', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061355219181722923721918\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000062\", \"taskStatus\": 2, \"destination\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:00:59', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061400596241722924059624', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217521722923721752\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000073\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217561722923721756\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000049\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217621722923721762\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000083\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217741722923721774\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000024\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217821722923721782\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000077\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217891722923721789\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000025\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217961722923721796\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000038\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218021722923721802\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000031\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218621722923721862\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218811722923721881\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218901722923721890\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000053\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218971722923721897\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000048\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219111722923721911\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000100\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219251722923721925\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000057\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219321722923721932\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000052\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219391722923721939\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000029\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219461722923721946\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219511722923721951\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000059\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219571722923721957\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000074\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219631722923721963\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219691722923721969\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000188\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219761722923721976\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000118\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219821722923721982\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219961722923721996\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000067\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220631722923722063\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000193\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220711722923722071\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000166\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220761722923722076\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000168\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223411722923722341\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000112\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223631722923722363\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223701722923722370\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223761722923722376\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000061\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224411722923722441\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000080\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355217521722923721752 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:01:00', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061401015271722924061527', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217521722923721752\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000073\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217561722923721756\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000049\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217621722923721762\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000083\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217741722923721774\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000024\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217821722923721782\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000077\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217891722923721789\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000025\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217961722923721796\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000038\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218021722923721802\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000031\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218621722923721862\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218811722923721881\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218901722923721890\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000053\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218971722923721897\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000048\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219111722923721911\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000100\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219251722923721925\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000057\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219321722923721932\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000052\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219391722923721939\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000029\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219461722923721946\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219511722923721951\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000059\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219571722923721957\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000074\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219631722923721963\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219691722923721969\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000188\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219761722923721976\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000118\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219821722923721982\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219961722923721996\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000067\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220631722923722063\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000193\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220711722923722071\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000166\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220761722923722076\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000168\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223411722923722341\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000112\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223631722923722363\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223701722923722370\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223761722923722376\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000061\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224411722923722441\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000080\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355217521722923721752 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:01:02', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061401035001722924063500', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217521722923721752\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000073\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217561722923721756\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000049\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217621722923721762\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000083\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217741722923721774\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000024\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217821722923721782\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000077\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217891722923721789\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000025\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217961722923721796\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000038\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218021722923721802\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000031\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218621722923721862\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218811722923721881\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218901722923721890\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000053\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218971722923721897\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000048\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219111722923721911\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000100\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219251722923721925\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000057\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219321722923721932\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000052\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219391722923721939\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000029\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219461722923721946\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219511722923721951\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000059\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219571722923721957\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000074\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219631722923721963\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219691722923721969\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000188\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219761722923721976\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000118\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219821722923721982\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219961722923721996\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000067\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220631722923722063\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000193\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220711722923722071\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000166\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220761722923722076\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000168\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223411722923722341\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000112\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223631722923722363\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223701722923722370\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223761722923722376\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000061\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224411722923722441\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000080\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355217521722923721752 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:01:04', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061401038081722924063808', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061355217021722923721702\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000020\", \"taskStatus\": 100, \"destination\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:01:04', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061401055171722924065517', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217521722923721752\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000073\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217561722923721756\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000049\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217621722923721762\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000083\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217741722923721774\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000024\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217821722923721782\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000077\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217891722923721789\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000025\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217961722923721796\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000038\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218021722923721802\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000031\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218621722923721862\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218811722923721881\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218901722923721890\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000053\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218971722923721897\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000048\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219111722923721911\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000100\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219251722923721925\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000057\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219321722923721932\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000052\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219391722923721939\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000029\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219461722923721946\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219511722923721951\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000059\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219571722923721957\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000074\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219631722923721963\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219691722923721969\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000188\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219761722923721976\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000118\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219821722923721982\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219961722923721996\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000067\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220631722923722063\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000193\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220711722923722071\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000166\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220761722923722076\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000168\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223411722923722341\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000112\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223631722923722363\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223701722923722370\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223761722923722376\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000061\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224411722923722441\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000080\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355217521722923721752 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:01:06', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061401059631722924065963', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061355216881722923721688\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000099\", \"taskStatus\": 2, \"destination\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:01:06', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061401059821722924065982', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061355217271722923721727\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000060\", \"taskStatus\": 2, \"destination\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:01:06', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061401075291722924067529', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217521722923721752\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000073\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217561722923721756\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000049\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217621722923721762\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000083\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217741722923721774\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000024\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217821722923721782\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000077\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217891722923721789\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000025\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217961722923721796\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000038\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218021722923721802\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000031\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218621722923721862\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218811722923721881\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218901722923721890\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000053\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218971722923721897\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000048\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219111722923721911\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000100\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219251722923721925\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000057\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219321722923721932\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000052\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219391722923721939\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000029\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219461722923721946\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219511722923721951\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000059\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219571722923721957\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000074\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219631722923721963\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219691722923721969\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000188\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219761722923721976\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000118\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219821722923721982\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219961722923721996\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000067\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220631722923722063\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000193\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220711722923722071\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000166\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220761722923722076\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000168\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223411722923722341\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000112\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223631722923722363\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223701722923722370\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223761722923722376\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000061\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224411722923722441\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000080\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355217521722923721752 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:01:08', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061401095261722924069526', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217521722923721752\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000073\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217561722923721756\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000049\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217621722923721762\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000083\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217741722923721774\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000024\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217821722923721782\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000077\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217891722923721789\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000025\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217961722923721796\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000038\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218021722923721802\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000031\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218621722923721862\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218811722923721881\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218901722923721890\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000053\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218971722923721897\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000048\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219111722923721911\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000100\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219251722923721925\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000057\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219321722923721932\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000052\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219391722923721939\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000029\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219461722923721946\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219511722923721951\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000059\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219571722923721957\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000074\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219631722923721963\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219691722923721969\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000188\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219761722923721976\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000118\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219821722923721982\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219961722923721996\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000067\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220631722923722063\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000193\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220711722923722071\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000166\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220761722923722076\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000168\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223411722923722341\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000112\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223631722923722363\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223701722923722370\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223761722923722376\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000061\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224411722923722441\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000080\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355217521722923721752 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:01:10', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061401097801722924069780', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061355217231722923721723\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000064\", \"taskStatus\": 100, \"destination\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:01:10', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061401098221722924069822', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061355217091722923721709\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000098\", \"taskStatus\": 100, \"destination\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:01:10', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061401115561722924071556', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217521722923721752\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000073\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217561722923721756\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000049\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217621722923721762\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000083\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217741722923721774\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000024\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217821722923721782\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000077\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217891722923721789\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000025\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217961722923721796\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000038\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218021722923721802\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000031\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218621722923721862\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218811722923721881\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218901722923721890\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000053\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218971722923721897\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000048\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219111722923721911\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000100\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219251722923721925\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000057\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219321722923721932\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000052\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219391722923721939\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000029\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219461722923721946\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219511722923721951\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000059\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219571722923721957\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000074\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219631722923721963\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219691722923721969\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000188\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219761722923721976\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000118\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219821722923721982\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219961722923721996\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000067\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220631722923722063\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000193\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220711722923722071\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000166\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220761722923722076\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000168\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223411722923722341\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000112\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223631722923722363\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223701722923722370\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223761722923722376\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000061\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224411722923722441\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000080\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355217521722923721752 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:01:12', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061401133671722924073367', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061355217321722923721732\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000050\", \"taskStatus\": 2, \"destination\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:01:13', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061401133701722924073370', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061355217481722923721748\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000058\", \"taskStatus\": 2, \"destination\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:01:13', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061401135501722924073550', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217521722923721752\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000073\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217561722923721756\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000049\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217621722923721762\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000083\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217741722923721774\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000024\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217821722923721782\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000077\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217891722923721789\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000025\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217961722923721796\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000038\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218021722923721802\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000031\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218621722923721862\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218811722923721881\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218901722923721890\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000053\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218971722923721897\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000048\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219111722923721911\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000100\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219251722923721925\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000057\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219321722923721932\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000052\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219391722923721939\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000029\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219461722923721946\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219511722923721951\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000059\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219571722923721957\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000074\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219631722923721963\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219691722923721969\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000188\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219761722923721976\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000118\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219821722923721982\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219961722923721996\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000067\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220631722923722063\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000193\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220711722923722071\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000166\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220761722923722076\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000168\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223411722923722341\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000112\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223631722923722363\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223701722923722370\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223761722923722376\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000061\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224411722923722441\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000080\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355217521722923721752 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:01:14', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061401155381722924075538', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217521722923721752\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000073\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217561722923721756\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000049\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217621722923721762\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000083\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217741722923721774\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000024\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217821722923721782\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000077\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217891722923721789\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000025\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217961722923721796\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000038\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218021722923721802\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000031\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218621722923721862\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218811722923721881\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218901722923721890\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000053\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218971722923721897\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000048\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219111722923721911\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000100\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219251722923721925\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000057\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219321722923721932\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000052\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219391722923721939\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000029\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219461722923721946\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219511722923721951\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000059\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219571722923721957\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000074\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219631722923721963\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219691722923721969\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000188\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219761722923721976\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000118\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219821722923721982\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219961722923721996\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000067\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220631722923722063\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000193\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220711722923722071\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000166\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220761722923722076\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000168\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223411722923722341\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000112\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223631722923722363\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223701722923722370\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223761722923722376\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000061\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224411722923722441\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000080\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355217521722923721752 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:01:16', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061401175541722924077554', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217521722923721752\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000073\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217561722923721756\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000049\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217621722923721762\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000083\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217741722923721774\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000024\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217821722923721782\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000077\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217891722923721789\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000025\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217961722923721796\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000038\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218021722923721802\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000031\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218621722923721862\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218811722923721881\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218901722923721890\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000053\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218971722923721897\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000048\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219111722923721911\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000100\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219251722923721925\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000057\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219321722923721932\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000052\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219391722923721939\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000029\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219461722923721946\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219511722923721951\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000059\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219571722923721957\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000074\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219631722923721963\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219691722923721969\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000188\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219761722923721976\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000118\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219821722923721982\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219961722923721996\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000067\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220631722923722063\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000193\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220711722923722071\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000166\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220761722923722076\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000168\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223411722923722341\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000112\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223631722923722363\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223701722923722370\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223761722923722376\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000061\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224411722923722441\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000080\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355217521722923721752 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:01:18', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061401195841722924079584', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217521722923721752\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000073\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217561722923721756\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000049\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217621722923721762\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000083\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217741722923721774\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000024\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217821722923721782\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000077\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217891722923721789\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000025\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217961722923721796\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000038\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218021722923721802\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000031\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218621722923721862\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218811722923721881\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218901722923721890\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000053\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218971722923721897\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000048\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219111722923721911\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000100\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219251722923721925\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000057\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219321722923721932\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000052\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219391722923721939\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000029\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219461722923721946\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219511722923721951\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000059\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219571722923721957\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000074\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219631722923721963\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219691722923721969\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000188\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219761722923721976\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000118\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219821722923721982\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219961722923721996\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000067\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220631722923722063\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000193\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220711722923722071\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000166\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220761722923722076\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000168\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223411722923722341\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000112\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223631722923722363\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223701722923722370\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223761722923722376\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000061\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224411722923722441\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000080\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355217521722923721752 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:01:20', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061401215751722924081575', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217521722923721752\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000073\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217561722923721756\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000049\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217621722923721762\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000083\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217741722923721774\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000024\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217821722923721782\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000077\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217891722923721789\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000025\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217961722923721796\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000038\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218021722923721802\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000031\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218621722923721862\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218811722923721881\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218901722923721890\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000053\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218971722923721897\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000048\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219111722923721911\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000100\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219251722923721925\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000057\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219321722923721932\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000052\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219391722923721939\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000029\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219461722923721946\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219511722923721951\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000059\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219571722923721957\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000074\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219631722923721963\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219691722923721969\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000188\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219761722923721976\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000118\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219821722923721982\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219961722923721996\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000067\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220631722923722063\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000193\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220711722923722071\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000166\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220761722923722076\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000168\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223411722923722341\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000112\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223631722923722363\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223701722923722370\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223761722923722376\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000061\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224411722923722441\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000080\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355217521722923721752 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:01:22', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061401235971722924083597', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217521722923721752\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000073\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217561722923721756\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000049\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217621722923721762\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000083\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217741722923721774\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000024\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217821722923721782\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000077\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217891722923721789\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000025\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217961722923721796\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000038\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218021722923721802\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000031\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218621722923721862\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218811722923721881\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218901722923721890\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000053\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218971722923721897\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000048\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219111722923721911\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000100\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219251722923721925\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000057\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219321722923721932\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000052\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219391722923721939\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000029\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219461722923721946\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219511722923721951\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000059\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219571722923721957\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000074\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219631722923721963\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219691722923721969\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000188\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219761722923721976\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000118\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219821722923721982\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219961722923721996\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000067\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220631722923722063\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000193\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220711722923722071\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000166\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220761722923722076\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000168\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223411722923722341\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000112\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223631722923722363\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223701722923722370\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223761722923722376\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000061\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224411722923722441\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000080\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355217521722923721752 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:01:24', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061401238041722924083804', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061355216931722923721693\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000088\", \"taskStatus\": 100, \"destination\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:01:24', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061401247901722924084790', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061355216741722923721674\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000097\", \"taskStatus\": 100, \"destination\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:01:25', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061401256231722924085623', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217521722923721752\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000073\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217561722923721756\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000049\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217621722923721762\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000083\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217741722923721774\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000024\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217821722923721782\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000077\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217891722923721789\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000025\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217961722923721796\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000038\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218021722923721802\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000031\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218621722923721862\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218811722923721881\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218901722923721890\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000053\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218971722923721897\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000048\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219111722923721911\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000100\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219251722923721925\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000057\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219321722923721932\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000052\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219391722923721939\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000029\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219461722923721946\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219511722923721951\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000059\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219571722923721957\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000074\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219631722923721963\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219691722923721969\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000188\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219761722923721976\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000118\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219821722923721982\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219961722923721996\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000067\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220631722923722063\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000193\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220711722923722071\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000166\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220761722923722076\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000168\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223411722923722341\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000112\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223631722923722363\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223701722923722370\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223761722923722376\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000061\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224411722923722441\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000080\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355217521722923721752 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:01:26', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061401275991722924087599', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217521722923721752\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000073\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217561722923721756\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000049\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217621722923721762\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000083\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217741722923721774\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000024\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217821722923721782\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000077\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217891722923721789\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000025\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217961722923721796\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000038\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218021722923721802\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000031\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218621722923721862\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218811722923721881\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218901722923721890\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000053\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218971722923721897\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000048\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219111722923721911\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000100\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219251722923721925\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000057\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219321722923721932\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000052\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219391722923721939\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000029\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219461722923721946\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219511722923721951\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000059\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219571722923721957\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000074\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219631722923721963\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219691722923721969\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000188\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219761722923721976\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000118\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219821722923721982\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219961722923721996\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000067\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220631722923722063\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000193\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220711722923722071\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000166\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220761722923722076\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000168\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223411722923722341\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000112\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223631722923722363\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223701722923722370\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223761722923722376\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000061\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224411722923722441\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000080\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355217521722923721752 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:01:28', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061401278431722924087843', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061355217181722923721718\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000063\", \"taskStatus\": 2, \"destination\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:01:28', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061401297081722924089708', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217521722923721752\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000073\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217561722923721756\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000049\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217621722923721762\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000083\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217741722923721774\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000024\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217821722923721782\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000077\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217891722923721789\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000025\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217961722923721796\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000038\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218021722923721802\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000031\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218621722923721862\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218811722923721881\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218901722923721890\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000053\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218971722923721897\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000048\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219111722923721911\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000100\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219251722923721925\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000057\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219321722923721932\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000052\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219391722923721939\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000029\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219461722923721946\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219511722923721951\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000059\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219571722923721957\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000074\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219631722923721963\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219691722923721969\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000188\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219761722923721976\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000118\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219821722923721982\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219961722923721996\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000067\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220631722923722063\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000193\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220711722923722071\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000166\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220761722923722076\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000168\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223411722923722341\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000112\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223631722923722363\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223701722923722370\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223761722923722376\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000061\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224411722923722441\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000080\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355217521722923721752 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:01:30', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061401316591722924091659', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217521722923721752\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000073\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217561722923721756\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000049\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217621722923721762\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000083\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217741722923721774\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000024\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217821722923721782\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000077\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217891722923721789\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000025\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217961722923721796\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000038\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218021722923721802\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000031\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218621722923721862\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218811722923721881\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218901722923721890\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000053\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218971722923721897\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000048\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219111722923721911\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000100\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219251722923721925\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000057\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219321722923721932\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000052\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219391722923721939\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000029\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219461722923721946\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219511722923721951\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000059\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219571722923721957\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000074\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219631722923721963\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219691722923721969\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000188\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219761722923721976\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000118\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219821722923721982\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219961722923721996\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000067\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220631722923722063\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000193\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220711722923722071\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000166\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220761722923722076\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000168\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223411722923722341\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000112\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223631722923722363\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223701722923722370\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223761722923722376\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000061\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224411722923722441\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000080\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355217521722923721752 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:01:32', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061401336391722924093639', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217521722923721752\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000073\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217561722923721756\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000049\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217621722923721762\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000083\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217741722923721774\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000024\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217821722923721782\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000077\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217891722923721789\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000025\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217961722923721796\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000038\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218021722923721802\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000031\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218621722923721862\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218811722923721881\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218901722923721890\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000053\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218971722923721897\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000048\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219111722923721911\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000100\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219251722923721925\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000057\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219321722923721932\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000052\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219391722923721939\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000029\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219461722923721946\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219511722923721951\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000059\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219571722923721957\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000074\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219631722923721963\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219691722923721969\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000188\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219761722923721976\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000118\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219821722923721982\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219961722923721996\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000067\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220631722923722063\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000193\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220711722923722071\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000166\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220761722923722076\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000168\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223411722923722341\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000112\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223631722923722363\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223701722923722370\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223761722923722376\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000061\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224411722923722441\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000080\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355217521722923721752 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:01:34', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061401356521722924095652', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217521722923721752\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000073\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217561722923721756\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000049\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217621722923721762\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000083\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217741722923721774\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000024\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217821722923721782\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000077\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217891722923721789\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000025\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217961722923721796\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000038\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218021722923721802\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000031\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218621722923721862\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218811722923721881\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218901722923721890\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000053\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218971722923721897\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000048\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219111722923721911\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000100\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219251722923721925\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000057\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219321722923721932\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000052\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219391722923721939\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000029\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219461722923721946\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219511722923721951\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000059\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219571722923721957\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000074\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219631722923721963\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219691722923721969\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000188\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219761722923721976\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000118\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219821722923721982\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219961722923721996\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000067\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220631722923722063\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000193\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220711722923722071\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000166\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220761722923722076\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000168\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223411722923722341\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000112\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223631722923722363\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223701722923722370\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223761722923722376\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000061\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224411722923722441\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000080\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355217521722923721752 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:01:36', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061401370141722924097014', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000037\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '10.90.106.61', '2024-08-06 14:01:37', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061401376821722924097682', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"07-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401370081722924097008\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000037\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217521722923721752\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000073\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217561722923721756\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000049\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217621722923721762\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000083\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217741722923721774\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000024\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217821722923721782\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000077\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217891722923721789\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000025\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217961722923721796\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000038\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218021722923721802\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000031\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218621722923721862\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218811722923721881\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218901722923721890\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000053\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218971722923721897\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000048\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219111722923721911\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000100\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219251722923721925\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000057\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219321722923721932\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000052\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219391722923721939\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000029\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219461722923721946\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219511722923721951\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000059\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219571722923721957\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000074\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219631722923721963\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219691722923721969\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000188\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219761722923721976\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000118\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219821722923721982\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219961722923721996\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000067\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220631722923722063\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000193\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220711722923722071\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000166\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220761722923722076\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000168\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223411722923722341\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000112\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223631722923722363\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223701722923722370\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223761722923722376\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000061\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224411722923722441\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000080\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355217521722923721752 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:01:38', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061401387931722924098793', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061355219181722923721918\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000062\", \"taskStatus\": 100, \"destination\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:01:39', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061401388041722924098804', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061355219041722923721904\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000093\", \"taskStatus\": 100, \"destination\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:01:39', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061401396821722924099682', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"07-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401370081722924097008\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000037\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217521722923721752\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000073\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217561722923721756\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000049\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217621722923721762\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000083\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217741722923721774\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000024\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217821722923721782\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000077\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217891722923721789\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000025\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217961722923721796\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000038\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218021722923721802\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000031\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218621722923721862\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218811722923721881\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218901722923721890\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000053\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218971722923721897\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000048\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219111722923721911\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000100\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219251722923721925\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000057\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219321722923721932\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000052\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219391722923721939\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000029\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219461722923721946\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219511722923721951\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000059\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219571722923721957\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000074\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219631722923721963\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219691722923721969\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000188\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219761722923721976\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000118\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219821722923721982\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219961722923721996\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000067\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220631722923722063\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000193\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220711722923722071\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000166\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220761722923722076\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000168\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223411722923722341\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000112\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223631722923722363\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223701722923722370\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223761722923722376\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000061\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224411722923722441\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000080\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355217521722923721752 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:01:40', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061401417121722924101712', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"07-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401370081722924097008\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000037\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217521722923721752\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000073\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217561722923721756\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000049\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217621722923721762\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000083\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217741722923721774\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000024\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217821722923721782\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000077\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217891722923721789\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000025\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217961722923721796\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000038\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218021722923721802\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000031\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218621722923721862\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218811722923721881\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218901722923721890\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000053\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218971722923721897\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000048\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219111722923721911\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000100\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219251722923721925\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000057\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219321722923721932\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000052\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219391722923721939\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000029\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219461722923721946\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219511722923721951\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000059\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219571722923721957\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000074\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219631722923721963\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219691722923721969\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000188\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219761722923721976\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000118\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219821722923721982\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219961722923721996\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000067\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220631722923722063\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000193\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220711722923722071\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000166\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220761722923722076\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000168\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223411722923722341\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000112\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223631722923722363\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223701722923722370\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223761722923722376\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000061\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224411722923722441\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000080\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355217521722923721752 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:01:42', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061401423111722924102311', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061355219251722923721925\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000057\", \"taskStatus\": 2, \"destination\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:01:42', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061401423491722924102349', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061355219391722923721939\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000029\", \"taskStatus\": 2, \"destination\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:01:42', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061401436051722924103605', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000002\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '10.90.106.61', '2024-08-06 14:01:44', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061401437011722924103701', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"07-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401370081722924097008\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000037\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401436021722924103602\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000002\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217521722923721752\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000073\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217561722923721756\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000049\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217621722923721762\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000083\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217741722923721774\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000024\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217821722923721782\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000077\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217891722923721789\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000025\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217961722923721796\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000038\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218021722923721802\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000031\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218621722923721862\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218811722923721881\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218901722923721890\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000053\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218971722923721897\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000048\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219111722923721911\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000100\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219321722923721932\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000052\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219461722923721946\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219511722923721951\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000059\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219571722923721957\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000074\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219631722923721963\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219691722923721969\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000188\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219761722923721976\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000118\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219821722923721982\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219961722923721996\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000067\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220631722923722063\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000193\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220711722923722071\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000166\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220761722923722076\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000168\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223411722923722341\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000112\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223631722923722363\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223701722923722370\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223761722923722376\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000061\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224411722923722441\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000080\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355217521722923721752 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:01:44', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061401456961722924105696', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"07-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401370081722924097008\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000037\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401436021722924103602\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000002\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217521722923721752\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000073\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217561722923721756\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000049\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217621722923721762\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000083\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217741722923721774\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000024\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217821722923721782\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000077\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217891722923721789\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000025\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217961722923721796\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000038\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218021722923721802\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000031\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218621722923721862\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218811722923721881\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218901722923721890\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000053\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218971722923721897\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000048\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219111722923721911\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000100\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219321722923721932\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000052\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219461722923721946\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219511722923721951\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000059\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219571722923721957\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000074\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219631722923721963\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219691722923721969\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000188\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219761722923721976\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000118\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219821722923721982\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219961722923721996\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000067\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220631722923722063\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000193\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220711722923722071\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000166\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220761722923722076\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000168\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223411722923722341\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000112\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223631722923722363\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223701722923722370\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223761722923722376\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000061\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224411722923722441\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000080\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355217521722923721752 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:01:46', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061401470701722924107070', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061355216881722923721688\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000099\", \"taskStatus\": 100, \"destination\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:01:47', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061401473651722924107365', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061355217271722923721727\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000060\", \"taskStatus\": 100, \"destination\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:01:47', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061401477121722924107712', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"07-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401370081722924097008\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000037\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401436021722924103602\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000002\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217521722923721752\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000073\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217561722923721756\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000049\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217621722923721762\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000083\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217741722923721774\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000024\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217821722923721782\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000077\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217891722923721789\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000025\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217961722923721796\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000038\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218021722923721802\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000031\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218621722923721862\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218811722923721881\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218901722923721890\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000053\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218971722923721897\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000048\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219111722923721911\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000100\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219321722923721932\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000052\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219461722923721946\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219511722923721951\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000059\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219571722923721957\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000074\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219631722923721963\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219691722923721969\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000188\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219761722923721976\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000118\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219821722923721982\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219961722923721996\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000067\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220631722923722063\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000193\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220711722923722071\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000166\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220761722923722076\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000168\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223411722923722341\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000112\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223631722923722363\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223701722923722370\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223761722923722376\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000061\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224411722923722441\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000080\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355217521722923721752 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:01:48', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061401497151722924109715', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"07-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401370081722924097008\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000037\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401436021722924103602\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000002\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217521722923721752\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000073\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217561722923721756\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000049\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217621722923721762\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000083\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217741722923721774\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000024\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217821722923721782\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000077\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217891722923721789\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000025\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217961722923721796\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000038\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218021722923721802\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000031\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218621722923721862\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218811722923721881\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218901722923721890\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000053\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218971722923721897\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000048\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219111722923721911\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000100\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219321722923721932\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000052\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219461722923721946\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219511722923721951\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000059\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219571722923721957\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000074\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219631722923721963\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219691722923721969\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000188\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219761722923721976\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000118\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219821722923721982\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219961722923721996\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000067\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220631722923722063\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000193\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220711722923722071\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000166\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220761722923722076\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000168\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223411722923722341\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000112\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223631722923722363\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223701722923722370\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223761722923722376\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000061\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224411722923722441\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000080\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355217521722923721752 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:01:50', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061401497751722924109775', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000006\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '10.90.106.61', '2024-08-06 14:01:50', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061401509601722924110960', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061355219111722923721911\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000100\", \"taskStatus\": 2, \"destination\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:01:51', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061401517351722924111735', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"07-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401370081722924097008\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000037\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401436021722924103602\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000002\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401497731722924109773\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000006\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217521722923721752\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000073\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217561722923721756\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000049\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217621722923721762\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000083\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217741722923721774\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000024\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217821722923721782\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000077\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217891722923721789\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000025\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217961722923721796\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000038\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218021722923721802\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000031\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218621722923721862\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218811722923721881\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218901722923721890\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000053\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218971722923721897\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000048\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219321722923721932\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000052\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219461722923721946\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219511722923721951\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000059\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219571722923721957\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000074\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219631722923721963\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219691722923721969\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000188\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219761722923721976\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000118\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219821722923721982\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219961722923721996\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000067\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220631722923722063\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000193\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220711722923722071\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000166\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220761722923722076\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000168\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223411722923722341\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000112\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223631722923722363\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223701722923722370\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223761722923722376\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000061\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224411722923722441\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000080\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355217521722923721752 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:01:52', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061401537581722924113758', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"07-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401370081722924097008\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000037\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401436021722924103602\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000002\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401497731722924109773\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000006\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217521722923721752\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000073\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217561722923721756\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000049\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217621722923721762\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000083\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217741722923721774\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000024\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217821722923721782\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000077\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217891722923721789\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000025\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217961722923721796\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000038\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218021722923721802\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000031\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218621722923721862\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218811722923721881\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218901722923721890\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000053\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218971722923721897\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000048\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219321722923721932\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000052\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219461722923721946\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219511722923721951\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000059\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219571722923721957\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000074\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219631722923721963\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219691722923721969\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000188\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219761722923721976\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000118\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219821722923721982\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219961722923721996\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000067\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220631722923722063\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000193\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220711722923722071\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000166\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220761722923722076\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000168\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223411722923722341\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000112\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223631722923722363\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223701722923722370\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223761722923722376\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000061\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224411722923722441\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000080\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355217521722923721752 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:01:54', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061401552771722924115277', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000143\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '10.90.106.61', '2024-08-06 14:01:55', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061401557711722924115771', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"07-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401370081722924097008\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000037\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401436021722924103602\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000002\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401497731722924109773\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000006\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401552741722924115274\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000143\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217521722923721752\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000073\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217561722923721756\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000049\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217621722923721762\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000083\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217741722923721774\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000024\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217821722923721782\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000077\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217891722923721789\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000025\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217961722923721796\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000038\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218021722923721802\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000031\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218621722923721862\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218811722923721881\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218901722923721890\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000053\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218971722923721897\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000048\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219321722923721932\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000052\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219461722923721946\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219511722923721951\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000059\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219571722923721957\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000074\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219631722923721963\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219691722923721969\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000188\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219761722923721976\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000118\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219821722923721982\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219961722923721996\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000067\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220631722923722063\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000193\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220711722923722071\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000166\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220761722923722076\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000168\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223411722923722341\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000112\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223631722923722363\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223701722923722370\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223761722923722376\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000061\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224411722923722441\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000080\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355217521722923721752 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:01:56', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061401558251722924115825', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061355217181722923721718\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000063\", \"taskStatus\": 100, \"destination\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:01:56', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061401577571722924117757', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"07-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401370081722924097008\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000037\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401436021722924103602\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000002\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401497731722924109773\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000006\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401552741722924115274\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000143\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217521722923721752\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000073\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217561722923721756\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000049\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217621722923721762\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000083\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217741722923721774\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000024\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217821722923721782\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000077\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217891722923721789\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000025\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217961722923721796\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000038\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218021722923721802\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000031\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218621722923721862\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218811722923721881\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218901722923721890\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000053\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218971722923721897\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000048\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219321722923721932\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000052\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219461722923721946\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219511722923721951\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000059\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219571722923721957\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000074\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219631722923721963\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219691722923721969\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000188\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219761722923721976\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000118\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219821722923721982\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219961722923721996\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000067\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220631722923722063\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000193\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220711722923722071\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000166\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220761722923722076\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000168\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223411722923722341\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000112\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223631722923722363\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223701722923722370\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223761722923722376\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000061\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224411722923722441\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000080\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355217521722923721752 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:01:58', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061401578791722924117879', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061355217061722923721706\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000092\", \"taskStatus\": 2, \"destination\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:01:58', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061401597861722924119786', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"07-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401370081722924097008\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000037\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401436021722924103602\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000002\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401497731722924109773\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000006\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401552741722924115274\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000143\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217521722923721752\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000073\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217561722923721756\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000049\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217621722923721762\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000083\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217741722923721774\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000024\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217821722923721782\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000077\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217891722923721789\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000025\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217961722923721796\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000038\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218021722923721802\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000031\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218621722923721862\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218811722923721881\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218901722923721890\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000053\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218971722923721897\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000048\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219321722923721932\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000052\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219461722923721946\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219511722923721951\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000059\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219571722923721957\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000074\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219631722923721963\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219691722923721969\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000188\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219761722923721976\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000118\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219821722923721982\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219961722923721996\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000067\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220631722923722063\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000193\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220711722923722071\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000166\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220761722923722076\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000168\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223411722923722341\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000112\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223631722923722363\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223701722923722370\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223761722923722376\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000061\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224411722923722441\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000080\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355217521722923721752 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:02:00', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061401598091722924119809', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061355217321722923721732\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000050\", \"taskStatus\": 100, \"destination\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:02:00', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061401598511722924119851', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061355217481722923721748\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000058\", \"taskStatus\": 100, \"destination\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:02:00', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061402007301722924120730', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000087\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '10.90.106.61', '2024-08-06 14:02:01', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061402017821722924121782', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"07-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401370081722924097008\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000037\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401436021722924103602\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000002\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401497731722924109773\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000006\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401552741722924115274\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000143\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402007281722924120728\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000087\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217521722923721752\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000073\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217561722923721756\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000049\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217621722923721762\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000083\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217741722923721774\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000024\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217821722923721782\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000077\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217891722923721789\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000025\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217961722923721796\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000038\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218021722923721802\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000031\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218621722923721862\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218811722923721881\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218901722923721890\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000053\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218971722923721897\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000048\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219321722923721932\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000052\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219461722923721946\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219511722923721951\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000059\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219571722923721957\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000074\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219631722923721963\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219691722923721969\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000188\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219761722923721976\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000118\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219821722923721982\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219961722923721996\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000067\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220631722923722063\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000193\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220711722923722071\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000166\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220761722923722076\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000168\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223411722923722341\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000112\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223631722923722363\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223701722923722370\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223761722923722376\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000061\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224411722923722441\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000080\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355217521722923721752 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:02:02', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061402029411722924122941', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061355217561722923721756\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000049\", \"taskStatus\": 2, \"destination\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:02:03', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061402029511722924122951', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061355217741722923721774\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000024\", \"taskStatus\": 2, \"destination\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:02:03', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061402037891722924123789', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"07-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401370081722924097008\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000037\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401436021722924103602\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000002\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401497731722924109773\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000006\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401552741722924115274\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000143\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402007281722924120728\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000087\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217521722923721752\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000073\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217621722923721762\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000083\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217821722923721782\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000077\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217891722923721789\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000025\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217961722923721796\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000038\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218021722923721802\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000031\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218621722923721862\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218811722923721881\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218901722923721890\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000053\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218971722923721897\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000048\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219321722923721932\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000052\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219461722923721946\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219511722923721951\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000059\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219571722923721957\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000074\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219631722923721963\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219691722923721969\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000188\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219761722923721976\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000118\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219821722923721982\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219961722923721996\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000067\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220631722923722063\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000193\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220711722923722071\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000166\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220761722923722076\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000168\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223411722923722341\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000112\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223631722923722363\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223701722923722370\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223761722923722376\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000061\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224411722923722441\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000080\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355217521722923721752 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:02:04', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061402058061722924125806', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"07-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401370081722924097008\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000037\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401436021722924103602\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000002\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401497731722924109773\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000006\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401552741722924115274\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000143\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402007281722924120728\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000087\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217521722923721752\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000073\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217621722923721762\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000083\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217821722923721782\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000077\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217891722923721789\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000025\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217961722923721796\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000038\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218021722923721802\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000031\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218621722923721862\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218811722923721881\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218901722923721890\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000053\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218971722923721897\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000048\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219321722923721932\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000052\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219461722923721946\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219511722923721951\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000059\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219571722923721957\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000074\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219631722923721963\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219691722923721969\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000188\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219761722923721976\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000118\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219821722923721982\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219961722923721996\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000067\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220631722923722063\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000193\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220711722923722071\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000166\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220761722923722076\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000168\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223411722923722341\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000112\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223631722923722363\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223701722923722370\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223761722923722376\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000061\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224411722923722441\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000080\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355217521722923721752 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:02:06', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061402078021722924127802', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"07-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401370081722924097008\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000037\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401436021722924103602\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000002\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401497731722924109773\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000006\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401552741722924115274\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000143\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402007281722924120728\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000087\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217521722923721752\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000073\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217621722923721762\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000083\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217821722923721782\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000077\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217891722923721789\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000025\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217961722923721796\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000038\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218021722923721802\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000031\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218621722923721862\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218811722923721881\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218901722923721890\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000053\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218971722923721897\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000048\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219321722923721932\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000052\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219461722923721946\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219511722923721951\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000059\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219571722923721957\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000074\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219631722923721963\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219691722923721969\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000188\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219761722923721976\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000118\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219821722923721982\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219961722923721996\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000067\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220631722923722063\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000193\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220711722923722071\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000166\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220761722923722076\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000168\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223411722923722341\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000112\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223631722923722363\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223701722923722370\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223761722923722376\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000061\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224411722923722441\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000080\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355217521722923721752 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:02:08', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061402098551722924129855', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"07-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401370081722924097008\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000037\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401436021722924103602\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000002\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401497731722924109773\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000006\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401552741722924115274\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000143\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402007281722924120728\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000087\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217521722923721752\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000073\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217621722923721762\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000083\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217821722923721782\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000077\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217891722923721789\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000025\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217961722923721796\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000038\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218021722923721802\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000031\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218621722923721862\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218811722923721881\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218901722923721890\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000053\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218971722923721897\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000048\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219321722923721932\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000052\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219461722923721946\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219511722923721951\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000059\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219571722923721957\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000074\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219631722923721963\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219691722923721969\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000188\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219761722923721976\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000118\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219821722923721982\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219961722923721996\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000067\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220631722923722063\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000193\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220711722923722071\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000166\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220761722923722076\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000168\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223411722923722341\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000112\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223631722923722363\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223701722923722370\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223761722923722376\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000061\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224411722923722441\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000080\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355217521722923721752 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:02:10', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061402118481722924131848', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"07-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401370081722924097008\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000037\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401436021722924103602\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000002\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401497731722924109773\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000006\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401552741722924115274\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000143\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402007281722924120728\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000087\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217521722923721752\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000073\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217621722923721762\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000083\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217821722923721782\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000077\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217891722923721789\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000025\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217961722923721796\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000038\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218021722923721802\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000031\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218621722923721862\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218811722923721881\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218901722923721890\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000053\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218971722923721897\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000048\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219321722923721932\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000052\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219461722923721946\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219511722923721951\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000059\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219571722923721957\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000074\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219631722923721963\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219691722923721969\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000188\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219761722923721976\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000118\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219821722923721982\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219961722923721996\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000067\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220631722923722063\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000193\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220711722923722071\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000166\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220761722923722076\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000168\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223411722923722341\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000112\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223631722923722363\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223701722923722370\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223761722923722376\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000061\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224411722923722441\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000080\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355217521722923721752 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:02:12', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061402138431722924133843', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"07-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401370081722924097008\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000037\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401436021722924103602\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000002\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401497731722924109773\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000006\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401552741722924115274\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000143\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402007281722924120728\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000087\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217521722923721752\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000073\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217621722923721762\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000083\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217821722923721782\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000077\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217891722923721789\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000025\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217961722923721796\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000038\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218021722923721802\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000031\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218621722923721862\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218811722923721881\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218901722923721890\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000053\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218971722923721897\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000048\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219321722923721932\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000052\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219461722923721946\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219511722923721951\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000059\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219571722923721957\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000074\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219631722923721963\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219691722923721969\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000188\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219761722923721976\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000118\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219821722923721982\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219961722923721996\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000067\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220631722923722063\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000193\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220711722923722071\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000166\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220761722923722076\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000168\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223411722923722341\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000112\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223631722923722363\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223701722923722370\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223761722923722376\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000061\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224411722923722441\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000080\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355217521722923721752 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:02:14', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061402141141722924134114', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000011\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '10.90.106.61', '2024-08-06 14:02:14', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061402158651722924135865', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"07-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401370081722924097008\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000037\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401436021722924103602\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000002\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401497731722924109773\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000006\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401552741722924115274\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000143\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402007281722924120728\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000087\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402141121722924134112\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000011\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217521722923721752\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000073\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217621722923721762\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000083\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217821722923721782\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000077\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217891722923721789\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000025\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217961722923721796\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000038\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218021722923721802\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000031\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218621722923721862\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218811722923721881\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218901722923721890\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000053\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218971722923721897\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000048\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219321722923721932\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000052\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219461722923721946\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219511722923721951\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000059\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219571722923721957\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000074\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219631722923721963\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219691722923721969\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000188\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219761722923721976\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000118\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219821722923721982\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219961722923721996\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000067\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220631722923722063\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000193\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220711722923722071\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000166\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220761722923722076\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000168\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223411722923722341\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000112\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223631722923722363\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223701722923722370\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223761722923722376\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000061\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224411722923722441\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000080\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355217521722923721752 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:02:16', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061402177671722924137767', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061355219111722923721911\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000100\", \"taskStatus\": 100, \"destination\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:02:18', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061402178951722924137895', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"07-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401370081722924097008\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000037\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401436021722924103602\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000002\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401497731722924109773\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000006\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401552741722924115274\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000143\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402007281722924120728\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000087\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402141121722924134112\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000011\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217521722923721752\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000073\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217621722923721762\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000083\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217821722923721782\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000077\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217891722923721789\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000025\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217961722923721796\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000038\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218021722923721802\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000031\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218621722923721862\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218811722923721881\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218901722923721890\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000053\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218971722923721897\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000048\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219321722923721932\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000052\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219461722923721946\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219511722923721951\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000059\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219571722923721957\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000074\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219631722923721963\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219691722923721969\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000188\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219761722923721976\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000118\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219821722923721982\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219961722923721996\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000067\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220631722923722063\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000193\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220711722923722071\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000166\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220761722923722076\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000168\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223411722923722341\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000112\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223631722923722363\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223701722923722370\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223761722923722376\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000061\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224411722923722441\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000080\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355217521722923721752 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:02:18', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061402180851722924138085', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000082\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '10.90.106.61', '2024-08-06 14:02:18', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061402198661722924139866', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"07-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401370081722924097008\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000037\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401436021722924103602\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000002\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401497731722924109773\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000006\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401552741722924115274\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000143\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402007281722924120728\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000087\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402141121722924134112\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000011\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402180821722924138082\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000082\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217521722923721752\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000073\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217621722923721762\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000083\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217821722923721782\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000077\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217891722923721789\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000025\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217961722923721796\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000038\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218021722923721802\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000031\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218621722923721862\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218811722923721881\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218901722923721890\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000053\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218971722923721897\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000048\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219321722923721932\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000052\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219461722923721946\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219511722923721951\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000059\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219571722923721957\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000074\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219631722923721963\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219691722923721969\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000188\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219761722923721976\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000118\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219821722923721982\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219961722923721996\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000067\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220631722923722063\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000193\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220711722923722071\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000166\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220761722923722076\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000168\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223411722923722341\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000112\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223631722923722363\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223701722923722370\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223761722923722376\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000061\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224411722923722441\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000080\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355217521722923721752 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:02:20', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061402216021722924141602', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000021\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '10.90.106.61', '2024-08-06 14:02:22', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061402218611722924141861', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061355219321722923721932\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000052\", \"taskStatus\": 2, \"destination\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:02:22', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061402218631722924141863', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"07-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401370081722924097008\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000037\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401436021722924103602\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000002\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401497731722924109773\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000006\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401552741722924115274\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000143\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402007281722924120728\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000087\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402141121722924134112\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000011\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402180821722924138082\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000082\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402215991722924141599\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000021\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217521722923721752\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000073\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217621722923721762\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000083\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217821722923721782\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000077\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217891722923721789\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000025\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217961722923721796\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000038\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218021722923721802\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000031\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218621722923721862\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218811722923721881\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218901722923721890\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000053\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218971722923721897\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000048\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219321722923721932\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000052\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219461722923721946\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219511722923721951\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000059\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219571722923721957\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000074\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219631722923721963\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219691722923721969\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000188\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219761722923721976\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000118\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219821722923721982\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219961722923721996\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000067\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220631722923722063\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000193\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220711722923722071\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000166\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220761722923722076\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000168\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223411722923722341\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000112\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223631722923722363\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223701722923722370\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223761722923722376\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000061\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224411722923722441\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000080\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355217521722923721752 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:02:22', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061402227951722924142795', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061355219391722923721939\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000029\", \"taskStatus\": 100, \"destination\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:02:23', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061402237621722924143762', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061355219251722923721925\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000057\", \"taskStatus\": 100, \"destination\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:02:24', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061402238881722924143888', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"07-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401370081722924097008\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000037\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401436021722924103602\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000002\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401497731722924109773\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000006\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401552741722924115274\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000143\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402007281722924120728\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000087\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402141121722924134112\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000011\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402180821722924138082\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000082\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402215991722924141599\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000021\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217521722923721752\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000073\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217621722923721762\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000083\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217821722923721782\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000077\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217891722923721789\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000025\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217961722923721796\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000038\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218021722923721802\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000031\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218621722923721862\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218811722923721881\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218901722923721890\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000053\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218971722923721897\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000048\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219461722923721946\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219511722923721951\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000059\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219571722923721957\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000074\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219631722923721963\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219691722923721969\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000188\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219761722923721976\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000118\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219821722923721982\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219961722923721996\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000067\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220631722923722063\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000193\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220711722923722071\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000166\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220761722923722076\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000168\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223411722923722341\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000112\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223631722923722363\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223701722923722370\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223761722923722376\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000061\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224411722923722441\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000080\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355217521722923721752 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:02:24', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061402250641722924145064', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000084\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '10.90.106.61', '2024-08-06 14:02:25', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061402258871722924145887', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"07-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401370081722924097008\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000037\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401436021722924103602\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000002\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401497731722924109773\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000006\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401552741722924115274\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000143\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402007281722924120728\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000087\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402141121722924134112\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000011\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402180821722924138082\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000082\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402215991722924141599\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000021\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402250611722924145061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000084\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217521722923721752\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000073\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217621722923721762\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000083\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217821722923721782\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000077\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217891722923721789\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000025\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217961722923721796\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000038\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218021722923721802\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000031\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218621722923721862\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218811722923721881\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218901722923721890\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000053\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218971722923721897\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000048\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219461722923721946\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219511722923721951\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000059\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219571722923721957\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000074\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219631722923721963\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219691722923721969\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000188\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219761722923721976\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000118\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219821722923721982\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219961722923721996\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000067\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220631722923722063\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000193\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220711722923722071\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000166\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220761722923722076\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000168\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223411722923722341\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000112\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223631722923722363\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223701722923722370\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223761722923722376\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000061\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224411722923722441\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000080\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355217521722923721752 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:02:26', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061402267621722924146762', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061355217061722923721706\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000092\", \"taskStatus\": 100, \"destination\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:02:27', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061402269741722924146974', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061355219571722923721957\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000074\", \"taskStatus\": 2, \"destination\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:02:27', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061402279051722924147905', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"07-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401370081722924097008\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000037\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401436021722924103602\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000002\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401497731722924109773\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000006\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401552741722924115274\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000143\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402007281722924120728\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000087\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402141121722924134112\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000011\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402180821722924138082\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000082\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402215991722924141599\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000021\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402250611722924145061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000084\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217521722923721752\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000073\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217621722923721762\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000083\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217821722923721782\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000077\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217891722923721789\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000025\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217961722923721796\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000038\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218021722923721802\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000031\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218621722923721862\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218811722923721881\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218901722923721890\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000053\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218971722923721897\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000048\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219461722923721946\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219511722923721951\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000059\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219631722923721963\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219691722923721969\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000188\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219761722923721976\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000118\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219821722923721982\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219961722923721996\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000067\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220631722923722063\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000193\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220711722923722071\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000166\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220761722923722076\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000168\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223411722923722341\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000112\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223631722923722363\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223701722923722370\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223761722923722376\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000061\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224411722923722441\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000080\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355217521722923721752 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:02:28', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061402281541722924148154', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061355217441722923721744\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000066\", \"taskStatus\": 2, \"destination\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:02:28', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061402281571722924148157', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061355217361722923721736\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000055\", \"taskStatus\": 2, \"destination\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:02:28', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061402288381722924148838', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000004\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '10.90.106.61', '2024-08-06 14:02:29', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061402299071722924149907', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"07-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401370081722924097008\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000037\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401436021722924103602\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000002\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401497731722924109773\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000006\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401552741722924115274\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000143\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402007281722924120728\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000087\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402141121722924134112\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000011\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402180821722924138082\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000082\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402215991722924141599\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000021\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402250611722924145061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000084\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402288361722924148836\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000004\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217521722923721752\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000073\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217621722923721762\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000083\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217821722923721782\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000077\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217891722923721789\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000025\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217961722923721796\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000038\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218021722923721802\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000031\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218621722923721862\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218811722923721881\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218901722923721890\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000053\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218971722923721897\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000048\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219461722923721946\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219511722923721951\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000059\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219631722923721963\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219691722923721969\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000188\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219761722923721976\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000118\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219821722923721982\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219961722923721996\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000067\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220631722923722063\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000193\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220711722923722071\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000166\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220761722923722076\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000168\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223411722923722341\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000112\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223631722923722363\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223701722923722370\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223761722923722376\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000061\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224411722923722441\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000080\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355217521722923721752 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:02:30', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061402319241722924151924', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"07-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401370081722924097008\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000037\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401436021722924103602\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000002\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401497731722924109773\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000006\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401552741722924115274\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000143\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402007281722924120728\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000087\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402141121722924134112\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000011\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402180821722924138082\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000082\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402215991722924141599\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000021\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402250611722924145061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000084\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402288361722924148836\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000004\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217521722923721752\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000073\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217621722923721762\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000083\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217821722923721782\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000077\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217891722923721789\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000025\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217961722923721796\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000038\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218021722923721802\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000031\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218621722923721862\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218811722923721881\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218901722923721890\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000053\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218971722923721897\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000048\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219461722923721946\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219511722923721951\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000059\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219631722923721963\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219691722923721969\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000188\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219761722923721976\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000118\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219821722923721982\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219961722923721996\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000067\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220631722923722063\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000193\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220711722923722071\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000166\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220761722923722076\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000168\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223411722923722341\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000112\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223631722923722363\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223701722923722370\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223761722923722376\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000061\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224411722923722441\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000080\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355217521722923721752 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:02:32', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061402325251722924152525', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000009\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '10.90.106.61', '2024-08-06 14:02:33', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061402339351722924153935', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"07-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401370081722924097008\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000037\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401436021722924103602\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000002\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401497731722924109773\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000006\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401552741722924115274\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000143\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402007281722924120728\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000087\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402141121722924134112\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000011\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402180821722924138082\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000082\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402215991722924141599\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000021\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402250611722924145061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000084\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402288361722924148836\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000004\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402325221722924152522\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000009\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217521722923721752\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000073\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217621722923721762\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000083\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217821722923721782\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000077\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217891722923721789\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000025\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217961722923721796\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000038\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218021722923721802\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000031\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218621722923721862\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218811722923721881\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218901722923721890\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000053\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218971722923721897\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000048\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219461722923721946\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219511722923721951\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000059\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219631722923721963\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219691722923721969\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000188\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219761722923721976\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000118\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219821722923721982\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219961722923721996\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000067\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220631722923722063\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000193\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220711722923722071\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000166\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220761722923722076\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000168\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223411722923722341\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000112\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223631722923722363\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223701722923722370\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223761722923722376\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000061\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224411722923722441\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000080\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355217521722923721752 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:02:34', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061402359601722924155960', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"07-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401370081722924097008\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000037\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401436021722924103602\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000002\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401497731722924109773\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000006\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401552741722924115274\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000143\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402007281722924120728\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000087\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402141121722924134112\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000011\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402180821722924138082\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000082\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402215991722924141599\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000021\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402250611722924145061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000084\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402288361722924148836\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000004\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402325221722924152522\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000009\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217521722923721752\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000073\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217621722923721762\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000083\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217821722923721782\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000077\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217891722923721789\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000025\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217961722923721796\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000038\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218021722923721802\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000031\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218621722923721862\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218811722923721881\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218901722923721890\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000053\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218971722923721897\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000048\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219461722923721946\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219511722923721951\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000059\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219631722923721963\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219691722923721969\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000188\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219761722923721976\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000118\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219821722923721982\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219961722923721996\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000067\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220631722923722063\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000193\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220711722923722071\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000166\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220761722923722076\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000168\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223411722923722341\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000112\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223631722923722363\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223701722923722370\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223761722923722376\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000061\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224411722923722441\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000080\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355217521722923721752 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:02:36', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061402360091722924156009', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000090\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '10.90.106.61', '2024-08-06 14:02:36', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061402379471722924157947', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"07-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401370081722924097008\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000037\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401436021722924103602\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000002\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401497731722924109773\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000006\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401552741722924115274\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000143\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402007281722924120728\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000087\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402141121722924134112\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000011\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402180821722924138082\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000082\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402215991722924141599\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000021\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402250611722924145061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000084\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402288361722924148836\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000004\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402325221722924152522\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000009\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402360051722924156005\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000090\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217521722923721752\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000073\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217621722923721762\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000083\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217821722923721782\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000077\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217891722923721789\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000025\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217961722923721796\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000038\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218021722923721802\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000031\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218621722923721862\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218811722923721881\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218901722923721890\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000053\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218971722923721897\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000048\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219461722923721946\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219511722923721951\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000059\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219631722923721963\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219691722923721969\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000188\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219761722923721976\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000118\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219821722923721982\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219961722923721996\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000067\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220631722923722063\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000193\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220711722923722071\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000166\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220761722923722076\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000168\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223411722923722341\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000112\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223631722923722363\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223701722923722370\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223761722923722376\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000061\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224411722923722441\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000080\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355217521722923721752 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:02:38', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061402398381722924159838', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000005\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '10.90.106.61', '2024-08-06 14:02:40', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061402399531722924159953', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"07-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401370081722924097008\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000037\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401436021722924103602\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000002\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401497731722924109773\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000006\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401552741722924115274\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000143\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402007281722924120728\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000087\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402141121722924134112\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000011\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402180821722924138082\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000082\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402215991722924141599\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000021\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402250611722924145061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000084\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402288361722924148836\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000004\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402325221722924152522\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000009\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402360051722924156005\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000090\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402398351722924159835\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000005\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217521722923721752\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000073\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217621722923721762\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000083\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217821722923721782\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000077\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217891722923721789\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000025\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217961722923721796\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000038\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218021722923721802\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000031\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218621722923721862\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218811722923721881\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218901722923721890\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000053\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218971722923721897\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000048\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219461722923721946\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219511722923721951\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000059\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219631722923721963\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219691722923721969\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000188\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219761722923721976\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000118\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219821722923721982\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219961722923721996\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000067\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220631722923722063\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000193\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220711722923722071\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000166\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220761722923722076\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000168\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223411722923722341\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000112\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223631722923722363\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223701722923722370\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223761722923722376\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000061\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224411722923722441\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000080\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355217521722923721752 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:02:40', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061402419641722924161964', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"07-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401370081722924097008\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000037\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401436021722924103602\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000002\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401497731722924109773\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000006\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401552741722924115274\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000143\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402007281722924120728\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000087\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402141121722924134112\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000011\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402180821722924138082\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000082\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402215991722924141599\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000021\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402250611722924145061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000084\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402288361722924148836\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000004\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402325221722924152522\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000009\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402360051722924156005\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000090\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402398351722924159835\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000005\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217521722923721752\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000073\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217621722923721762\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000083\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217821722923721782\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000077\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217891722923721789\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000025\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217961722923721796\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000038\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218021722923721802\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000031\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218621722923721862\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218811722923721881\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218901722923721890\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000053\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218971722923721897\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000048\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219461722923721946\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219511722923721951\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000059\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219631722923721963\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219691722923721969\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000188\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219761722923721976\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000118\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219821722923721982\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219961722923721996\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000067\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220631722923722063\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000193\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220711722923722071\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000166\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220761722923722076\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000168\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223411722923722341\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000112\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223631722923722363\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223701722923722370\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223761722923722376\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000061\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224411722923722441\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000080\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355217521722923721752 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:02:42', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061402434991722924163499', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000012\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '10.90.106.61', '2024-08-06 14:02:43', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061402439651722924163965', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"07-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401370081722924097008\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000037\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401436021722924103602\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000002\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401497731722924109773\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000006\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401552741722924115274\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000143\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402007281722924120728\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000087\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402141121722924134112\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000011\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402180821722924138082\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000082\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402215991722924141599\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000021\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402250611722924145061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000084\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402288361722924148836\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000004\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402325221722924152522\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000009\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402360051722924156005\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000090\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402398351722924159835\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000005\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402434961722924163496\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000012\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217521722923721752\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000073\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217621722923721762\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000083\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217821722923721782\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000077\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217891722923721789\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000025\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217961722923721796\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000038\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218021722923721802\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000031\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218621722923721862\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218811722923721881\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218901722923721890\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000053\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218971722923721897\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000048\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219461722923721946\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219511722923721951\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000059\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219631722923721963\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219691722923721969\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000188\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219761722923721976\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000118\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219821722923721982\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219961722923721996\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000067\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220631722923722063\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000193\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220711722923722071\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000166\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220761722923722076\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000168\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223411722923722341\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000112\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223631722923722363\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223701722923722370\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223761722923722376\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000061\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224411722923722441\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000080\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355217521722923721752 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:02:44', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061402459961722924165996', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"07-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401370081722924097008\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000037\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401436021722924103602\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000002\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401497731722924109773\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000006\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401552741722924115274\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000143\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402007281722924120728\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000087\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402141121722924134112\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000011\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402180821722924138082\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000082\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402215991722924141599\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000021\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402250611722924145061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000084\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402288361722924148836\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000004\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402325221722924152522\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000009\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402360051722924156005\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000090\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402398351722924159835\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000005\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402434961722924163496\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000012\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217521722923721752\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000073\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217621722923721762\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000083\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217821722923721782\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000077\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217891722923721789\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000025\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217961722923721796\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000038\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218021722923721802\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000031\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218621722923721862\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218811722923721881\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218901722923721890\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000053\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218971722923721897\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000048\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219461722923721946\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219511722923721951\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000059\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219631722923721963\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219691722923721969\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000188\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219761722923721976\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000118\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219821722923721982\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219961722923721996\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000067\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220631722923722063\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000193\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220711722923722071\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000166\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220761722923722076\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000168\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223411722923722341\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000112\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223631722923722363\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223701722923722370\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223761722923722376\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000061\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224411722923722441\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000080\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355217521722923721752 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:02:46', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061402472001722924167200', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000097\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '10.90.106.61', '2024-08-06 14:02:47', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061402479861722924167986', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"07-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401370081722924097008\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000037\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401436021722924103602\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000002\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401497731722924109773\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000006\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401552741722924115274\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000143\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402007281722924120728\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000087\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402141121722924134112\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000011\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402180821722924138082\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000082\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402215991722924141599\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000021\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402250611722924145061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000084\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402288361722924148836\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000004\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402325221722924152522\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000009\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402360051722924156005\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000090\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402398351722924159835\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000005\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402434961722924163496\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000012\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402471981722924167198\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000097\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217521722923721752\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000073\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217621722923721762\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000083\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217821722923721782\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000077\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217891722923721789\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000025\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217961722923721796\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000038\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218021722923721802\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000031\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218621722923721862\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218811722923721881\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218901722923721890\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000053\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218971722923721897\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000048\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219461722923721946\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219511722923721951\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000059\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219631722923721963\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219691722923721969\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000188\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219761722923721976\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000118\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219821722923721982\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219961722923721996\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000067\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220631722923722063\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000193\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220711722923722071\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000166\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220761722923722076\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000168\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223411722923722341\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000112\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223631722923722363\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223701722923722370\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223761722923722376\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000061\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224411722923722441\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000080\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355217521722923721752 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:02:48', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061402500261722924170026', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"07-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401370081722924097008\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000037\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401436021722924103602\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000002\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401497731722924109773\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000006\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401552741722924115274\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000143\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402007281722924120728\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000087\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402141121722924134112\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000011\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402180821722924138082\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000082\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402215991722924141599\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000021\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402250611722924145061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000084\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402288361722924148836\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000004\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402325221722924152522\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000009\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402360051722924156005\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000090\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402398351722924159835\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000005\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402434961722924163496\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000012\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402471981722924167198\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000097\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217521722923721752\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000073\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217621722923721762\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000083\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217821722923721782\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000077\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217891722923721789\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000025\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217961722923721796\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000038\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218021722923721802\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000031\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218621722923721862\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218811722923721881\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218901722923721890\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000053\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218971722923721897\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000048\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219461722923721946\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219511722923721951\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000059\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219631722923721963\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219691722923721969\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000188\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219761722923721976\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000118\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219821722923721982\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219961722923721996\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000067\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220631722923722063\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000193\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220711722923722071\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000166\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220761722923722076\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000168\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223411722923722341\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000112\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223631722923722363\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223701722923722370\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223761722923722376\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000061\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224411722923722441\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000080\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355217521722923721752 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:02:50', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061402500441722924170044', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061355217561722923721756\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000049\", \"taskStatus\": 100, \"destination\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:02:50', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061402504951722924170495', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000013\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '10.90.106.61', '2024-08-06 14:02:50', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061402507771722924170777', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061355217741722923721774\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000024\", \"taskStatus\": 100, \"destination\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:02:51', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061402508101722924170810', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061355219321722923721932\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000052\", \"taskStatus\": 100, \"destination\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:02:51', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061402520341722924172034', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"07-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401370081722924097008\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000037\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401436021722924103602\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000002\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401497731722924109773\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000006\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401552741722924115274\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000143\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402007281722924120728\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000087\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402141121722924134112\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000011\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402180821722924138082\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000082\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402215991722924141599\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000021\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402250611722924145061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000084\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402288361722924148836\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000004\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402325221722924152522\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000009\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402360051722924156005\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000090\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402398351722924159835\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000005\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402434961722924163496\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000012\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402471981722924167198\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000097\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402504921722924170492\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000013\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217521722923721752\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000073\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217621722923721762\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000083\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217821722923721782\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000077\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217891722923721789\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000025\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217961722923721796\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000038\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218021722923721802\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000031\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218621722923721862\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218811722923721881\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218901722923721890\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000053\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218971722923721897\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000048\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219461722923721946\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219511722923721951\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000059\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219631722923721963\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219691722923721969\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000188\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219761722923721976\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000118\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219821722923721982\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219961722923721996\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000067\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220631722923722063\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000193\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220711722923722071\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000166\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220761722923722076\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000168\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223411722923722341\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000112\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223631722923722363\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223701722923722370\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223761722923722376\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000061\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224411722923722441\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000080\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355217521722923721752 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:02:52', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061402538751722924173875', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061355217961722923721796\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000038\", \"taskStatus\": 2, \"destination\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:02:54', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061402538841722924173884', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061355218021722923721802\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000031\", \"taskStatus\": 2, \"destination\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:02:54', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061402540451722924174045', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"07-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401370081722924097008\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000037\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401436021722924103602\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000002\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401497731722924109773\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000006\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401552741722924115274\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000143\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402007281722924120728\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000087\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402141121722924134112\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000011\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402180821722924138082\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000082\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402215991722924141599\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000021\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402250611722924145061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000084\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402288361722924148836\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000004\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402325221722924152522\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000009\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402360051722924156005\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000090\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402398351722924159835\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000005\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402434961722924163496\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000012\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402471981722924167198\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000097\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402504921722924170492\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000013\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217521722923721752\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000073\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217621722923721762\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000083\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217821722923721782\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000077\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217891722923721789\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000025\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218621722923721862\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218811722923721881\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218901722923721890\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000053\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218971722923721897\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000048\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219461722923721946\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219511722923721951\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000059\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219631722923721963\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219691722923721969\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000188\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219761722923721976\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000118\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219821722923721982\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219961722923721996\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000067\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220631722923722063\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000193\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220711722923722071\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000166\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220761722923722076\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000168\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223411722923722341\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000112\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223631722923722363\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223701722923722370\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223761722923722376\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000061\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224411722923722441\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000080\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355217521722923721752 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:02:54', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061402540881722924174088', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000088\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '10.90.106.61', '2024-08-06 14:02:54', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061402560541722924176054', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"07-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401370081722924097008\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000037\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401436021722924103602\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000002\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401497731722924109773\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000006\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401552741722924115274\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000143\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402007281722924120728\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000087\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402141121722924134112\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000011\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402180821722924138082\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000082\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402215991722924141599\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000021\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402250611722924145061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000084\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402288361722924148836\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000004\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402325221722924152522\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000009\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402360051722924156005\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000090\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402398351722924159835\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000005\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402434961722924163496\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000012\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402471981722924167198\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000097\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402504921722924170492\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000013\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402540851722924174085\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000088\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217521722923721752\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000073\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217621722923721762\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000083\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217821722923721782\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000077\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217891722923721789\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000025\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218621722923721862\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218811722923721881\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218901722923721890\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000053\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218971722923721897\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000048\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219461722923721946\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219511722923721951\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000059\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219631722923721963\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219691722923721969\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000188\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219761722923721976\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000118\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219821722923721982\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219961722923721996\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000067\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220631722923722063\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000193\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220711722923722071\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000166\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220761722923722076\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000168\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223411722923722341\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000112\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223631722923722363\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223701722923722370\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223761722923722376\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000061\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224411722923722441\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000080\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355217521722923721752 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:02:56', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061402569931722924176993', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061355217401722923721740\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000086\", \"taskStatus\": 2, \"destination\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:02:57', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061402569951722924176995', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061355219571722923721957\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000074\", \"taskStatus\": 100, \"destination\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:02:57', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061402570141722924177014', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061355219461722923721946\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000068\", \"taskStatus\": 2, \"destination\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:02:57', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061402579411722924177941', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000014\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '10.90.106.61', '2024-08-06 14:02:58', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061402580391722924178039', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"07-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401370081722924097008\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000037\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401436021722924103602\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000002\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401497731722924109773\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000006\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401552741722924115274\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000143\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402007281722924120728\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000087\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402141121722924134112\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000011\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402180821722924138082\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000082\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402215991722924141599\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000021\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402250611722924145061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000084\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402288361722924148836\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000004\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402325221722924152522\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000009\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402360051722924156005\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000090\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402398351722924159835\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000005\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402434961722924163496\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000012\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402471981722924167198\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000097\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402504921722924170492\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000013\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402540851722924174085\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000088\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402579381722924177938\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000014\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217521722923721752\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000073\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217621722923721762\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000083\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217821722923721782\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000077\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217891722923721789\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000025\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218621722923721862\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218811722923721881\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218901722923721890\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000053\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218971722923721897\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000048\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219511722923721951\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000059\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219631722923721963\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219691722923721969\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000188\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219761722923721976\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000118\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219821722923721982\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219961722923721996\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000067\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"06-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220631722923722063\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000193\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220711722923722071\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000166\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220761722923722076\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000168\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223411722923722341\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000112\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223631722923722363\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223701722923722370\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223761722923722376\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000061\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224411722923722441\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000080\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355217521722923721752 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:02:58', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061402588721722924178872', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061355219511722923721951\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000059\", \"taskStatus\": 2, \"destination\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:02:59', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061402589091722924178909', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061355220631722923722063\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000193\", \"taskStatus\": 2, \"destination\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:02:59', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061403000621722924180062', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"07-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401370081722924097008\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000037\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401436021722924103602\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000002\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401497731722924109773\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000006\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401552741722924115274\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000143\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402007281722924120728\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000087\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402141121722924134112\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000011\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402180821722924138082\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000082\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402215991722924141599\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000021\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402250611722924145061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000084\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402288361722924148836\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000004\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402325221722924152522\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000009\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402360051722924156005\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000090\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402398351722924159835\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000005\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402434961722924163496\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000012\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402471981722924167198\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000097\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402504921722924170492\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000013\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402540851722924174085\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000088\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402579381722924177938\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000014\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217521722923721752\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000073\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217621722923721762\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000083\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217821722923721782\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000077\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217891722923721789\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000025\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218621722923721862\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218811722923721881\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218901722923721890\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000053\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218971722923721897\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000048\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219631722923721963\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219691722923721969\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000188\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219761722923721976\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000118\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219821722923721982\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219961722923721996\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000067\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220711722923722071\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000166\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220761722923722076\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000168\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223411722923722341\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000112\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223631722923722363\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223701722923722370\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223761722923722376\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000061\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224411722923722441\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000080\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355217521722923721752 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:03:00', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061403018421722924181842', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000007\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '10.90.106.61', '2024-08-06 14:03:02', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061403020731722924182073', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"07-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401370081722924097008\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000037\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401436021722924103602\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000002\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401497731722924109773\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000006\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401552741722924115274\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000143\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402007281722924120728\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000087\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402141121722924134112\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000011\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402180821722924138082\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000082\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402215991722924141599\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000021\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402250611722924145061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000084\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402288361722924148836\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000004\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402325221722924152522\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000009\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402360051722924156005\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000090\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402398351722924159835\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000005\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402434961722924163496\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000012\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402471981722924167198\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000097\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402504921722924170492\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000013\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402540851722924174085\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000088\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402579381722924177938\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000014\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403018401722924181840\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000007\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217521722923721752\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000073\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217621722923721762\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000083\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217821722923721782\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000077\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217891722923721789\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000025\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218621722923721862\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218811722923721881\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218901722923721890\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000053\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218971722923721897\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000048\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219631722923721963\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219691722923721969\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000188\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219761722923721976\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000118\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219821722923721982\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219961722923721996\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000067\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220711722923722071\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000166\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220761722923722076\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000168\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223411722923722341\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000112\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223631722923722363\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223701722923722370\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223761722923722376\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000061\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224411722923722441\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000080\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355217521722923721752 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:03:02', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061403040691722924184069', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"07-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401370081722924097008\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000037\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401436021722924103602\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000002\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401497731722924109773\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000006\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401552741722924115274\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000143\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402007281722924120728\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000087\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402141121722924134112\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000011\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402180821722924138082\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000082\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402215991722924141599\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000021\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402250611722924145061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000084\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402288361722924148836\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000004\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402325221722924152522\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000009\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402360051722924156005\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000090\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402398351722924159835\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000005\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402434961722924163496\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000012\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402471981722924167198\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000097\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402504921722924170492\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000013\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402540851722924174085\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000088\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402579381722924177938\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000014\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403018401722924181840\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000007\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217521722923721752\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000073\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217621722923721762\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000083\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217821722923721782\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000077\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217891722923721789\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000025\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218621722923721862\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218811722923721881\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218901722923721890\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000053\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218971722923721897\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000048\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219631722923721963\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219691722923721969\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000188\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219761722923721976\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000118\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219821722923721982\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219961722923721996\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000067\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220711722923722071\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000166\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220761722923722076\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000168\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223411722923722341\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000112\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223631722923722363\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223701722923722370\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223761722923722376\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000061\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224411722923722441\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000080\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355217521722923721752 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:03:04', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061403060641722924186064', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000020\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '10.90.106.61', '2024-08-06 14:03:06', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061403060971722924186097', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"07-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401370081722924097008\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000037\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401436021722924103602\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000002\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401497731722924109773\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000006\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401552741722924115274\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000143\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402007281722924120728\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000087\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402141121722924134112\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000011\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402180821722924138082\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000082\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402215991722924141599\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000021\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402250611722924145061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000084\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402288361722924148836\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000004\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402325221722924152522\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000009\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402360051722924156005\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000090\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402398351722924159835\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000005\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402434961722924163496\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000012\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402471981722924167198\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000097\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402504921722924170492\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000013\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402540851722924174085\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000088\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402579381722924177938\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000014\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403018401722924181840\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000007\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217521722923721752\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000073\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217621722923721762\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000083\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217821722923721782\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000077\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217891722923721789\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000025\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218621722923721862\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218811722923721881\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218901722923721890\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000053\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218971722923721897\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000048\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219631722923721963\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219691722923721969\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000188\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219761722923721976\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000118\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219821722923721982\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219961722923721996\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000067\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220711722923722071\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000166\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220761722923722076\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000168\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223411722923722341\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000112\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223631722923722363\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223701722923722370\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223761722923722376\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000061\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224411722923722441\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000080\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355217521722923721752 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:03:06', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061403081091722924188109', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"07-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401370081722924097008\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000037\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401436021722924103602\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000002\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401497731722924109773\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000006\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401552741722924115274\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000143\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402007281722924120728\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000087\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402141121722924134112\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000011\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402180821722924138082\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000082\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402215991722924141599\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000021\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402250611722924145061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000084\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402288361722924148836\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000004\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402325221722924152522\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000009\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402360051722924156005\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000090\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402398351722924159835\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000005\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402434961722924163496\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000012\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402471981722924167198\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000097\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402504921722924170492\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000013\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402540851722924174085\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000088\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402579381722924177938\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000014\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403018401722924181840\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000007\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403060611722924186061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000020\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217521722923721752\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000073\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217621722923721762\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000083\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217821722923721782\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000077\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217891722923721789\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000025\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218621722923721862\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218811722923721881\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218901722923721890\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000053\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218971722923721897\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000048\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219631722923721963\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219691722923721969\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000188\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219761722923721976\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000118\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219821722923721982\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219961722923721996\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000067\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220711722923722071\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000166\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220761722923722076\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000168\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223411722923722341\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000112\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223631722923722363\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223701722923722370\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223761722923722376\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000061\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224411722923722441\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000080\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355217521722923721752 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:03:08', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061403097241722924189724', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000017\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '10.90.106.61', '2024-08-06 14:03:10', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061403097651722924189765', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061355217441722923721744\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000066\", \"taskStatus\": 100, \"destination\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:03:10', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061403101211722924190121', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"07-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401370081722924097008\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000037\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401436021722924103602\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000002\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401497731722924109773\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000006\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401552741722924115274\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000143\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402007281722924120728\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000087\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402141121722924134112\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000011\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402180821722924138082\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000082\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402215991722924141599\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000021\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402250611722924145061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000084\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402288361722924148836\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000004\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402325221722924152522\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000009\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402360051722924156005\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000090\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402398351722924159835\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000005\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402434961722924163496\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000012\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402471981722924167198\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000097\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402504921722924170492\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000013\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402540851722924174085\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000088\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402579381722924177938\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000014\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403018401722924181840\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000007\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403060611722924186061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000020\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403097211722924189721\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000017\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217521722923721752\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000073\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217621722923721762\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000083\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217821722923721782\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000077\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217891722923721789\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000025\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218621722923721862\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218811722923721881\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218901722923721890\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000053\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218971722923721897\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000048\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219631722923721963\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219691722923721969\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000188\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219761722923721976\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000118\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219821722923721982\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219961722923721996\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000067\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220711722923722071\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000166\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220761722923722076\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000168\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223411722923722341\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000112\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223631722923722363\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223701722923722370\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223761722923722376\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000061\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224411722923722441\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000080\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355217521722923721752 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:03:10', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061403108041722924190804', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061355217361722923721736\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000055\", \"taskStatus\": 100, \"destination\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:03:11', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061403121341722924192134', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"07-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401370081722924097008\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000037\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401436021722924103602\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000002\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401497731722924109773\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000006\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401552741722924115274\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000143\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402007281722924120728\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000087\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402141121722924134112\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000011\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402180821722924138082\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000082\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402215991722924141599\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000021\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402250611722924145061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000084\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402288361722924148836\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000004\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402325221722924152522\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000009\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402360051722924156005\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000090\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402398351722924159835\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000005\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402434961722924163496\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000012\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402471981722924167198\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000097\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402504921722924170492\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000013\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402540851722924174085\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000088\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402579381722924177938\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000014\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403018401722924181840\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000007\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403060611722924186061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000020\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403097211722924189721\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000017\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217521722923721752\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000073\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217621722923721762\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000083\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217821722923721782\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000077\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217891722923721789\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000025\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218621722923721862\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218811722923721881\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218901722923721890\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000053\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218971722923721897\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000048\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219631722923721963\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219691722923721969\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000188\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219761722923721976\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000118\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219821722923721982\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219961722923721996\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000067\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220711722923722071\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000166\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220761722923722076\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000168\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223411722923722341\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000112\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223631722923722363\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223701722923722370\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223761722923722376\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000061\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224411722923722441\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000080\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355217521722923721752 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:03:12', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061403135421722924193542', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000089\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '10.90.106.61', '2024-08-06 14:03:14', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061403139501722924193950', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061355217521722923721752\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000073\", \"taskStatus\": 2, \"destination\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:03:14', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061403139601722924193960', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061355217621722923721762\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000083\", \"taskStatus\": 2, \"destination\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:03:14', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061403141221722924194122', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"07-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401370081722924097008\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000037\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401436021722924103602\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000002\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401497731722924109773\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000006\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401552741722924115274\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000143\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402007281722924120728\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000087\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402141121722924134112\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000011\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402180821722924138082\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000082\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402215991722924141599\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000021\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402250611722924145061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000084\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402288361722924148836\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000004\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402325221722924152522\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000009\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402360051722924156005\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000090\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402398351722924159835\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000005\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402434961722924163496\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000012\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402471981722924167198\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000097\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402504921722924170492\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000013\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402540851722924174085\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000088\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402579381722924177938\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000014\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403018401722924181840\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000007\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403060611722924186061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000020\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403097211722924189721\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000017\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403135401722924193540\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000089\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217821722923721782\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000077\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217891722923721789\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000025\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218621722923721862\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218811722923721881\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218901722923721890\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000053\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218971722923721897\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000048\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219631722923721963\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219691722923721969\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000188\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219761722923721976\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000118\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219821722923721982\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219961722923721996\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000067\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220711722923722071\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000166\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220761722923722076\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000168\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223411722923722341\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000112\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223631722923722363\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223701722923722370\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223761722923722376\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000061\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224411722923722441\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000080\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355217821722923721782 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:03:14', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061403161341722924196134', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"07-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401370081722924097008\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000037\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401436021722924103602\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000002\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401497731722924109773\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000006\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401552741722924115274\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000143\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402007281722924120728\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000087\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402141121722924134112\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000011\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402180821722924138082\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000082\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402215991722924141599\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000021\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402250611722924145061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000084\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402288361722924148836\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000004\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402325221722924152522\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000009\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402360051722924156005\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000090\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402398351722924159835\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000005\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402434961722924163496\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000012\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402471981722924167198\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000097\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402504921722924170492\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000013\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402540851722924174085\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000088\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402579381722924177938\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000014\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403018401722924181840\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000007\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403060611722924186061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000020\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403097211722924189721\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000017\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403135401722924193540\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000089\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217821722923721782\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000077\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217891722923721789\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000025\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218621722923721862\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218811722923721881\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218901722923721890\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000053\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218971722923721897\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000048\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219631722923721963\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219691722923721969\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000188\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219761722923721976\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000118\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219821722923721982\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219961722923721996\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000067\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220711722923722071\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000166\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220761722923722076\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000168\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223411722923722341\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000112\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223631722923722363\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223701722923722370\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223761722923722376\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000061\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224411722923722441\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000080\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355217821722923721782 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:03:16', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061403170911722924197091', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000094\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '10.90.106.61', '2024-08-06 14:03:17', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061403181401722924198140', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"07-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401370081722924097008\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000037\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401436021722924103602\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000002\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401497731722924109773\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000006\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401552741722924115274\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000143\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402007281722924120728\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000087\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402141121722924134112\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000011\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402180821722924138082\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000082\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402215991722924141599\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000021\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402250611722924145061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000084\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402288361722924148836\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000004\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402325221722924152522\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000009\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402360051722924156005\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000090\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402398351722924159835\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000005\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402434961722924163496\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000012\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402471981722924167198\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000097\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402504921722924170492\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000013\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402540851722924174085\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000088\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402579381722924177938\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000014\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403018401722924181840\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000007\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403060611722924186061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000020\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403097211722924189721\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000017\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403135401722924193540\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000089\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-02-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403170891722924197089\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000094\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217821722923721782\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000077\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217891722923721789\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000025\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218621722923721862\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218811722923721881\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218901722923721890\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000053\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218971722923721897\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000048\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219631722923721963\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219691722923721969\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000188\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219761722923721976\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000118\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219821722923721982\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219961722923721996\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000067\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220711722923722071\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000166\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220761722923722076\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000168\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223411722923722341\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000112\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223631722923722363\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223701722923722370\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223761722923722376\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000061\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224411722923722441\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000080\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355217821722923721782 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:03:18', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061403201651722924200165', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"07-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401370081722924097008\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000037\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401436021722924103602\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000002\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401497731722924109773\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000006\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401552741722924115274\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000143\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402007281722924120728\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000087\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402141121722924134112\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000011\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402180821722924138082\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000082\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402215991722924141599\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000021\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402250611722924145061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000084\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402288361722924148836\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000004\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402325221722924152522\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000009\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402360051722924156005\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000090\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402398351722924159835\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000005\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402434961722924163496\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000012\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402471981722924167198\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000097\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402504921722924170492\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000013\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402540851722924174085\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000088\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402579381722924177938\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000014\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403018401722924181840\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000007\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403060611722924186061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000020\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403097211722924189721\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000017\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403135401722924193540\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000089\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-02-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403170891722924197089\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000094\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217821722923721782\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000077\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217891722923721789\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000025\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218621722923721862\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218811722923721881\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218901722923721890\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000053\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218971722923721897\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000048\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219631722923721963\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219691722923721969\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000188\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219761722923721976\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000118\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219821722923721982\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219961722923721996\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000067\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220711722923722071\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000166\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220761722923722076\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000168\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223411722923722341\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000112\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223631722923722363\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223701722923722370\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223761722923722376\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000061\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224411722923722441\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000080\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355217821722923721782 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:03:20', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061403204971722924200497', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000062\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '10.90.106.61', '2024-08-06 14:03:20', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061403221641722924202164', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"07-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401370081722924097008\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000037\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401436021722924103602\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000002\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401497731722924109773\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000006\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401552741722924115274\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000143\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402007281722924120728\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000087\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402141121722924134112\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000011\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402180821722924138082\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000082\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402215991722924141599\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000021\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402250611722924145061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000084\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402288361722924148836\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000004\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402325221722924152522\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000009\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402360051722924156005\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000090\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402398351722924159835\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000005\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402434961722924163496\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000012\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402471981722924167198\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000097\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402504921722924170492\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000013\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402540851722924174085\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000088\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402579381722924177938\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000014\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403018401722924181840\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000007\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403060611722924186061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000020\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403097211722924189721\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000017\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403135401722924193540\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000089\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-02-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403170891722924197089\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000094\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403204941722924200494\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000062\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217821722923721782\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000077\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217891722923721789\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000025\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218621722923721862\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218811722923721881\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218901722923721890\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000053\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218971722923721897\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000048\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219631722923721963\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219691722923721969\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000188\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219761722923721976\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000118\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219821722923721982\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219961722923721996\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000067\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220711722923722071\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000166\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220761722923722076\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000168\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223411722923722341\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000112\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223631722923722363\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223701722923722370\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223761722923722376\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000061\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224411722923722441\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000080\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355217821722923721782 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:03:22', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061403242131722924204213', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"07-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401370081722924097008\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000037\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401436021722924103602\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000002\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401497731722924109773\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000006\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401552741722924115274\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000143\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402007281722924120728\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000087\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402141121722924134112\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000011\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402180821722924138082\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000082\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402215991722924141599\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000021\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402250611722924145061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000084\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402288361722924148836\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000004\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402325221722924152522\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000009\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402360051722924156005\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000090\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402398351722924159835\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000005\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402434961722924163496\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000012\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402471981722924167198\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000097\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402504921722924170492\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000013\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402540851722924174085\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000088\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402579381722924177938\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000014\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403018401722924181840\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000007\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403060611722924186061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000020\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403097211722924189721\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000017\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403135401722924193540\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000089\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-02-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403170891722924197089\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000094\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403204941722924200494\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000062\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217821722923721782\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000077\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217891722923721789\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000025\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218621722923721862\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218811722923721881\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218901722923721890\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000053\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218971722923721897\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000048\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219631722923721963\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219691722923721969\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000188\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219761722923721976\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000118\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219821722923721982\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219961722923721996\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000067\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220711722923722071\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000166\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220761722923722076\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000168\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223411722923722341\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000112\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223631722923722363\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223701722923722370\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223761722923722376\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000061\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224411722923722441\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000080\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355217821722923721782 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:03:24', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061403242451722924204245', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000099\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '10.90.106.61', '2024-08-06 14:03:24', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061403261951722924206195', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"07-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401370081722924097008\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000037\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401436021722924103602\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000002\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401497731722924109773\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000006\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401552741722924115274\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000143\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402007281722924120728\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000087\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402141121722924134112\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000011\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402180821722924138082\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000082\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402215991722924141599\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000021\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402250611722924145061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000084\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402288361722924148836\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000004\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402325221722924152522\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000009\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402360051722924156005\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000090\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402398351722924159835\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000005\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402434961722924163496\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000012\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402471981722924167198\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000097\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402504921722924170492\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000013\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402540851722924174085\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000088\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402579381722924177938\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000014\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403018401722924181840\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000007\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403060611722924186061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000020\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403097211722924189721\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000017\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403135401722924193540\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000089\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-02-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403170891722924197089\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000094\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403204941722924200494\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000062\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403242431722924204243\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000099\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217821722923721782\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000077\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217891722923721789\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000025\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218621722923721862\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218811722923721881\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218901722923721890\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000053\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218971722923721897\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000048\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219631722923721963\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219691722923721969\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000188\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219761722923721976\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000118\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219821722923721982\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219961722923721996\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000067\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220711722923722071\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000166\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220761722923722076\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000168\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223411722923722341\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000112\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223631722923722363\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223701722923722370\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223761722923722376\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000061\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224411722923722441\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000080\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355217821722923721782 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:03:26', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061403279041722924207904', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000060\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '10.90.106.61', '2024-08-06 14:03:28', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061403281961722924208196', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"07-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401370081722924097008\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000037\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401436021722924103602\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000002\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401497731722924109773\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000006\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401552741722924115274\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000143\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402007281722924120728\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000087\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402141121722924134112\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000011\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402180821722924138082\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000082\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402215991722924141599\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000021\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402250611722924145061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000084\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402288361722924148836\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000004\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402325221722924152522\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000009\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402360051722924156005\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000090\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402398351722924159835\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000005\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402434961722924163496\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000012\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402471981722924167198\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000097\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402504921722924170492\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000013\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402540851722924174085\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000088\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402579381722924177938\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000014\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403018401722924181840\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000007\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403060611722924186061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000020\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403097211722924189721\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000017\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403135401722924193540\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000089\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-02-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403170891722924197089\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000094\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403204941722924200494\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000062\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403242431722924204243\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000099\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403279021722924207902\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000060\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217821722923721782\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000077\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217891722923721789\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000025\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218621722923721862\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218811722923721881\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218901722923721890\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000053\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218971722923721897\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000048\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219631722923721963\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219691722923721969\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000188\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219761722923721976\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000118\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219821722923721982\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219961722923721996\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000067\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220711722923722071\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000166\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220761722923722076\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000168\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223411722923722341\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000112\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223631722923722363\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223701722923722370\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223761722923722376\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000061\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224411722923722441\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000080\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355217821722923721782 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:03:28', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061403302001722924210200', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"07-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401370081722924097008\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000037\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401436021722924103602\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000002\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401497731722924109773\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000006\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401552741722924115274\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000143\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402007281722924120728\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000087\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402141121722924134112\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000011\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402180821722924138082\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000082\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402215991722924141599\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000021\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402250611722924145061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000084\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402288361722924148836\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000004\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402325221722924152522\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000009\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402360051722924156005\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000090\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402398351722924159835\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000005\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402434961722924163496\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000012\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402471981722924167198\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000097\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402504921722924170492\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000013\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402540851722924174085\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000088\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402579381722924177938\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000014\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403018401722924181840\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000007\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403060611722924186061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000020\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403097211722924189721\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000017\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403135401722924193540\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000089\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-02-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403170891722924197089\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000094\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403204941722924200494\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000062\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403242431722924204243\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000099\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403279021722924207902\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000060\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217821722923721782\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000077\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217891722923721789\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000025\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218621722923721862\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218811722923721881\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218901722923721890\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000053\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218971722923721897\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000048\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219631722923721963\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219691722923721969\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000188\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219761722923721976\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000118\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219821722923721982\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219961722923721996\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000067\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220711722923722071\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000166\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220761722923722076\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000168\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223411722923722341\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000112\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223631722923722363\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223701722923722370\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223761722923722376\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000061\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224411722923722441\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000080\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355217821722923721782 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:03:30', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061403318641722924211864', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000097\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '10.90.106.61', '2024-08-06 14:03:32', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061403322521722924212252', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"07-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401370081722924097008\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000037\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401436021722924103602\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000002\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401497731722924109773\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000006\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401552741722924115274\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000143\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402007281722924120728\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000087\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402141121722924134112\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000011\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402180821722924138082\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000082\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402215991722924141599\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000021\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402250611722924145061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000084\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402288361722924148836\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000004\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402325221722924152522\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000009\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402360051722924156005\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000090\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402398351722924159835\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000005\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402434961722924163496\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000012\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402471981722924167198\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000097\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402504921722924170492\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000013\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402540851722924174085\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000088\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402579381722924177938\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000014\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403018401722924181840\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000007\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403060611722924186061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000020\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403097211722924189721\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000017\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403135401722924193540\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000089\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-02-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403170891722924197089\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000094\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403204941722924200494\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000062\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403242431722924204243\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000099\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403279021722924207902\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000060\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217821722923721782\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000077\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217891722923721789\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000025\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218621722923721862\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218811722923721881\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218901722923721890\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000053\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218971722923721897\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000048\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219631722923721963\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219691722923721969\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000188\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219761722923721976\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000118\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219821722923721982\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219961722923721996\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000067\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220711722923722071\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000166\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220761722923722076\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000168\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223411722923722341\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000112\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223631722923722363\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223701722923722370\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223761722923722376\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000061\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224411722923722441\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000080\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355217821722923721782 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:03:32', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061403342511722924214251', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"07-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401370081722924097008\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000037\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401436021722924103602\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000002\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401497731722924109773\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000006\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401552741722924115274\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000143\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402007281722924120728\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000087\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402141121722924134112\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000011\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402180821722924138082\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000082\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402215991722924141599\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000021\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402250611722924145061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000084\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402288361722924148836\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000004\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402325221722924152522\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000009\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402360051722924156005\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000090\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402398351722924159835\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000005\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402434961722924163496\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000012\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402471981722924167198\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000097\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402504921722924170492\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000013\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402540851722924174085\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000088\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402579381722924177938\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000014\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403018401722924181840\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000007\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403060611722924186061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000020\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403097211722924189721\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000017\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403135401722924193540\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000089\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-02-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403170891722924197089\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000094\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403204941722924200494\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000062\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403242431722924204243\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000099\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403279021722924207902\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000060\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217821722923721782\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000077\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217891722923721789\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000025\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218621722923721862\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218811722923721881\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218901722923721890\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000053\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218971722923721897\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000048\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219631722923721963\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219691722923721969\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000188\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219761722923721976\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000118\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219821722923721982\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219961722923721996\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000067\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220711722923722071\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000166\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220761722923722076\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000168\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223411722923722341\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000112\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223631722923722363\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223701722923722370\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223761722923722376\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000061\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224411722923722441\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000080\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355217821722923721782 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:03:34', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061403355421722924215542', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000064\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '10.90.106.61', '2024-08-06 14:03:36', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061403362441722924216244', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"07-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401370081722924097008\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000037\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401436021722924103602\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000002\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401497731722924109773\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000006\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401552741722924115274\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000143\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402007281722924120728\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000087\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402141121722924134112\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000011\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402180821722924138082\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000082\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402215991722924141599\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000021\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402250611722924145061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000084\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402288361722924148836\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000004\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402325221722924152522\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000009\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402360051722924156005\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000090\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402398351722924159835\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000005\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402434961722924163496\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000012\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402471981722924167198\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000097\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402504921722924170492\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000013\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402540851722924174085\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000088\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402579381722924177938\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000014\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403018401722924181840\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000007\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403060611722924186061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000020\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403097211722924189721\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000017\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403135401722924193540\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000089\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-02-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403170891722924197089\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000094\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403204941722924200494\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000062\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403242431722924204243\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000099\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403279021722924207902\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000060\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403355401722924215540\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000064\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217821722923721782\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000077\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217891722923721789\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000025\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218621722923721862\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218811722923721881\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218901722923721890\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000053\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218971722923721897\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000048\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219631722923721963\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219691722923721969\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000188\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219761722923721976\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000118\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219821722923721982\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219961722923721996\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000067\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220711722923722071\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000166\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220761722923722076\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000168\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223411722923722341\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000112\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223631722923722363\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223701722923722370\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223761722923722376\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000061\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355217821722923721782 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:03:36', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061403382491722924218249', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"07-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401370081722924097008\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000037\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401436021722924103602\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000002\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401497731722924109773\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000006\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401552741722924115274\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000143\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402007281722924120728\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000087\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402141121722924134112\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000011\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402180821722924138082\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000082\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402215991722924141599\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000021\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402250611722924145061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000084\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402288361722924148836\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000004\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402325221722924152522\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000009\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402360051722924156005\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000090\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402398351722924159835\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000005\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402434961722924163496\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000012\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402471981722924167198\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000097\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402504921722924170492\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000013\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402540851722924174085\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000088\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402579381722924177938\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000014\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403018401722924181840\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000007\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403060611722924186061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000020\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403097211722924189721\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000017\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403135401722924193540\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000089\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-02-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403170891722924197089\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000094\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403204941722924200494\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000062\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403242431722924204243\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000099\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403279021722924207902\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000060\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403355401722924215540\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000064\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217821722923721782\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000077\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217891722923721789\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000025\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218621722923721862\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218811722923721881\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218901722923721890\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000053\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218971722923721897\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000048\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219631722923721963\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219691722923721969\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000188\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219761722923721976\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000118\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219821722923721982\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219961722923721996\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000067\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220711722923722071\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000166\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220761722923722076\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000168\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223411722923722341\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000112\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223631722923722363\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223701722923722370\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223761722923722376\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000061\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355217821722923721782 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:03:38', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061403389531722924218953', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000050\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '10.90.106.61', '2024-08-06 14:03:39', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061403402481722924220248', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"07-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401370081722924097008\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000037\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401436021722924103602\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000002\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401497731722924109773\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000006\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401552741722924115274\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000143\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402007281722924120728\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000087\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402141121722924134112\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000011\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402180821722924138082\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000082\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402215991722924141599\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000021\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402250611722924145061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000084\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402288361722924148836\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000004\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402325221722924152522\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000009\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402360051722924156005\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000090\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402398351722924159835\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000005\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402434961722924163496\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000012\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402471981722924167198\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000097\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402504921722924170492\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000013\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402540851722924174085\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000088\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402579381722924177938\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000014\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403018401722924181840\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000007\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403060611722924186061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000020\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403097211722924189721\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000017\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403135401722924193540\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000089\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-02-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403170891722924197089\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000094\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403204941722924200494\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000062\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403242431722924204243\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000099\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403279021722924207902\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000060\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403355401722924215540\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000064\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403389511722924218951\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000050\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217821722923721782\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000077\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217891722923721789\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000025\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218621722923721862\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218811722923721881\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218901722923721890\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000053\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218971722923721897\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000048\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219631722923721963\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219691722923721969\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000188\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219761722923721976\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000118\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219821722923721982\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219961722923721996\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000067\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220711722923722071\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000166\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220761722923722076\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000168\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223411722923722341\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000112\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223631722923722363\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223701722923722370\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223761722923722376\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000061\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355217821722923721782 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:03:40', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061403422711722924222271', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"07-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401370081722924097008\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000037\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401436021722924103602\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000002\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401497731722924109773\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000006\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401552741722924115274\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000143\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402007281722924120728\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000087\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402141121722924134112\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000011\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402180821722924138082\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000082\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402215991722924141599\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000021\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402250611722924145061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000084\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402288361722924148836\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000004\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402325221722924152522\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000009\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402360051722924156005\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000090\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402398351722924159835\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000005\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402434961722924163496\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000012\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402471981722924167198\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000097\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402504921722924170492\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000013\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402540851722924174085\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000088\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402579381722924177938\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000014\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403018401722924181840\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000007\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403060611722924186061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000020\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403097211722924189721\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000017\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403135401722924193540\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000089\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-02-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403170891722924197089\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000094\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403204941722924200494\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000062\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403242431722924204243\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000099\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403279021722924207902\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000060\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403355401722924215540\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000064\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403389511722924218951\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000050\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217821722923721782\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000077\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217891722923721789\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000025\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218621722923721862\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218811722923721881\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218901722923721890\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000053\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218971722923721897\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000048\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219631722923721963\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219691722923721969\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000188\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219761722923721976\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000118\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219821722923721982\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219961722923721996\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000067\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220711722923722071\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000166\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220761722923722076\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000168\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223411722923722341\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000112\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223631722923722363\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223701722923722370\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223761722923722376\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000061\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355217821722923721782 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:03:42', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061403428131722924222813', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061355218021722923721802\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000031\", \"taskStatus\": 100, \"destination\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:03:43', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061403429351722924222935', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000058\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '10.90.106.61', '2024-08-06 14:03:43', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061403437781722924223778', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061355217961722923721796\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000038\", \"taskStatus\": 100, \"destination\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:03:44', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061403443071722924224307', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"07-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401370081722924097008\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000037\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401436021722924103602\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000002\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401497731722924109773\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000006\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401552741722924115274\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000143\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402007281722924120728\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000087\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402141121722924134112\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000011\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402180821722924138082\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000082\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402215991722924141599\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000021\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402250611722924145061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000084\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402288361722924148836\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000004\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402325221722924152522\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000009\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402360051722924156005\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000090\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402398351722924159835\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000005\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402434961722924163496\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000012\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402471981722924167198\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000097\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402504921722924170492\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000013\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402540851722924174085\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000088\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402579381722924177938\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000014\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403018401722924181840\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000007\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403060611722924186061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000020\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403097211722924189721\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000017\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403135401722924193540\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000089\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-02-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403170891722924197089\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000094\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403204941722924200494\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000062\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403242431722924204243\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000099\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403279021722924207902\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000060\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403355401722924215540\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000064\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403389511722924218951\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000050\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403429331722924222933\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000058\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217821722923721782\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000077\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217891722923721789\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000025\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218621722923721862\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218811722923721881\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218901722923721890\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000053\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218971722923721897\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000048\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219631722923721963\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219691722923721969\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000188\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219761722923721976\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000118\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219821722923721982\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219961722923721996\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000067\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220711722923722071\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000166\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220761722923722076\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000168\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223411722923722341\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000112\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223631722923722363\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223701722923722370\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223761722923722376\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000061\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355217821722923721782 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:03:44', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061403463081722924226308', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"07-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401370081722924097008\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000037\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401436021722924103602\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000002\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401497731722924109773\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000006\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401552741722924115274\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000143\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402007281722924120728\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000087\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402141121722924134112\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000011\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402180821722924138082\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000082\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402215991722924141599\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000021\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402250611722924145061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000084\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402288361722924148836\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000004\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402325221722924152522\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000009\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402360051722924156005\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000090\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402398351722924159835\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000005\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402434961722924163496\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000012\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402471981722924167198\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000097\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402504921722924170492\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000013\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402540851722924174085\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000088\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402579381722924177938\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000014\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403018401722924181840\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000007\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403060611722924186061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000020\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403097211722924189721\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000017\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403135401722924193540\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000089\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-02-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403170891722924197089\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000094\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403204941722924200494\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000062\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403242431722924204243\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000099\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403279021722924207902\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000060\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403355401722924215540\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000064\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403389511722924218951\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000050\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403429331722924222933\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000058\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217821722923721782\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000077\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217891722923721789\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000025\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218621722923721862\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218811722923721881\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218901722923721890\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000053\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218971722923721897\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000048\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219631722923721963\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219691722923721969\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000188\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219761722923721976\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000118\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219821722923721982\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219961722923721996\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000067\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220711722923722071\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000166\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220761722923722076\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000168\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223411722923722341\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000112\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223631722923722363\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223701722923722370\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223761722923722376\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000061\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355217821722923721782 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:03:46', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061403467661722924226766', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061355218901722923721890\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000053\", \"taskStatus\": 2, \"destination\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:03:47', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061403467781722924226778', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061355218971722923721897\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000048\", \"taskStatus\": 2, \"destination\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:03:47', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061403470741722924227074', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000063\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '10.90.106.61', '2024-08-06 14:03:47', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061403483571722924228357', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"07-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401370081722924097008\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000037\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401436021722924103602\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000002\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401497731722924109773\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000006\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401552741722924115274\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000143\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402007281722924120728\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000087\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402141121722924134112\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000011\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402180821722924138082\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000082\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402215991722924141599\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000021\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402250611722924145061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000084\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402288361722924148836\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000004\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402325221722924152522\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000009\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402360051722924156005\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000090\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402398351722924159835\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000005\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402434961722924163496\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000012\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402471981722924167198\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000097\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402504921722924170492\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000013\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402540851722924174085\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000088\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402579381722924177938\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000014\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403018401722924181840\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000007\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403060611722924186061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000020\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403097211722924189721\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000017\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403135401722924193540\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000089\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-02-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403170891722924197089\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000094\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403204941722924200494\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000062\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403242431722924204243\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000099\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403279021722924207902\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000060\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403355401722924215540\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000064\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403389511722924218951\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000050\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403429331722924222933\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000058\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403470711722924227071\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000063\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217821722923721782\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000077\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217891722923721789\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000025\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218621722923721862\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218811722923721881\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219631722923721963\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219691722923721969\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000188\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219761722923721976\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000118\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219821722923721982\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219961722923721996\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000067\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220711722923722071\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000166\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220761722923722076\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000168\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223411722923722341\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000112\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223631722923722363\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223701722923722370\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223761722923722376\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000061\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355217821722923721782 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:03:48', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061403502991722924230299', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"07-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401370081722924097008\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000037\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401436021722924103602\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000002\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401497731722924109773\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000006\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401552741722924115274\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000143\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402007281722924120728\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000087\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402141121722924134112\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000011\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402180821722924138082\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000082\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402215991722924141599\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000021\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402250611722924145061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000084\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402288361722924148836\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000004\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402325221722924152522\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000009\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402360051722924156005\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000090\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402398351722924159835\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000005\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402434961722924163496\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000012\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402471981722924167198\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000097\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402504921722924170492\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000013\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402540851722924174085\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000088\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402579381722924177938\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000014\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403018401722924181840\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000007\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403060611722924186061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000020\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403097211722924189721\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000017\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403135401722924193540\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000089\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-02-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403170891722924197089\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000094\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403204941722924200494\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000062\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403242431722924204243\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000099\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403279021722924207902\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000060\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403355401722924215540\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000064\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403389511722924218951\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000050\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403429331722924222933\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000058\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403470711722924227071\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000063\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217821722923721782\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000077\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217891722923721789\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000025\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218621722923721862\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218811722923721881\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219631722923721963\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219691722923721969\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000188\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219761722923721976\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000118\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219821722923721982\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219961722923721996\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000067\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220711722923722071\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000166\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220761722923722076\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000168\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223411722923722341\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000112\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223631722923722363\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223701722923722370\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223761722923722376\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000061\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355217821722923721782 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:03:50', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061403514021722924231402', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000057\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '10.90.106.61', '2024-08-06 14:03:51', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061403523061722924232306', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"07-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401370081722924097008\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000037\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401436021722924103602\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000002\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401497731722924109773\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000006\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401552741722924115274\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000143\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402007281722924120728\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000087\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402141121722924134112\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000011\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402180821722924138082\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000082\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402215991722924141599\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000021\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402250611722924145061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000084\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402288361722924148836\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000004\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402325221722924152522\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000009\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402360051722924156005\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000090\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402398351722924159835\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000005\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402434961722924163496\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000012\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402471981722924167198\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000097\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402504921722924170492\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000013\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402540851722924174085\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000088\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402579381722924177938\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000014\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403018401722924181840\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000007\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403060611722924186061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000020\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403097211722924189721\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000017\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403135401722924193540\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000089\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-02-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403170891722924197089\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000094\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403204941722924200494\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000062\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403242431722924204243\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000099\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403279021722924207902\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000060\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403355401722924215540\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000064\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403389511722924218951\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000050\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403429331722924222933\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000058\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403470711722924227071\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000063\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403514001722924231400\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000057\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217821722923721782\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000077\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217891722923721789\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000025\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218621722923721862\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218811722923721881\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219631722923721963\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219691722923721969\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000188\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219761722923721976\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000118\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219821722923721982\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219961722923721996\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000067\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220711722923722071\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000166\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220761722923722076\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000168\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223411722923722341\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000112\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223631722923722363\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223701722923722370\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223761722923722376\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000061\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355217821722923721782 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:03:52', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061403543131722924234313', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"07-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401370081722924097008\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000037\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401436021722924103602\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000002\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401497731722924109773\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000006\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401552741722924115274\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000143\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402007281722924120728\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000087\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402141121722924134112\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000011\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402180821722924138082\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000082\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402215991722924141599\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000021\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402250611722924145061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000084\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402288361722924148836\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000004\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402325221722924152522\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000009\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402360051722924156005\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000090\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402398351722924159835\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000005\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402434961722924163496\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000012\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402471981722924167198\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000097\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402504921722924170492\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000013\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402540851722924174085\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000088\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402579381722924177938\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000014\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403018401722924181840\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000007\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403060611722924186061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000020\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403097211722924189721\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000017\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403135401722924193540\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000089\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-02-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403170891722924197089\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000094\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403204941722924200494\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000062\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403242431722924204243\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000099\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403279021722924207902\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000060\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403355401722924215540\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000064\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403389511722924218951\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000050\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403429331722924222933\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000058\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403470711722924227071\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000063\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403514001722924231400\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000057\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217821722923721782\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000077\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217891722923721789\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000025\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218621722923721862\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218811722923721881\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219631722923721963\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219691722923721969\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000188\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219761722923721976\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000118\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219821722923721982\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219961722923721996\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000067\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220711722923722071\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000166\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220761722923722076\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000168\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223411722923722341\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000112\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223631722923722363\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223701722923722370\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223761722923722376\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000061\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355217821722923721782 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:03:54', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061403555851722924235585', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000100\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '10.90.106.61', '2024-08-06 14:03:56', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061403563321722924236332', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"07-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401370081722924097008\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000037\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401436021722924103602\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000002\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401497731722924109773\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000006\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401552741722924115274\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000143\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402007281722924120728\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000087\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402141121722924134112\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000011\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402180821722924138082\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000082\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402215991722924141599\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000021\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402250611722924145061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000084\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402288361722924148836\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000004\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402325221722924152522\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000009\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402360051722924156005\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000090\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402398351722924159835\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000005\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402434961722924163496\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000012\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402471981722924167198\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000097\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402504921722924170492\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000013\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402540851722924174085\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000088\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402579381722924177938\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000014\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403018401722924181840\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000007\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403060611722924186061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000020\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403097211722924189721\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000017\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403135401722924193540\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000089\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-02-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403170891722924197089\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000094\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403204941722924200494\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000062\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403242431722924204243\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000099\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403279021722924207902\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000060\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403355401722924215540\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000064\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403389511722924218951\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000050\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403429331722924222933\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000058\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403470711722924227071\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000063\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403514001722924231400\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000057\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403555821722924235582\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000100\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217821722923721782\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000077\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217891722923721789\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000025\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218621722923721862\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218811722923721881\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219631722923721963\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219691722923721969\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000188\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219761722923721976\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000118\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219821722923721982\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219961722923721996\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000067\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220711722923722071\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000166\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220761722923722076\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000168\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223411722923722341\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000112\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223631722923722363\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223701722923722370\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355217821722923721782 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:03:56', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061403567981722924236798', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061355217621722923721762\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000083\", \"taskStatus\": 100, \"destination\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:03:57', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061403577691722924237769', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061355217521722923721752\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000073\", \"taskStatus\": 100, \"destination\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:03:58', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061403583621722924238362', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"07-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401370081722924097008\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000037\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401436021722924103602\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000002\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401497731722924109773\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000006\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401552741722924115274\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000143\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402007281722924120728\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000087\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402141121722924134112\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000011\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402180821722924138082\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000082\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402215991722924141599\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000021\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402250611722924145061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000084\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402288361722924148836\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000004\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402325221722924152522\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000009\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402360051722924156005\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000090\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402398351722924159835\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000005\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402434961722924163496\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000012\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402471981722924167198\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000097\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402504921722924170492\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000013\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402540851722924174085\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000088\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402579381722924177938\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000014\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403018401722924181840\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000007\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403060611722924186061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000020\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403097211722924189721\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000017\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403135401722924193540\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000089\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-02-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403170891722924197089\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000094\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403204941722924200494\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000062\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403242431722924204243\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000099\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403279021722924207902\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000060\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403355401722924215540\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000064\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403389511722924218951\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000050\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403429331722924222933\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000058\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403470711722924227071\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000063\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403514001722924231400\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000057\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403555821722924235582\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000100\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217821722923721782\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000077\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217891722923721789\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000025\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218621722923721862\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218811722923721881\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219631722923721963\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219691722923721969\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000188\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219761722923721976\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000118\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219821722923721982\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219961722923721996\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000067\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220711722923722071\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000166\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220761722923722076\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000168\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223411722923722341\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000112\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223631722923722363\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223701722923722370\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355217821722923721782 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:03:58', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061404003781722924240378', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"07-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401370081722924097008\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000037\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401436021722924103602\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000002\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401497731722924109773\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000006\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401552741722924115274\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000143\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402007281722924120728\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000087\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402141121722924134112\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000011\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402180821722924138082\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000082\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402215991722924141599\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000021\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402250611722924145061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000084\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402288361722924148836\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000004\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402325221722924152522\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000009\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402360051722924156005\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000090\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402398351722924159835\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000005\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402434961722924163496\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000012\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402471981722924167198\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000097\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402504921722924170492\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000013\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402540851722924174085\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000088\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402579381722924177938\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000014\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403018401722924181840\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000007\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403060611722924186061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000020\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403097211722924189721\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000017\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403135401722924193540\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000089\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-02-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403170891722924197089\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000094\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403204941722924200494\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000062\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403242431722924204243\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000099\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403279021722924207902\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000060\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403355401722924215540\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000064\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403389511722924218951\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000050\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403429331722924222933\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000058\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403470711722924227071\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000063\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403514001722924231400\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000057\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403555821722924235582\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000100\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217821722923721782\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000077\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355217891722923721789\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000025\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218621722923721862\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218811722923721881\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219631722923721963\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219691722923721969\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000188\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219761722923721976\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000118\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219821722923721982\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219961722923721996\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000067\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220711722923722071\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000166\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220761722923722076\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000168\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223411722923722341\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000112\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223631722923722363\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223701722923722370\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355217821722923721782 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:04:00', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061404009331722924240933', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061355217821722923721782\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000077\", \"taskStatus\": 2, \"destination\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:04:01', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061404009371722924240937', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061355217891722923721789\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000025\", \"taskStatus\": 2, \"destination\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:04:01', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061404023691722924242369', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"07-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401370081722924097008\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000037\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401436021722924103602\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000002\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401497731722924109773\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000006\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401552741722924115274\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000143\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402007281722924120728\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000087\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402141121722924134112\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000011\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402180821722924138082\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000082\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402215991722924141599\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000021\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402250611722924145061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000084\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402288361722924148836\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000004\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402325221722924152522\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000009\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402360051722924156005\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000090\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402398351722924159835\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000005\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402434961722924163496\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000012\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402471981722924167198\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000097\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402504921722924170492\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000013\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402540851722924174085\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000088\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402579381722924177938\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000014\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403018401722924181840\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000007\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403060611722924186061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000020\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403097211722924189721\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000017\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403135401722924193540\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000089\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-02-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403170891722924197089\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000094\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403204941722924200494\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000062\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403242431722924204243\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000099\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403279021722924207902\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000060\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403355401722924215540\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000064\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403389511722924218951\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000050\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403429331722924222933\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000058\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403470711722924227071\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000063\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403514001722924231400\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000057\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403555821722924235582\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000100\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218621722923721862\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218811722923721881\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219631722923721963\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219691722923721969\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000188\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219761722923721976\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000118\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219821722923721982\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219961722923721996\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000067\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220711722923722071\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000166\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220761722923722076\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000168\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223411722923722341\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000112\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223631722923722363\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223701722923722370\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223761722923722376\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000061\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355218621722923721862 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:04:02', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061404043631722924244363', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"07-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401370081722924097008\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000037\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401436021722924103602\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000002\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401497731722924109773\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000006\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401552741722924115274\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000143\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402007281722924120728\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000087\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402141121722924134112\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000011\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402180821722924138082\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000082\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402215991722924141599\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000021\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402250611722924145061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000084\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402288361722924148836\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000004\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402325221722924152522\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000009\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402360051722924156005\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000090\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402398351722924159835\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000005\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402434961722924163496\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000012\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402471981722924167198\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000097\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402504921722924170492\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000013\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402540851722924174085\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000088\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402579381722924177938\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000014\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403018401722924181840\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000007\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403060611722924186061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000020\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403097211722924189721\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000017\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403135401722924193540\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000089\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-02-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403170891722924197089\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000094\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403204941722924200494\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000062\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403242431722924204243\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000099\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403279021722924207902\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000060\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403355401722924215540\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000064\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403389511722924218951\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000050\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403429331722924222933\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000058\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403470711722924227071\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000063\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403514001722924231400\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000057\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403555821722924235582\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000100\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218621722923721862\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218811722923721881\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219631722923721963\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219691722923721969\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000188\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219761722923721976\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000118\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219821722923721982\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219961722923721996\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000067\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220711722923722071\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000166\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220761722923722076\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000168\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223411722923722341\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000112\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223631722923722363\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223701722923722370\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223761722923722376\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000061\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355218621722923721862 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:04:04', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061404063391722924246339', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"07-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401370081722924097008\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000037\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401436021722924103602\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000002\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401497731722924109773\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000006\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401552741722924115274\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000143\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402007281722924120728\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000087\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402141121722924134112\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000011\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402180821722924138082\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000082\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402215991722924141599\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000021\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402250611722924145061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000084\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402288361722924148836\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000004\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402325221722924152522\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000009\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402360051722924156005\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000090\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402398351722924159835\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000005\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402434961722924163496\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000012\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402471981722924167198\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000097\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402504921722924170492\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000013\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402540851722924174085\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000088\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402579381722924177938\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000014\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403018401722924181840\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000007\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403060611722924186061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000020\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403097211722924189721\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000017\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403135401722924193540\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000089\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-02-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403170891722924197089\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000094\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403204941722924200494\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000062\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403242431722924204243\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000099\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403279021722924207902\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000060\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403355401722924215540\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000064\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403389511722924218951\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000050\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403429331722924222933\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000058\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403470711722924227071\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000063\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403514001722924231400\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000057\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403555821722924235582\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000100\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218621722923721862\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218811722923721881\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219631722923721963\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219691722923721969\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000188\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219761722923721976\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000118\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219821722923721982\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219961722923721996\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000067\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220711722923722071\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000166\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220761722923722076\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000168\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223411722923722341\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000112\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223631722923722363\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223701722923722370\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223761722923722376\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000061\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355218621722923721862 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:04:06', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061404083441722924248344', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"07-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401370081722924097008\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000037\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401436021722924103602\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000002\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401497731722924109773\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000006\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401552741722924115274\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000143\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402007281722924120728\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000087\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402141121722924134112\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000011\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402180821722924138082\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000082\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402215991722924141599\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000021\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402250611722924145061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000084\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402288361722924148836\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000004\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402325221722924152522\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000009\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402360051722924156005\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000090\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402398351722924159835\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000005\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402434961722924163496\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000012\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402471981722924167198\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000097\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402504921722924170492\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000013\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402540851722924174085\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000088\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402579381722924177938\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000014\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403018401722924181840\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000007\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403060611722924186061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000020\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403097211722924189721\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000017\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403135401722924193540\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000089\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-02-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403170891722924197089\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000094\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403204941722924200494\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000062\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403242431722924204243\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000099\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403279021722924207902\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000060\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403355401722924215540\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000064\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403389511722924218951\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000050\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403429331722924222933\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000058\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403470711722924227071\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000063\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403514001722924231400\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000057\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403555821722924235582\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000100\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218621722923721862\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218811722923721881\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219631722923721963\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219691722923721969\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000188\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219761722923721976\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000118\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219821722923721982\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219961722923721996\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000067\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220711722923722071\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000166\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220761722923722076\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000168\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223411722923722341\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000112\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223631722923722363\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223701722923722370\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223761722923722376\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000061\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355218621722923721862 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:04:08', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061404103441722924250344', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"07-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401370081722924097008\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000037\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401436021722924103602\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000002\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401497731722924109773\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000006\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401552741722924115274\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000143\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402007281722924120728\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000087\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402141121722924134112\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000011\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402180821722924138082\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000082\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402215991722924141599\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000021\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402250611722924145061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000084\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402288361722924148836\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000004\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402325221722924152522\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000009\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402360051722924156005\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000090\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402398351722924159835\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000005\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402434961722924163496\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000012\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402471981722924167198\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000097\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402504921722924170492\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000013\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402540851722924174085\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000088\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402579381722924177938\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000014\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403018401722924181840\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000007\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403060611722924186061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000020\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403097211722924189721\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000017\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403135401722924193540\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000089\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-02-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403170891722924197089\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000094\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403204941722924200494\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000062\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403242431722924204243\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000099\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403279021722924207902\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000060\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403355401722924215540\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000064\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403389511722924218951\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000050\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403429331722924222933\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000058\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403470711722924227071\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000063\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403514001722924231400\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000057\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403555821722924235582\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000100\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218621722923721862\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218811722923721881\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219631722923721963\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219691722923721969\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000188\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219761722923721976\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000118\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219821722923721982\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219961722923721996\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000067\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220711722923722071\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000166\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220761722923722076\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000168\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223411722923722341\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000112\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223631722923722363\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223701722923722370\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223761722923722376\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000061\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355218621722923721862 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:04:10', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061404119781722924251978', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"ASRS-#1\", \"vehicleNo\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"确认成功,放行\\\"}\"', '10.90.106.61', '2024-08-06 14:04:12', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061404124001722924252400', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"07-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401370081722924097008\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000037\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401436021722924103602\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000002\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401497731722924109773\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000006\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401552741722924115274\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000143\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402007281722924120728\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000087\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402141121722924134112\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000011\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402180821722924138082\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000082\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402215991722924141599\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000021\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402250611722924145061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000084\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402288361722924148836\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000004\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402325221722924152522\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000009\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402360051722924156005\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000090\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402398351722924159835\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000005\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402434961722924163496\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000012\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402471981722924167198\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000097\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402504921722924170492\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000013\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402540851722924174085\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000088\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402579381722924177938\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000014\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403018401722924181840\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000007\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403060611722924186061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000020\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403097211722924189721\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000017\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403135401722924193540\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000089\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-02-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403170891722924197089\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000094\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403204941722924200494\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000062\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403242431722924204243\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000099\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403279021722924207902\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000060\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403355401722924215540\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000064\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403389511722924218951\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000050\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403429331722924222933\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000058\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403470711722924227071\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000063\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403514001722924231400\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000057\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403555821722924235582\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000100\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218621722923721862\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218811722923721881\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219631722923721963\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219691722923721969\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000188\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219761722923721976\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000118\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219821722923721982\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219961722923721996\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000067\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220711722923722071\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000166\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220761722923722076\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000168\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223411722923722341\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000112\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223631722923722363\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223701722923722370\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223761722923722376\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000061\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355218621722923721862 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:04:12', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061404126221722924252622', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000052\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '10.90.106.61', '2024-08-06 14:04:13', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061404143701722924254370', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"07-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401370081722924097008\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000037\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401436021722924103602\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000002\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401497731722924109773\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000006\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401552741722924115274\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000143\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402007281722924120728\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000087\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402141121722924134112\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000011\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402180821722924138082\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000082\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402215991722924141599\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000021\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402250611722924145061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000084\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402288361722924148836\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000004\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402325221722924152522\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000009\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402360051722924156005\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000090\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402398351722924159835\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000005\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402434961722924163496\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000012\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402471981722924167198\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000097\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402504921722924170492\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000013\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402540851722924174085\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000088\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402579381722924177938\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000014\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403018401722924181840\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000007\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403060611722924186061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000020\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403097211722924189721\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000017\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403135401722924193540\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000089\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-02-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403170891722924197089\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000094\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403204941722924200494\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000062\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403242431722924204243\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000099\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403279021722924207902\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000060\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403355401722924215540\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000064\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403389511722924218951\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000050\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403429331722924222933\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000058\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403470711722924227071\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000063\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403514001722924231400\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000057\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403555821722924235582\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000100\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404126201722924252620\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000052\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218621722923721862\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218811722923721881\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219631722923721963\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219691722923721969\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000188\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219761722923721976\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000118\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219821722923721982\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219961722923721996\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000067\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220711722923722071\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000166\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220761722923722076\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000168\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223411722923722341\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000112\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223631722923722363\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223701722923722370\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223761722923722376\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000061\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355218621722923721862 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:04:14', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061404163991722924256399', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"07-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401370081722924097008\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000037\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401436021722924103602\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000002\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401497731722924109773\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000006\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401552741722924115274\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000143\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402007281722924120728\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000087\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402141121722924134112\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000011\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402180821722924138082\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000082\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402215991722924141599\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000021\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402250611722924145061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000084\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402288361722924148836\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000004\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402325221722924152522\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000009\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402360051722924156005\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000090\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402398351722924159835\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000005\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402434961722924163496\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000012\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402471981722924167198\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000097\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402504921722924170492\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000013\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402540851722924174085\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000088\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402579381722924177938\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000014\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403018401722924181840\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000007\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403060611722924186061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000020\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403097211722924189721\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000017\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403135401722924193540\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000089\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-02-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403170891722924197089\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000094\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403204941722924200494\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000062\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403242431722924204243\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000099\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403279021722924207902\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000060\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403355401722924215540\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000064\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403389511722924218951\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000050\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403429331722924222933\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000058\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403470711722924227071\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000063\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403514001722924231400\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000057\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403555821722924235582\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000100\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404126201722924252620\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000052\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218621722923721862\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218811722923721881\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219631722923721963\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219691722923721969\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000188\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219761722923721976\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000118\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219821722923721982\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219961722923721996\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000067\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220711722923722071\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000166\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220761722923722076\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000168\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223411722923722341\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000112\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223631722923722363\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223701722923722370\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223761722923722376\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000061\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355218621722923721862 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:04:16', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061404176511722924257651', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000049\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '10.90.106.61', '2024-08-06 14:04:18', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061404184471722924258447', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"07-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401370081722924097008\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000037\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401436021722924103602\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000002\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401497731722924109773\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000006\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401552741722924115274\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000143\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402007281722924120728\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000087\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402141121722924134112\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000011\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402180821722924138082\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000082\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402215991722924141599\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000021\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402250611722924145061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000084\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402288361722924148836\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000004\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402325221722924152522\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000009\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402360051722924156005\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000090\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402398351722924159835\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000005\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402434961722924163496\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000012\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402471981722924167198\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000097\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402504921722924170492\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000013\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402540851722924174085\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000088\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402579381722924177938\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000014\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403018401722924181840\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000007\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403060611722924186061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000020\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403097211722924189721\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000017\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403135401722924193540\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000089\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-02-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403170891722924197089\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000094\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403204941722924200494\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000062\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403242431722924204243\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000099\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403279021722924207902\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000060\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403355401722924215540\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000064\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403389511722924218951\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000050\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403429331722924222933\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000058\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403470711722924227071\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000063\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403514001722924231400\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000057\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403555821722924235582\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000100\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404126201722924252620\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000052\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404176491722924257649\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000049\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218621722923721862\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218811722923721881\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219631722923721963\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219691722923721969\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000188\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219761722923721976\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000118\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219821722923721982\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219961722923721996\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000067\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220711722923722071\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000166\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220761722923722076\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000168\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223411722923722341\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000112\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223631722923722363\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223701722923722370\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355218621722923721862 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:04:18', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061404204081722924260408', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"07-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401370081722924097008\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000037\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401436021722924103602\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000002\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401497731722924109773\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000006\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401552741722924115274\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000143\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402007281722924120728\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000087\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402141121722924134112\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000011\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402180821722924138082\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000082\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402215991722924141599\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000021\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402250611722924145061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000084\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402288361722924148836\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000004\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402325221722924152522\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000009\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402360051722924156005\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000090\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402398351722924159835\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000005\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402434961722924163496\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000012\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402471981722924167198\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000097\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402504921722924170492\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000013\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402540851722924174085\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000088\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402579381722924177938\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000014\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403018401722924181840\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000007\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403060611722924186061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000020\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403097211722924189721\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000017\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403135401722924193540\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000089\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-02-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403170891722924197089\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000094\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403204941722924200494\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000062\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403242431722924204243\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000099\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403279021722924207902\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000060\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403355401722924215540\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000064\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403389511722924218951\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000050\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403429331722924222933\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000058\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403470711722924227071\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000063\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403514001722924231400\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000057\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403555821722924235582\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000100\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404126201722924252620\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000052\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404176491722924257649\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000049\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218621722923721862\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218811722923721881\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219631722923721963\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219691722923721969\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000188\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219761722923721976\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000118\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219821722923721982\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219961722923721996\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000067\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220711722923722071\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000166\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220761722923722076\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000168\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223411722923722341\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000112\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223631722923722363\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223701722923722370\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355218621722923721862 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:04:20', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061404224171722924262417', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"07-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401370081722924097008\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000037\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401436021722924103602\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000002\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401497731722924109773\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000006\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401552741722924115274\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000143\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402007281722924120728\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000087\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402141121722924134112\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000011\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402180821722924138082\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000082\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402215991722924141599\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000021\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402250611722924145061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000084\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402288361722924148836\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000004\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402325221722924152522\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000009\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402360051722924156005\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000090\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402398351722924159835\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000005\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402434961722924163496\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000012\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402471981722924167198\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000097\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402504921722924170492\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000013\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402540851722924174085\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000088\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402579381722924177938\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000014\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403018401722924181840\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000007\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403060611722924186061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000020\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403097211722924189721\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000017\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403135401722924193540\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000089\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-02-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403170891722924197089\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000094\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403204941722924200494\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000062\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403242431722924204243\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000099\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403279021722924207902\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000060\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403355401722924215540\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000064\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403389511722924218951\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000050\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403429331722924222933\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000058\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403470711722924227071\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000063\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403514001722924231400\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000057\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403555821722924235582\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000100\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404126201722924252620\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000052\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404176491722924257649\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000049\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218621722923721862\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218811722923721881\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219631722923721963\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219691722923721969\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000188\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219761722923721976\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000118\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219821722923721982\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219961722923721996\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000067\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220711722923722071\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000166\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220761722923722076\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000168\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223411722923722341\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000112\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223631722923722363\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223701722923722370\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355218621722923721862 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:04:22', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061404244031722924264403', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"07-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401370081722924097008\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000037\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401436021722924103602\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000002\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401497731722924109773\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000006\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401552741722924115274\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000143\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402007281722924120728\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000087\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402141121722924134112\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000011\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402180821722924138082\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000082\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402215991722924141599\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000021\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402250611722924145061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000084\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402288361722924148836\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000004\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402325221722924152522\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000009\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402360051722924156005\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000090\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402398351722924159835\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000005\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402434961722924163496\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000012\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402471981722924167198\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000097\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402504921722924170492\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000013\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402540851722924174085\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000088\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402579381722924177938\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000014\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403018401722924181840\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000007\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403060611722924186061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000020\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403097211722924189721\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000017\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403135401722924193540\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000089\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-02-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403170891722924197089\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000094\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403204941722924200494\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000062\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403242431722924204243\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000099\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403279021722924207902\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000060\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403355401722924215540\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000064\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403389511722924218951\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000050\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403429331722924222933\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000058\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403470711722924227071\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000063\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403514001722924231400\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000057\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403555821722924235582\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000100\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404126201722924252620\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000052\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404176491722924257649\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000049\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218621722923721862\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218811722923721881\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219631722923721963\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219691722923721969\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000188\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219761722923721976\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000118\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219821722923721982\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219961722923721996\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000067\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220711722923722071\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000166\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220761722923722076\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000168\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223411722923722341\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000112\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223631722923722363\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223701722923722370\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355218621722923721862 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:04:24', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061404258241722924265824', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000055\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '10.90.106.61', '2024-08-06 14:04:26', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061404264581722924266458', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"07-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401370081722924097008\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000037\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401436021722924103602\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000002\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401497731722924109773\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000006\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401552741722924115274\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000143\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402007281722924120728\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000087\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402141121722924134112\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000011\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402180821722924138082\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000082\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402215991722924141599\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000021\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402250611722924145061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000084\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402288361722924148836\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000004\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402325221722924152522\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000009\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402360051722924156005\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000090\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402398351722924159835\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000005\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402434961722924163496\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000012\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402471981722924167198\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000097\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402504921722924170492\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000013\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402540851722924174085\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000088\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402579381722924177938\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000014\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403018401722924181840\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000007\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403060611722924186061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000020\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403097211722924189721\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000017\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403135401722924193540\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000089\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-02-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403170891722924197089\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000094\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403204941722924200494\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000062\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403242431722924204243\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000099\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403279021722924207902\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000060\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403355401722924215540\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000064\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403389511722924218951\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000050\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403429331722924222933\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000058\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403470711722924227071\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000063\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403514001722924231400\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000057\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403555821722924235582\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000100\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404126201722924252620\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000052\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404176491722924257649\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000049\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404258211722924265821\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000055\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218621722923721862\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218811722923721881\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219631722923721963\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219691722923721969\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000188\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219761722923721976\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000118\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219821722923721982\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219961722923721996\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000067\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220711722923722071\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000166\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220761722923722076\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000168\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223411722923722341\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000112\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223631722923722363\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355218621722923721862 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:04:26', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061404272691722924267269', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"ASRS-#1\", \"vehicleNo\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"确认成功,放行\\\"}\"', '10.90.106.61', '2024-08-06 14:04:27', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061404284181722924268418', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"07-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401370081722924097008\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000037\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401436021722924103602\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000002\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401497731722924109773\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000006\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401552741722924115274\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000143\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402007281722924120728\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000087\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402141121722924134112\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000011\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402180821722924138082\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000082\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402215991722924141599\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000021\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402250611722924145061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000084\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402288361722924148836\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000004\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402325221722924152522\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000009\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402360051722924156005\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000090\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402398351722924159835\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000005\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402434961722924163496\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000012\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402471981722924167198\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000097\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402504921722924170492\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000013\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402540851722924174085\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000088\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402579381722924177938\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000014\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403018401722924181840\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000007\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403060611722924186061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000020\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403097211722924189721\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000017\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403135401722924193540\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000089\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-02-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403170891722924197089\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000094\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403204941722924200494\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000062\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403242431722924204243\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000099\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403279021722924207902\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000060\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403355401722924215540\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000064\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403389511722924218951\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000050\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403429331722924222933\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000058\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403470711722924227071\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000063\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403514001722924231400\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000057\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403555821722924235582\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000100\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404126201722924252620\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000052\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404176491722924257649\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000049\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404258211722924265821\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000055\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218621722923721862\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218811722923721881\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219631722923721963\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219691722923721969\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000188\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219761722923721976\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000118\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219821722923721982\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219961722923721996\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000067\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220711722923722071\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000166\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220761722923722076\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000168\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223411722923722341\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000112\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223631722923722363\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355218621722923721862 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:04:28', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061404297611722924269761', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000066\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '10.90.106.61', '2024-08-06 14:04:30', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061404304371722924270437', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"07-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401370081722924097008\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000037\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401436021722924103602\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000002\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401497731722924109773\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000006\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401552741722924115274\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000143\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402007281722924120728\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000087\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402141121722924134112\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000011\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402180821722924138082\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000082\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402215991722924141599\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000021\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402250611722924145061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000084\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402288361722924148836\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000004\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402325221722924152522\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000009\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402360051722924156005\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000090\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402398351722924159835\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000005\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402434961722924163496\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000012\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402471981722924167198\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000097\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402504921722924170492\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000013\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402540851722924174085\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000088\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402579381722924177938\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000014\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403018401722924181840\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000007\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403060611722924186061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000020\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403097211722924189721\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000017\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403135401722924193540\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000089\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-02-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403170891722924197089\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000094\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403204941722924200494\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000062\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403242431722924204243\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000099\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403279021722924207902\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000060\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403355401722924215540\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000064\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403389511722924218951\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000050\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403429331722924222933\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000058\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403470711722924227071\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000063\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403514001722924231400\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000057\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403555821722924235582\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000100\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404126201722924252620\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000052\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404176491722924257649\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000049\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404258211722924265821\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000055\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404297581722924269758\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000066\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218621722923721862\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218811722923721881\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219631722923721963\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219691722923721969\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000188\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219761722923721976\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000118\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219821722923721982\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219961722923721996\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000067\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220711722923722071\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000166\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220761722923722076\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000168\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223411722923722341\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000112\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355218621722923721862 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:04:30', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061404324421722924272442', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"07-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401370081722924097008\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000037\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401436021722924103602\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000002\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401497731722924109773\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000006\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401552741722924115274\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000143\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402007281722924120728\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000087\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402141121722924134112\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000011\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402180821722924138082\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000082\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402215991722924141599\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000021\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402250611722924145061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000084\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402288361722924148836\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000004\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402325221722924152522\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000009\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402360051722924156005\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000090\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402398351722924159835\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000005\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402434961722924163496\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000012\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402471981722924167198\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000097\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402504921722924170492\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000013\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402540851722924174085\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000088\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402579381722924177938\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000014\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403018401722924181840\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000007\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403060611722924186061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000020\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403097211722924189721\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000017\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403135401722924193540\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000089\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-02-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403170891722924197089\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000094\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403204941722924200494\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000062\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403242431722924204243\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000099\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403279021722924207902\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000060\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403355401722924215540\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000064\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403389511722924218951\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000050\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403429331722924222933\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000058\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403470711722924227071\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000063\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403514001722924231400\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000057\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403555821722924235582\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000100\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404126201722924252620\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000052\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404176491722924257649\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000049\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404258211722924265821\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000055\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404297581722924269758\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000066\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218621722923721862\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218811722923721881\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219631722923721963\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219691722923721969\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000188\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219761722923721976\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000118\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219821722923721982\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219961722923721996\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000067\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220711722923722071\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000166\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220761722923722076\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000168\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223411722923722341\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000112\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355218621722923721862 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:04:32', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061404344971722924274497', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"07-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401370081722924097008\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000037\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401436021722924103602\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000002\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401497731722924109773\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000006\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401552741722924115274\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000143\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402007281722924120728\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000087\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402141121722924134112\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000011\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402180821722924138082\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000082\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402215991722924141599\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000021\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402250611722924145061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000084\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402288361722924148836\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000004\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402325221722924152522\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000009\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402360051722924156005\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000090\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402398351722924159835\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000005\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402434961722924163496\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000012\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402471981722924167198\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000097\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402504921722924170492\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000013\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402540851722924174085\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000088\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402579381722924177938\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000014\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403018401722924181840\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000007\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403060611722924186061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000020\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403097211722924189721\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000017\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403135401722924193540\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000089\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-02-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403170891722924197089\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000094\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403204941722924200494\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000062\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403242431722924204243\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000099\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403279021722924207902\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000060\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403355401722924215540\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000064\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403389511722924218951\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000050\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403429331722924222933\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000058\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403470711722924227071\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000063\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403514001722924231400\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000057\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403555821722924235582\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000100\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404126201722924252620\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000052\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404176491722924257649\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000049\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404258211722924265821\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000055\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404297581722924269758\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000066\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218621722923721862\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218811722923721881\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219631722923721963\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219691722923721969\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000188\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219761722923721976\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000118\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219821722923721982\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219961722923721996\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000067\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220711722923722071\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000166\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220761722923722076\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000168\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223411722923722341\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000112\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355218621722923721862 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:04:34', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061404364631722924276463', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"07-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401370081722924097008\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000037\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401436021722924103602\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000002\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401497731722924109773\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000006\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401552741722924115274\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000143\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402007281722924120728\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000087\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402141121722924134112\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000011\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402180821722924138082\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000082\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402215991722924141599\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000021\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402250611722924145061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000084\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402288361722924148836\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000004\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402325221722924152522\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000009\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402360051722924156005\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000090\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402398351722924159835\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000005\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402434961722924163496\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000012\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402471981722924167198\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000097\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402504921722924170492\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000013\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402540851722924174085\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000088\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402579381722924177938\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000014\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403018401722924181840\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000007\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403060611722924186061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000020\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403097211722924189721\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000017\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403135401722924193540\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000089\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-02-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403170891722924197089\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000094\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403204941722924200494\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000062\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403242431722924204243\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000099\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403279021722924207902\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000060\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403355401722924215540\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000064\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403389511722924218951\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000050\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403429331722924222933\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000058\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403470711722924227071\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000063\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403514001722924231400\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000057\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403555821722924235582\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000100\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404126201722924252620\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000052\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404176491722924257649\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000049\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404258211722924265821\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000055\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404297581722924269758\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000066\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218621722923721862\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218811722923721881\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219631722923721963\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219691722923721969\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000188\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219761722923721976\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000118\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219821722923721982\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219961722923721996\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000067\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220711722923722071\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000166\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220761722923722076\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000168\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223411722923722341\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000112\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355218621722923721862 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:04:36', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061404384811722924278481', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000008\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '10.90.106.61', '2024-08-06 14:04:38', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061404384901722924278490', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"07-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401370081722924097008\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000037\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401436021722924103602\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000002\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401497731722924109773\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000006\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401552741722924115274\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000143\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402007281722924120728\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000087\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402141121722924134112\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000011\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402180821722924138082\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000082\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402215991722924141599\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000021\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402250611722924145061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000084\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402288361722924148836\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000004\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402325221722924152522\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000009\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402360051722924156005\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000090\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402398351722924159835\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000005\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402434961722924163496\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000012\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402471981722924167198\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000097\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402504921722924170492\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000013\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402540851722924174085\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000088\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402579381722924177938\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000014\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403018401722924181840\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000007\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403060611722924186061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000020\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403097211722924189721\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000017\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403135401722924193540\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000089\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-02-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403170891722924197089\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000094\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403204941722924200494\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000062\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403242431722924204243\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000099\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403279021722924207902\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000060\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403355401722924215540\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000064\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403389511722924218951\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000050\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403429331722924222933\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000058\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403470711722924227071\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000063\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403514001722924231400\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000057\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403555821722924235582\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000100\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404126201722924252620\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000052\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404176491722924257649\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000049\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404258211722924265821\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000055\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404297581722924269758\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000066\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218621722923721862\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218811722923721881\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219631722923721963\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219691722923721969\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000188\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219761722923721976\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000118\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219821722923721982\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219961722923721996\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000067\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220711722923722071\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000166\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220761722923722076\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000168\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223411722923722341\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000112\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355218621722923721862 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:04:38', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061404390141722924279014', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061355218971722923721897\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000048\", \"taskStatus\": 100, \"destination\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:04:39', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061404390221722924279022', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061355218901722923721890\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000053\", \"taskStatus\": 100, \"destination\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:04:39', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061404405331722924280533', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"07-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401370081722924097008\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000037\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401436021722924103602\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000002\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401497731722924109773\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000006\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401552741722924115274\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000143\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402007281722924120728\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000087\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402141121722924134112\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000011\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402180821722924138082\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000082\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402215991722924141599\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000021\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402250611722924145061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000084\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402288361722924148836\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000004\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402325221722924152522\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000009\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402360051722924156005\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000090\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402398351722924159835\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000005\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402434961722924163496\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000012\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402471981722924167198\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000097\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402504921722924170492\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000013\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402540851722924174085\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000088\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402579381722924177938\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000014\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403018401722924181840\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000007\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403060611722924186061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000020\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403097211722924189721\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000017\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403135401722924193540\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000089\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-02-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403170891722924197089\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000094\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403204941722924200494\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000062\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403242431722924204243\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000099\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403279021722924207902\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000060\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403355401722924215540\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000064\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403389511722924218951\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000050\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403429331722924222933\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000058\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403470711722924227071\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000063\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403514001722924231400\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000057\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403555821722924235582\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000100\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404126201722924252620\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000052\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404176491722924257649\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000049\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404258211722924265821\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000055\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404297581722924269758\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000066\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404384781722924278478\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000008\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218621722923721862\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218811722923721881\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219631722923721963\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219691722923721969\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000188\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219761722923721976\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000118\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219821722923721982\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219961722923721996\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000067\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220711722923722071\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000166\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220761722923722076\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000168\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223411722923722341\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000112\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355218621722923721862 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:04:41', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061404419191722924281919', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061355220711722923722071\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000166\", \"taskStatus\": 2, \"destination\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:04:42', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061404419431722924281943', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061355223411722923722341\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000112\", \"taskStatus\": 2, \"destination\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:04:42', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061404425271722924282527', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"07-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401370081722924097008\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000037\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401436021722924103602\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000002\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401497731722924109773\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000006\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401552741722924115274\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000143\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402007281722924120728\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000087\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402141121722924134112\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000011\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402180821722924138082\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000082\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402215991722924141599\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000021\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402250611722924145061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000084\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402288361722924148836\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000004\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402325221722924152522\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000009\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402360051722924156005\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000090\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402398351722924159835\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000005\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402434961722924163496\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000012\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402471981722924167198\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000097\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402504921722924170492\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000013\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402540851722924174085\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000088\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402579381722924177938\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000014\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403018401722924181840\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000007\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403060611722924186061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000020\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403097211722924189721\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000017\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403135401722924193540\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000089\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-02-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403170891722924197089\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000094\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403204941722924200494\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000062\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403242431722924204243\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000099\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403279021722924207902\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000060\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403355401722924215540\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000064\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403389511722924218951\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000050\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403429331722924222933\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000058\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403470711722924227071\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000063\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403514001722924231400\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000057\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403555821722924235582\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000100\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404126201722924252620\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000052\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404176491722924257649\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000049\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404258211722924265821\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000055\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404297581722924269758\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000066\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404384781722924278478\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000008\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218621722923721862\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218811722923721881\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219631722923721963\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219691722923721969\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000188\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219761722923721976\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000118\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219821722923721982\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219961722923721996\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000067\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220761722923722076\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000168\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223631722923722363\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355218621722923721862 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:04:43', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061404445361722924284536', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"07-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401370081722924097008\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000037\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401436021722924103602\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000002\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401497731722924109773\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000006\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401552741722924115274\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000143\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402007281722924120728\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000087\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402141121722924134112\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000011\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402180821722924138082\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000082\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402215991722924141599\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000021\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402250611722924145061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000084\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402288361722924148836\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000004\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402325221722924152522\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000009\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402360051722924156005\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000090\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402398351722924159835\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000005\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402434961722924163496\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000012\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402471981722924167198\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000097\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402504921722924170492\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000013\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402540851722924174085\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000088\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402579381722924177938\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000014\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403018401722924181840\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000007\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403060611722924186061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000020\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403097211722924189721\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000017\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403135401722924193540\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000089\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-02-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403170891722924197089\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000094\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403204941722924200494\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000062\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403242431722924204243\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000099\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403279021722924207902\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000060\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403355401722924215540\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000064\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403389511722924218951\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000050\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403429331722924222933\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000058\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403470711722924227071\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000063\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403514001722924231400\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000057\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403555821722924235582\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000100\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404126201722924252620\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000052\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404176491722924257649\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000049\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404258211722924265821\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000055\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404297581722924269758\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000066\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404384781722924278478\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000008\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218621722923721862\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218811722923721881\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219631722923721963\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219691722923721969\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000188\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219761722923721976\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000118\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219821722923721982\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219961722923721996\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000067\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220761722923722076\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000168\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223631722923722363\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355218621722923721862 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:04:45', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061404450281722924285028', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061355217891722923721789\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000025\", \"taskStatus\": 100, \"destination\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:04:45', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061404455741722924285574', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000029\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '10.90.106.61', '2024-08-06 14:04:46', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061404458101722924285810', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061355217821722923721782\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000077\", \"taskStatus\": 100, \"destination\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:04:46', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061404465721722924286572', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"07-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401370081722924097008\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000037\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401436021722924103602\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000002\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401497731722924109773\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000006\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401552741722924115274\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000143\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402007281722924120728\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000087\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402141121722924134112\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000011\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402180821722924138082\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000082\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402215991722924141599\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000021\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402250611722924145061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000084\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402288361722924148836\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000004\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402325221722924152522\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000009\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402360051722924156005\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000090\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402398351722924159835\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000005\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402434961722924163496\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000012\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402471981722924167198\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000097\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402504921722924170492\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000013\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402540851722924174085\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000088\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402579381722924177938\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000014\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403018401722924181840\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000007\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403060611722924186061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000020\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403097211722924189721\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000017\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403135401722924193540\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000089\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-02-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403170891722924197089\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000094\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403204941722924200494\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000062\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403242431722924204243\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000099\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403279021722924207902\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000060\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403355401722924215540\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000064\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403389511722924218951\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000050\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403429331722924222933\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000058\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403470711722924227071\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000063\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403514001722924231400\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000057\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403555821722924235582\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000100\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404126201722924252620\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000052\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404176491722924257649\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000049\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404258211722924265821\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000055\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404297581722924269758\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000066\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404384781722924278478\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000008\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-02-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404455721722924285572\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000029\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218621722923721862\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218811722923721881\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219631722923721963\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219691722923721969\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000188\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219761722923721976\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000118\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219821722923721982\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219961722923721996\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000067\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220761722923722076\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000168\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355218621722923721862 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:04:47', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061404485401722924288540', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"07-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401370081722924097008\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000037\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401436021722924103602\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000002\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401497731722924109773\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000006\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401552741722924115274\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000143\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402007281722924120728\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000087\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402141121722924134112\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000011\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402180821722924138082\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000082\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402215991722924141599\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000021\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402250611722924145061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000084\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402288361722924148836\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000004\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402325221722924152522\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000009\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402360051722924156005\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000090\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402398351722924159835\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000005\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402434961722924163496\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000012\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402471981722924167198\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000097\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402504921722924170492\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000013\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402540851722924174085\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000088\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402579381722924177938\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000014\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403018401722924181840\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000007\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403060611722924186061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000020\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403097211722924189721\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000017\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403135401722924193540\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000089\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-02-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403170891722924197089\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000094\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403204941722924200494\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000062\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403242431722924204243\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000099\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403279021722924207902\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000060\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403355401722924215540\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000064\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403389511722924218951\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000050\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403429331722924222933\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000058\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403470711722924227071\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000063\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403514001722924231400\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000057\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403555821722924235582\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000100\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404126201722924252620\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000052\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404176491722924257649\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000049\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404258211722924265821\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000055\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404297581722924269758\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000066\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404384781722924278478\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000008\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-02-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404455721722924285572\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000029\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218621722923721862\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355218811722923721881\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219631722923721963\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219691722923721969\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000188\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219761722923721976\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000118\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219821722923721982\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219961722923721996\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000067\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220761722923722076\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000168\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355218621722923721862 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:04:49', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061404494431722924289443', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061355218621722923721862\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000056\", \"taskStatus\": 2, \"destination\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:04:49', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061404494441722924289444', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061355218811722923721881\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000035\", \"taskStatus\": 2, \"destination\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:04:49', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061404505481722924290548', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"07-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401370081722924097008\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000037\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401436021722924103602\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000002\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401497731722924109773\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000006\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401552741722924115274\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000143\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402007281722924120728\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000087\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402141121722924134112\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000011\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402180821722924138082\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000082\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402215991722924141599\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000021\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402250611722924145061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000084\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402288361722924148836\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000004\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402325221722924152522\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000009\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402360051722924156005\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000090\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402398351722924159835\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000005\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402434961722924163496\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000012\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402471981722924167198\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000097\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402504921722924170492\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000013\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402540851722924174085\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000088\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402579381722924177938\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000014\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403018401722924181840\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000007\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403060611722924186061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000020\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403097211722924189721\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000017\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403135401722924193540\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000089\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-02-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403170891722924197089\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000094\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403204941722924200494\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000062\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403242431722924204243\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000099\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403279021722924207902\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000060\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403355401722924215540\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000064\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403389511722924218951\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000050\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403429331722924222933\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000058\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403470711722924227071\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000063\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403514001722924231400\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000057\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403555821722924235582\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000100\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404126201722924252620\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000052\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404176491722924257649\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000049\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404258211722924265821\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000055\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404297581722924269758\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000066\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404384781722924278478\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000008\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-02-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404455721722924285572\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000029\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219631722923721963\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219691722923721969\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000188\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219761722923721976\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000118\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219821722923721982\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219961722923721996\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000067\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220761722923722076\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000168\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223631722923722363\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223701722923722370\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355219631722923721963 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:04:51', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061404525371722924292537', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"07-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401370081722924097008\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000037\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401436021722924103602\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000002\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401497731722924109773\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000006\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401552741722924115274\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000143\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402007281722924120728\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000087\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402141121722924134112\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000011\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402180821722924138082\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000082\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402215991722924141599\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000021\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402250611722924145061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000084\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402288361722924148836\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000004\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402325221722924152522\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000009\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402360051722924156005\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000090\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402398351722924159835\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000005\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402434961722924163496\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000012\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402471981722924167198\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000097\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402504921722924170492\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000013\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402540851722924174085\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000088\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402579381722924177938\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000014\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403018401722924181840\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000007\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403060611722924186061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000020\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403097211722924189721\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000017\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403135401722924193540\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000089\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-02-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403170891722924197089\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000094\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403204941722924200494\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000062\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403242431722924204243\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000099\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403279021722924207902\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000060\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403355401722924215540\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000064\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403389511722924218951\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000050\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403429331722924222933\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000058\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403470711722924227071\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000063\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403514001722924231400\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000057\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403555821722924235582\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000100\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404126201722924252620\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000052\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404176491722924257649\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000049\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404258211722924265821\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000055\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404297581722924269758\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000066\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404384781722924278478\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000008\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-02-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404455721722924285572\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000029\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219631722923721963\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219691722923721969\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000188\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219761722923721976\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000118\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219821722923721982\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219961722923721996\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000067\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220761722923722076\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000168\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223631722923722363\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223701722923722370\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355219631722923721963 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:04:53', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061404546571722924294657', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"07-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401370081722924097008\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000037\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401436021722924103602\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000002\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401497731722924109773\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000006\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401552741722924115274\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000143\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402007281722924120728\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000087\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402141121722924134112\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000011\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402180821722924138082\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000082\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402215991722924141599\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000021\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402250611722924145061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000084\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402288361722924148836\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000004\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402325221722924152522\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000009\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402360051722924156005\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000090\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402398351722924159835\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000005\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402434961722924163496\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000012\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402471981722924167198\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000097\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402504921722924170492\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000013\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402540851722924174085\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000088\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402579381722924177938\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000014\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403018401722924181840\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000007\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403060611722924186061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000020\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403097211722924189721\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000017\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403135401722924193540\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000089\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-02-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403170891722924197089\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000094\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403204941722924200494\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000062\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403242431722924204243\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000099\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403279021722924207902\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000060\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403355401722924215540\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000064\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403389511722924218951\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000050\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403429331722924222933\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000058\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403470711722924227071\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000063\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403514001722924231400\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000057\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403555821722924235582\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000100\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404126201722924252620\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000052\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404176491722924257649\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000049\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404258211722924265821\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000055\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404297581722924269758\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000066\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404384781722924278478\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000008\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-02-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404455721722924285572\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000029\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219631722923721963\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219691722923721969\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000188\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219761722923721976\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000118\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219821722923721982\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219961722923721996\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000067\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220761722923722076\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000168\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223631722923722363\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223701722923722370\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355219631722923721963 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:04:55', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061404565741722924296574', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"07-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401370081722924097008\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000037\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401436021722924103602\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000002\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401497731722924109773\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000006\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401552741722924115274\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000143\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402007281722924120728\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000087\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402141121722924134112\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000011\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402180821722924138082\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000082\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402215991722924141599\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000021\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402250611722924145061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000084\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402288361722924148836\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000004\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402325221722924152522\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000009\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402360051722924156005\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000090\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402398351722924159835\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000005\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402434961722924163496\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000012\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402471981722924167198\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000097\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402504921722924170492\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000013\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402540851722924174085\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000088\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402579381722924177938\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000014\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403018401722924181840\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000007\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403060611722924186061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000020\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403097211722924189721\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000017\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403135401722924193540\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000089\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-02-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403170891722924197089\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000094\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403204941722924200494\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000062\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403242431722924204243\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000099\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403279021722924207902\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000060\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403355401722924215540\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000064\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403389511722924218951\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000050\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403429331722924222933\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000058\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403470711722924227071\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000063\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403514001722924231400\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000057\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403555821722924235582\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000100\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404126201722924252620\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000052\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404176491722924257649\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000049\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404258211722924265821\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000055\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404297581722924269758\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000066\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404384781722924278478\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000008\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-02-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404455721722924285572\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000029\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219631722923721963\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219691722923721969\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000188\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219761722923721976\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000118\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219821722923721982\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219961722923721996\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000067\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220761722923722076\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000168\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223631722923722363\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223701722923722370\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355219631722923721963 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:04:57', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061404586091722924298609', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"07-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401370081722924097008\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000037\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401436021722924103602\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000002\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401497731722924109773\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000006\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401552741722924115274\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000143\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402007281722924120728\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000087\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402141121722924134112\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000011\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402180821722924138082\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000082\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402215991722924141599\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000021\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402250611722924145061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000084\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402288361722924148836\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000004\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402325221722924152522\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000009\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402360051722924156005\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000090\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402398351722924159835\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000005\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402434961722924163496\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000012\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402471981722924167198\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000097\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402504921722924170492\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000013\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402540851722924174085\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000088\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402579381722924177938\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000014\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403018401722924181840\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000007\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403060611722924186061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000020\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403097211722924189721\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000017\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403135401722924193540\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000089\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-02-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403170891722924197089\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000094\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403204941722924200494\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000062\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403242431722924204243\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000099\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403279021722924207902\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000060\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403355401722924215540\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000064\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403389511722924218951\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000050\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403429331722924222933\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000058\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403470711722924227071\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000063\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403514001722924231400\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000057\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403555821722924235582\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000100\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404126201722924252620\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000052\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404176491722924257649\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000049\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404258211722924265821\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000055\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404297581722924269758\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000066\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404384781722924278478\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000008\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-02-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404455721722924285572\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000029\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219631722923721963\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219691722923721969\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000188\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219761722923721976\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000118\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219821722923721982\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219961722923721996\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000067\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220761722923722076\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000168\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223631722923722363\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223701722923722370\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355219631722923721963 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:04:59', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061405005851722924300585', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"07-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401370081722924097008\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000037\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401436021722924103602\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000002\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401497731722924109773\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000006\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401552741722924115274\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000143\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402007281722924120728\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000087\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402141121722924134112\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000011\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402180821722924138082\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000082\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402215991722924141599\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000021\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402250611722924145061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000084\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402288361722924148836\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000004\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402325221722924152522\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000009\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402360051722924156005\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000090\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402398351722924159835\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000005\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402434961722924163496\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000012\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402471981722924167198\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000097\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402504921722924170492\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000013\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402540851722924174085\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000088\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402579381722924177938\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000014\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403018401722924181840\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000007\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403060611722924186061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000020\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403097211722924189721\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000017\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403135401722924193540\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000089\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-02-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403170891722924197089\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000094\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403204941722924200494\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000062\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403242431722924204243\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000099\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403279021722924207902\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000060\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403355401722924215540\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000064\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403389511722924218951\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000050\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403429331722924222933\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000058\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403470711722924227071\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000063\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403514001722924231400\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000057\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403555821722924235582\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000100\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404126201722924252620\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000052\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404176491722924257649\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000049\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404258211722924265821\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000055\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404297581722924269758\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000066\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404384781722924278478\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000008\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-02-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404455721722924285572\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000029\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219631722923721963\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219691722923721969\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000188\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219761722923721976\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000118\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219821722923721982\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219961722923721996\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000067\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220761722923722076\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000168\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223631722923722363\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"01-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223701722923722370\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355219631722923721963 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:05:01', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061405012091722924301209', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000074\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '10.90.106.61', '2024-08-06 14:05:01', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061405025861722924302586', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"07-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401370081722924097008\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000037\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401436021722924103602\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000002\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401497731722924109773\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000006\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401552741722924115274\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000143\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402007281722924120728\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000087\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402141121722924134112\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000011\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402180821722924138082\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000082\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402215991722924141599\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000021\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402250611722924145061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000084\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402288361722924148836\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000004\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402325221722924152522\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000009\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402360051722924156005\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000090\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402398351722924159835\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000005\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402434961722924163496\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000012\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402471981722924167198\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000097\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402504921722924170492\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000013\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402540851722924174085\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000088\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402579381722924177938\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000014\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403018401722924181840\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000007\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403060611722924186061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000020\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403097211722924189721\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000017\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403135401722924193540\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000089\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-02-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403170891722924197089\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000094\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403204941722924200494\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000062\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403242431722924204243\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000099\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403279021722924207902\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000060\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403355401722924215540\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000064\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403389511722924218951\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000050\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403429331722924222933\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000058\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403470711722924227071\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000063\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403514001722924231400\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000057\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403555821722924235582\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000100\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404126201722924252620\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000052\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404176491722924257649\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000049\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404258211722924265821\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000055\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404297581722924269758\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000066\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404384781722924278478\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000008\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-02-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404455721722924285572\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000029\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405012061722924301206\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000074\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219631722923721963\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219691722923721969\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000188\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219761722923721976\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000118\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219821722923721982\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219961722923721996\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000067\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220761722923722076\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000168\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223631722923722363\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355219631722923721963 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:05:03', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061405046781722924304678', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"07-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401370081722924097008\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000037\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401436021722924103602\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000002\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401497731722924109773\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000006\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401552741722924115274\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000143\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402007281722924120728\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000087\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402141121722924134112\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000011\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402180821722924138082\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000082\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402215991722924141599\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000021\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402250611722924145061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000084\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402288361722924148836\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000004\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402325221722924152522\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000009\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402360051722924156005\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000090\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402398351722924159835\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000005\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402434961722924163496\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000012\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402471981722924167198\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000097\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402504921722924170492\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000013\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402540851722924174085\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000088\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402579381722924177938\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000014\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403018401722924181840\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000007\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403060611722924186061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000020\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403097211722924189721\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000017\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403135401722924193540\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000089\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-02-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403170891722924197089\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000094\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403204941722924200494\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000062\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403242431722924204243\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000099\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403279021722924207902\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000060\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403355401722924215540\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000064\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403389511722924218951\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000050\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403429331722924222933\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000058\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403470711722924227071\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000063\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403514001722924231400\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000057\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403555821722924235582\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000100\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404126201722924252620\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000052\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404176491722924257649\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000049\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404258211722924265821\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000055\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404297581722924269758\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000066\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404384781722924278478\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000008\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-02-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404455721722924285572\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000029\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405012061722924301206\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000074\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219631722923721963\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219691722923721969\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000188\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219761722923721976\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000118\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219821722923721982\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219961722923721996\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000067\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220761722923722076\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000168\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-17-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223631722923722363\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355219631722923721963 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:05:05', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061405053541722924305354', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000010\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '10.90.106.61', '2024-08-06 14:05:05', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061405067001722924306700', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"07-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401370081722924097008\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000037\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401436021722924103602\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000002\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401497731722924109773\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000006\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401552741722924115274\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000143\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402007281722924120728\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000087\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402141121722924134112\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000011\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402180821722924138082\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000082\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402215991722924141599\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000021\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402250611722924145061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000084\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402288361722924148836\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000004\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402325221722924152522\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000009\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402360051722924156005\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000090\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402398351722924159835\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000005\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402434961722924163496\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000012\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402471981722924167198\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000097\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402504921722924170492\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000013\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402540851722924174085\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000088\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402579381722924177938\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000014\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403018401722924181840\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000007\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403060611722924186061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000020\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403097211722924189721\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000017\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403135401722924193540\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000089\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-02-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403170891722924197089\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000094\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403204941722924200494\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000062\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403242431722924204243\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000099\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403279021722924207902\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000060\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403355401722924215540\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000064\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403389511722924218951\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000050\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403429331722924222933\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000058\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403470711722924227071\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000063\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403514001722924231400\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000057\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403555821722924235582\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000100\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404126201722924252620\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000052\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404176491722924257649\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000049\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404258211722924265821\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000055\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404297581722924269758\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000066\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404384781722924278478\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000008\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-02-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404455721722924285572\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000029\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405012061722924301206\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000074\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405053521722924305352\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000010\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219631722923721963\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219691722923721969\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000188\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219761722923721976\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000118\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219821722923721982\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219961722923721996\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000067\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220761722923722076\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000168\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355219631722923721963 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:05:07', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061405086591722924308659', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"07-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401370081722924097008\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000037\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401436021722924103602\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000002\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401497731722924109773\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000006\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401552741722924115274\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000143\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402007281722924120728\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000087\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402141121722924134112\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000011\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402180821722924138082\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000082\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402215991722924141599\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000021\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402250611722924145061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000084\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402288361722924148836\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000004\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402325221722924152522\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000009\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402360051722924156005\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000090\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402398351722924159835\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000005\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402434961722924163496\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000012\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402471981722924167198\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000097\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402504921722924170492\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000013\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402540851722924174085\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000088\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402579381722924177938\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000014\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403018401722924181840\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000007\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403060611722924186061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000020\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403097211722924189721\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000017\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403135401722924193540\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000089\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-02-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403170891722924197089\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000094\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403204941722924200494\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000062\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403242431722924204243\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000099\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403279021722924207902\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000060\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403355401722924215540\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000064\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403389511722924218951\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000050\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403429331722924222933\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000058\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403470711722924227071\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000063\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403514001722924231400\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000057\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403555821722924235582\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000100\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404126201722924252620\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000052\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404176491722924257649\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000049\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404258211722924265821\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000055\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404297581722924269758\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000066\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404384781722924278478\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000008\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-02-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404455721722924285572\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000029\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405012061722924301206\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000074\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405053521722924305352\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000010\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219631722923721963\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219691722923721969\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000188\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219761722923721976\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000118\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219821722923721982\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219961722923721996\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000067\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220761722923722076\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000168\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355219631722923721963 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:05:09', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061405106851722924310685', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"07-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401370081722924097008\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000037\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401436021722924103602\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000002\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401497731722924109773\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000006\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401552741722924115274\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000143\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402007281722924120728\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000087\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402141121722924134112\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000011\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402180821722924138082\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000082\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402215991722924141599\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000021\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402250611722924145061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000084\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402288361722924148836\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000004\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402325221722924152522\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000009\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402360051722924156005\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000090\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402398351722924159835\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000005\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402434961722924163496\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000012\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402471981722924167198\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000097\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402504921722924170492\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000013\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402540851722924174085\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000088\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402579381722924177938\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000014\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403018401722924181840\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000007\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403060611722924186061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000020\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403097211722924189721\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000017\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403135401722924193540\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000089\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-02-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403170891722924197089\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000094\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403204941722924200494\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000062\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403242431722924204243\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000099\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403279021722924207902\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000060\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403355401722924215540\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000064\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403389511722924218951\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000050\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403429331722924222933\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000058\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403470711722924227071\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000063\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403514001722924231400\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000057\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403555821722924235582\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000100\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404126201722924252620\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000052\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404176491722924257649\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000049\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404258211722924265821\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000055\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404297581722924269758\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000066\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404384781722924278478\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000008\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-02-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404455721722924285572\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000029\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405012061722924301206\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000074\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405053521722924305352\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000010\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219631722923721963\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219691722923721969\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000188\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219761722923721976\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000118\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219821722923721982\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219961722923721996\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000067\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220761722923722076\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000168\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355219631722923721963 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:05:11', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061405126861722924312686', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"07-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401370081722924097008\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000037\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401436021722924103602\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000002\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401497731722924109773\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000006\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401552741722924115274\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000143\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402007281722924120728\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000087\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402141121722924134112\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000011\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402180821722924138082\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000082\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402215991722924141599\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000021\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402250611722924145061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000084\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402288361722924148836\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000004\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402325221722924152522\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000009\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402360051722924156005\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000090\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402398351722924159835\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000005\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402434961722924163496\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000012\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402471981722924167198\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000097\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402504921722924170492\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000013\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402540851722924174085\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000088\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402579381722924177938\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000014\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403018401722924181840\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000007\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403060611722924186061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000020\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403097211722924189721\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000017\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403135401722924193540\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000089\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-02-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403170891722924197089\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000094\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403204941722924200494\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000062\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403242431722924204243\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000099\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403279021722924207902\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000060\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403355401722924215540\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000064\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403389511722924218951\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000050\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403429331722924222933\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000058\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403470711722924227071\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000063\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403514001722924231400\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000057\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403555821722924235582\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000100\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404126201722924252620\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000052\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404176491722924257649\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000049\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404258211722924265821\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000055\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404297581722924269758\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000066\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404384781722924278478\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000008\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-02-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404455721722924285572\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000029\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405012061722924301206\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000074\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405053521722924305352\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000010\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219631722923721963\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219691722923721969\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000188\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219761722923721976\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000118\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219821722923721982\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219961722923721996\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000067\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220761722923722076\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000168\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355219631722923721963 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:05:13', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061405146951722924314695', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"07-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401370081722924097008\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000037\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401436021722924103602\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000002\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401497731722924109773\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000006\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401552741722924115274\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000143\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402007281722924120728\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000087\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402141121722924134112\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000011\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402180821722924138082\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000082\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402215991722924141599\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000021\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402250611722924145061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000084\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402288361722924148836\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000004\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402325221722924152522\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000009\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402360051722924156005\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000090\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402398351722924159835\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000005\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402434961722924163496\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000012\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402471981722924167198\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000097\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402504921722924170492\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000013\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402540851722924174085\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000088\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402579381722924177938\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000014\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403018401722924181840\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000007\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403060611722924186061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000020\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403097211722924189721\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000017\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403135401722924193540\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000089\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-02-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403170891722924197089\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000094\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403204941722924200494\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000062\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403242431722924204243\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000099\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403279021722924207902\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000060\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403355401722924215540\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000064\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403389511722924218951\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000050\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403429331722924222933\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000058\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403470711722924227071\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000063\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403514001722924231400\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000057\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403555821722924235582\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000100\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404126201722924252620\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000052\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404176491722924257649\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000049\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404258211722924265821\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000055\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404297581722924269758\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000066\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404384781722924278478\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000008\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-02-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404455721722924285572\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000029\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405012061722924301206\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000074\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405053521722924305352\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000010\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219631722923721963\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219691722923721969\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000188\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219761722923721976\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000118\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219821722923721982\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219961722923721996\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000067\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220761722923722076\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000168\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355219631722923721963 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:05:15', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061405166881722924316688', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"07-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401370081722924097008\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000037\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401436021722924103602\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000002\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401497731722924109773\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000006\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401552741722924115274\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000143\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402007281722924120728\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000087\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402141121722924134112\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000011\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402180821722924138082\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000082\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402215991722924141599\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000021\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402250611722924145061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000084\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402288361722924148836\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000004\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402325221722924152522\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000009\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402360051722924156005\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000090\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402398351722924159835\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000005\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402434961722924163496\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000012\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402471981722924167198\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000097\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402504921722924170492\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000013\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402540851722924174085\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000088\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402579381722924177938\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000014\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403018401722924181840\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000007\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403060611722924186061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000020\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403097211722924189721\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000017\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403135401722924193540\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000089\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-02-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403170891722924197089\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000094\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403204941722924200494\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000062\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403242431722924204243\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000099\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403279021722924207902\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000060\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403355401722924215540\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000064\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403389511722924218951\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000050\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403429331722924222933\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000058\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403470711722924227071\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000063\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403514001722924231400\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000057\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403555821722924235582\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000100\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404126201722924252620\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000052\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404176491722924257649\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000049\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404258211722924265821\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000055\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404297581722924269758\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000066\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404384781722924278478\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000008\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-02-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404455721722924285572\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000029\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405012061722924301206\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000074\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405053521722924305352\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000010\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219631722923721963\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219691722923721969\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000188\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219761722923721976\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000118\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219821722923721982\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219961722923721996\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000067\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220761722923722076\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000168\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355219631722923721963 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:05:17', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061405179771722924317977', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000039\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '10.90.106.61', '2024-08-06 14:05:18', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061405187011722924318701', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"07-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401370081722924097008\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000037\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401436021722924103602\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000002\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401497731722924109773\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000006\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401552741722924115274\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000143\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402007281722924120728\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000087\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402141121722924134112\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000011\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402180821722924138082\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000082\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402215991722924141599\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000021\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402250611722924145061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000084\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402288361722924148836\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000004\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402325221722924152522\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000009\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402360051722924156005\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000090\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402398351722924159835\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000005\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402434961722924163496\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000012\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402471981722924167198\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000097\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402504921722924170492\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000013\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402540851722924174085\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000088\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402579381722924177938\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000014\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403018401722924181840\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000007\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403060611722924186061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000020\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403097211722924189721\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000017\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403135401722924193540\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000089\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-02-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403170891722924197089\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000094\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403204941722924200494\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000062\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403242431722924204243\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000099\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403279021722924207902\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000060\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403355401722924215540\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000064\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403389511722924218951\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000050\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403429331722924222933\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000058\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403470711722924227071\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000063\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403514001722924231400\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000057\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403555821722924235582\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000100\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404126201722924252620\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000052\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404176491722924257649\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000049\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404258211722924265821\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000055\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404297581722924269758\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000066\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404384781722924278478\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000008\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-02-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404455721722924285572\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000029\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405012061722924301206\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000074\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405053521722924305352\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000010\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405179751722924317975\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000039\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219631722923721963\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219691722923721969\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000188\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219761722923721976\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000118\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219821722923721982\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219961722923721996\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000067\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220761722923722076\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000168\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355219631722923721963 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:05:19', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061405207461722924320746', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"07-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401370081722924097008\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000037\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401436021722924103602\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000002\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401497731722924109773\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000006\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401552741722924115274\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000143\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402007281722924120728\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000087\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402141121722924134112\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000011\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402180821722924138082\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000082\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402215991722924141599\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000021\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402250611722924145061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000084\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402288361722924148836\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000004\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402325221722924152522\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000009\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402360051722924156005\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000090\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402398351722924159835\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000005\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402434961722924163496\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000012\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402471981722924167198\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000097\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402504921722924170492\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000013\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402540851722924174085\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000088\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402579381722924177938\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000014\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403018401722924181840\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000007\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403060611722924186061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000020\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403097211722924189721\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000017\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403135401722924193540\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000089\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-02-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403170891722924197089\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000094\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403204941722924200494\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000062\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403242431722924204243\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000099\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403279021722924207902\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000060\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403355401722924215540\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000064\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403389511722924218951\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000050\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403429331722924222933\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000058\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403470711722924227071\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000063\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403514001722924231400\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000057\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403555821722924235582\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000100\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404126201722924252620\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000052\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404176491722924257649\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000049\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404258211722924265821\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000055\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404297581722924269758\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000066\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404384781722924278478\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000008\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-02-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404455721722924285572\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000029\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405012061722924301206\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000074\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405053521722924305352\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000010\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405179751722924317975\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000039\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219631722923721963\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219691722923721969\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000188\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219761722923721976\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000118\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219821722923721982\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219961722923721996\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000067\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220761722923722076\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000168\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355219631722923721963 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:05:21', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061405227311722924322731', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"07-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401370081722924097008\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000037\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401436021722924103602\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000002\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401497731722924109773\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000006\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401552741722924115274\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000143\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402007281722924120728\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000087\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402141121722924134112\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000011\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402180821722924138082\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000082\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402215991722924141599\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000021\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402250611722924145061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000084\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402288361722924148836\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000004\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402325221722924152522\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000009\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402360051722924156005\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000090\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402398351722924159835\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000005\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402434961722924163496\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000012\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402471981722924167198\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000097\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402504921722924170492\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000013\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402540851722924174085\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000088\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402579381722924177938\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000014\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403018401722924181840\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000007\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403060611722924186061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000020\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403097211722924189721\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000017\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403135401722924193540\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000089\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-02-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403170891722924197089\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000094\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403204941722924200494\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000062\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403242431722924204243\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000099\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403279021722924207902\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000060\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403355401722924215540\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000064\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403389511722924218951\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000050\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403429331722924222933\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000058\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403470711722924227071\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000063\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403514001722924231400\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000057\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403555821722924235582\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000100\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404126201722924252620\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000052\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404176491722924257649\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000049\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404258211722924265821\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000055\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404297581722924269758\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000066\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404384781722924278478\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000008\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-02-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404455721722924285572\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000029\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405012061722924301206\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000074\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405053521722924305352\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000010\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405179751722924317975\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000039\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219631722923721963\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219691722923721969\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000188\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219761722923721976\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000118\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219821722923721982\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219961722923721996\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000067\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220761722923722076\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000168\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355219631722923721963 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:05:23', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061405236371722924323637', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000029\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '10.90.106.61', '2024-08-06 14:05:24', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061405247001722924324700', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"07-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401370081722924097008\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000037\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401436021722924103602\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000002\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401497731722924109773\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000006\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401552741722924115274\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000143\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402007281722924120728\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000087\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402141121722924134112\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000011\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402180821722924138082\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000082\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402215991722924141599\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000021\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402250611722924145061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000084\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402288361722924148836\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000004\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402325221722924152522\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000009\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402360051722924156005\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000090\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402398351722924159835\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000005\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402434961722924163496\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000012\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402471981722924167198\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000097\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402504921722924170492\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000013\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402540851722924174085\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000088\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402579381722924177938\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000014\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403018401722924181840\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000007\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403060611722924186061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000020\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403097211722924189721\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000017\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403135401722924193540\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000089\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-02-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403170891722924197089\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000094\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403204941722924200494\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000062\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403242431722924204243\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000099\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403279021722924207902\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000060\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403355401722924215540\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000064\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403389511722924218951\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000050\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403429331722924222933\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000058\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403470711722924227071\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000063\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403514001722924231400\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000057\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403555821722924235582\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000100\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404126201722924252620\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000052\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404176491722924257649\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000049\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404258211722924265821\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000055\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404297581722924269758\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000066\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404384781722924278478\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000008\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-02-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404455721722924285572\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000029\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405012061722924301206\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000074\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405053521722924305352\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000010\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405179751722924317975\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000039\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219631722923721963\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219691722923721969\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000188\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219761722923721976\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000118\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219821722923721982\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219961722923721996\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000067\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220761722923722076\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000168\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355219631722923721963 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:05:25', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061405267991722924326799', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"07-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401370081722924097008\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000037\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401436021722924103602\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000002\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401497731722924109773\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000006\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401552741722924115274\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000143\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402007281722924120728\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000087\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402141121722924134112\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000011\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402180821722924138082\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000082\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402215991722924141599\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000021\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402250611722924145061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000084\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402288361722924148836\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000004\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402325221722924152522\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000009\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402360051722924156005\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000090\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402398351722924159835\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000005\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402434961722924163496\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000012\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402471981722924167198\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000097\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402504921722924170492\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000013\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402540851722924174085\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000088\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402579381722924177938\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000014\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403018401722924181840\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000007\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403060611722924186061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000020\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403097211722924189721\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000017\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403135401722924193540\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000089\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-02-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403170891722924197089\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000094\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403204941722924200494\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000062\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403242431722924204243\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000099\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403279021722924207902\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000060\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403355401722924215540\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000064\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403389511722924218951\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000050\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403429331722924222933\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000058\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403470711722924227071\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000063\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403514001722924231400\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000057\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403555821722924235582\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000100\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404126201722924252620\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000052\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404176491722924257649\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000049\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404258211722924265821\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000055\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404297581722924269758\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000066\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404384781722924278478\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000008\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-02-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404455721722924285572\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000029\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405012061722924301206\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000074\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405053521722924305352\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000010\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405179751722924317975\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000039\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219631722923721963\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219691722923721969\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000188\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219761722923721976\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000118\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219821722923721982\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219961722923721996\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000067\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220761722923722076\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000168\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355219631722923721963 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:05:27', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061405287291722924328729', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"07-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401370081722924097008\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000037\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401436021722924103602\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000002\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401497731722924109773\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000006\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401552741722924115274\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000143\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402007281722924120728\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000087\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402141121722924134112\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000011\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402180821722924138082\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000082\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402215991722924141599\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000021\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402250611722924145061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000084\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402288361722924148836\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000004\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402325221722924152522\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000009\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402360051722924156005\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000090\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402398351722924159835\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000005\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402434961722924163496\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000012\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402471981722924167198\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000097\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402504921722924170492\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000013\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402540851722924174085\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000088\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402579381722924177938\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000014\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403018401722924181840\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000007\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403060611722924186061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000020\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403097211722924189721\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000017\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403135401722924193540\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000089\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-02-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403170891722924197089\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000094\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403204941722924200494\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000062\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403242431722924204243\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000099\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403279021722924207902\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000060\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403355401722924215540\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000064\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403389511722924218951\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000050\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403429331722924222933\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000058\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403470711722924227071\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000063\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403514001722924231400\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000057\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403555821722924235582\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000100\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404126201722924252620\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000052\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404176491722924257649\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000049\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404258211722924265821\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000055\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404297581722924269758\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000066\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404384781722924278478\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000008\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-02-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404455721722924285572\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000029\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405012061722924301206\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000074\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405053521722924305352\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000010\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405179751722924317975\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000039\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219631722923721963\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219691722923721969\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000188\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219761722923721976\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000118\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219821722923721982\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219961722923721996\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000067\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220761722923722076\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000168\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355219631722923721963 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:05:29', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061405307611722924330761', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"07-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401370081722924097008\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000037\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401436021722924103602\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000002\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401497731722924109773\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000006\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401552741722924115274\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000143\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402007281722924120728\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000087\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402141121722924134112\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000011\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402180821722924138082\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000082\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402215991722924141599\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000021\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402250611722924145061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000084\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402288361722924148836\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000004\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402325221722924152522\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000009\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402360051722924156005\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000090\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402398351722924159835\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000005\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402434961722924163496\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000012\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402471981722924167198\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000097\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402504921722924170492\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000013\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402540851722924174085\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000088\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402579381722924177938\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000014\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403018401722924181840\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000007\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403060611722924186061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000020\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403097211722924189721\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000017\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403135401722924193540\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000089\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-02-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403170891722924197089\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000094\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403204941722924200494\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000062\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403242431722924204243\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000099\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403279021722924207902\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000060\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403355401722924215540\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000064\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403389511722924218951\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000050\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403429331722924222933\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000058\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403470711722924227071\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000063\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403514001722924231400\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000057\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403555821722924235582\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000100\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404126201722924252620\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000052\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404176491722924257649\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000049\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404258211722924265821\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000055\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404297581722924269758\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000066\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404384781722924278478\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000008\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-02-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404455721722924285572\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000029\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405012061722924301206\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000074\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405053521722924305352\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000010\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405179751722924317975\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000039\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219631722923721963\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219691722923721969\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000188\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219761722923721976\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000118\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219821722923721982\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219961722923721996\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000067\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220761722923722076\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000168\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355219631722923721963 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:05:31', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061405313401722924331340', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000040\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '10.90.106.61', '2024-08-06 14:05:31', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061405327961722924332796', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"07-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401370081722924097008\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000037\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401436021722924103602\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000002\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401497731722924109773\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000006\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401552741722924115274\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000143\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402007281722924120728\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000087\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402141121722924134112\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000011\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402180821722924138082\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000082\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402215991722924141599\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000021\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402250611722924145061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000084\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402288361722924148836\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000004\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402325221722924152522\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000009\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402360051722924156005\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000090\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402398351722924159835\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000005\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402434961722924163496\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000012\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402471981722924167198\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000097\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402504921722924170492\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000013\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402540851722924174085\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000088\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402579381722924177938\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000014\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403018401722924181840\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000007\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403060611722924186061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000020\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403097211722924189721\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000017\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403135401722924193540\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000089\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-02-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403170891722924197089\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000094\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403204941722924200494\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000062\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403242431722924204243\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000099\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403279021722924207902\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000060\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403355401722924215540\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000064\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403389511722924218951\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000050\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403429331722924222933\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000058\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403470711722924227071\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000063\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403514001722924231400\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000057\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403555821722924235582\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000100\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404126201722924252620\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000052\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404176491722924257649\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000049\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404258211722924265821\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000055\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404297581722924269758\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000066\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404384781722924278478\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000008\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-02-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404455721722924285572\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000029\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405012061722924301206\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000074\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405053521722924305352\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000010\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405179751722924317975\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000039\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405313371722924331337\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000040\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219631722923721963\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219691722923721969\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000188\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219761722923721976\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000118\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219821722923721982\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219961722923721996\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000067\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220761722923722076\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000168\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355219631722923721963 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:05:33', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061405344641722924334464', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000085\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '10.90.106.61', '2024-08-06 14:05:34', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061405347421722924334742', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061355220711722923722071\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000166\", \"taskStatus\": 100, \"destination\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:05:35', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061405348101722924334810', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"07-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401370081722924097008\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000037\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401436021722924103602\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000002\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401497731722924109773\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000006\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401552741722924115274\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000143\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402007281722924120728\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000087\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402141121722924134112\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000011\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402180821722924138082\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000082\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402215991722924141599\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000021\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402250611722924145061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000084\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402288361722924148836\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000004\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402325221722924152522\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000009\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402360051722924156005\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000090\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402398351722924159835\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000005\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402434961722924163496\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000012\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402471981722924167198\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000097\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402504921722924170492\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000013\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402540851722924174085\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000088\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402579381722924177938\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000014\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403018401722924181840\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000007\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403060611722924186061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000020\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403097211722924189721\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000017\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403135401722924193540\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000089\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-02-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403170891722924197089\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000094\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403204941722924200494\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000062\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403242431722924204243\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000099\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403279021722924207902\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000060\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403355401722924215540\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000064\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403389511722924218951\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000050\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403429331722924222933\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000058\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403470711722924227071\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000063\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403514001722924231400\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000057\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403555821722924235582\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000100\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404126201722924252620\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000052\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404176491722924257649\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000049\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404258211722924265821\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000055\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404297581722924269758\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000066\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404384781722924278478\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000008\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-02-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404455721722924285572\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000029\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405012061722924301206\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000074\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405053521722924305352\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000010\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405179751722924317975\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000039\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405313371722924331337\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000040\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405344621722924334462\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000085\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219631722923721963\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219691722923721969\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000188\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219761722923721976\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000118\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219821722923721982\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219961722923721996\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000067\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220761722923722076\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000168\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355219631722923721963 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:05:35', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061405348181722924334818', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061355223411722923722341\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000112\", \"taskStatus\": 100, \"destination\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:05:35', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061405357811722924335781', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061355218621722923721862\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000056\", \"taskStatus\": 100, \"destination\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:05:36', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061405367631722924336763', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061355218811722923721881\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000035\", \"taskStatus\": 100, \"destination\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:05:37', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061405368041722924336804', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"07-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401370081722924097008\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000037\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401436021722924103602\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000002\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401497731722924109773\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000006\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401552741722924115274\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000143\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402007281722924120728\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000087\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402141121722924134112\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000011\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402180821722924138082\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000082\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402215991722924141599\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000021\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402250611722924145061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000084\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402288361722924148836\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000004\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402325221722924152522\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000009\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402360051722924156005\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000090\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402398351722924159835\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000005\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402434961722924163496\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000012\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402471981722924167198\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000097\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402504921722924170492\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000013\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402540851722924174085\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000088\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402579381722924177938\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000014\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403018401722924181840\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000007\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403060611722924186061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000020\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403097211722924189721\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000017\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403135401722924193540\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000089\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-02-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403170891722924197089\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000094\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403204941722924200494\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000062\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403242431722924204243\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000099\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403279021722924207902\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000060\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403355401722924215540\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000064\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403389511722924218951\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000050\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403429331722924222933\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000058\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403470711722924227071\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000063\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403514001722924231400\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000057\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403555821722924235582\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000100\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404126201722924252620\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000052\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404176491722924257649\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000049\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404258211722924265821\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000055\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404297581722924269758\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000066\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404384781722924278478\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000008\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-02-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404455721722924285572\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000029\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405012061722924301206\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000074\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405053521722924305352\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000010\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405179751722924317975\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000039\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405313371722924331337\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000040\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405344621722924334462\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000085\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219631722923721963\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219691722923721969\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000188\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219761722923721976\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000118\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219821722923721982\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219961722923721996\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000067\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220761722923722076\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000168\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355219631722923721963 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:05:37', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061405383601722924338360', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061355223701722923722370\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000198\", \"taskStatus\": 2, \"destination\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:05:38', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061405383651722924338365', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061355223631722923722363\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000101\", \"taskStatus\": 2, \"destination\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:05:38', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061405388101722924338810', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"07-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401370081722924097008\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000037\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401436021722924103602\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000002\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401497731722924109773\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000006\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401552741722924115274\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000143\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402007281722924120728\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000087\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402141121722924134112\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000011\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402180821722924138082\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000082\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402215991722924141599\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000021\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402250611722924145061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000084\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402288361722924148836\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000004\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402325221722924152522\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000009\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402360051722924156005\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000090\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402398351722924159835\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000005\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402434961722924163496\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000012\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402471981722924167198\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000097\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402504921722924170492\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000013\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402540851722924174085\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000088\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402579381722924177938\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000014\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403018401722924181840\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000007\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403060611722924186061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000020\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403097211722924189721\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000017\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403135401722924193540\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000089\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-02-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403170891722924197089\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000094\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403204941722924200494\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000062\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403242431722924204243\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000099\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403279021722924207902\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000060\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403355401722924215540\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000064\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403389511722924218951\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000050\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403429331722924222933\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000058\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403470711722924227071\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000063\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403514001722924231400\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000057\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403555821722924235582\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000100\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404126201722924252620\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000052\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404176491722924257649\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000049\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404258211722924265821\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000055\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404297581722924269758\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000066\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404384781722924278478\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000008\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-02-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404455721722924285572\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000029\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405012061722924301206\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000074\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405053521722924305352\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000010\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405179751722924317975\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000039\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405313371722924331337\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000040\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405344621722924334462\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000085\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219631722923721963\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219691722923721969\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000188\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"09-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219761722923721976\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000118\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219821722923721982\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219961722923721996\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000067\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220761722923722076\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000168\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355219631722923721963 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:05:39', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061405399071722924339907', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061355219691722923721969\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000188\", \"taskStatus\": 2, \"destination\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:05:40', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061405399201722924339920', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061355219761722923721976\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000118\", \"taskStatus\": 2, \"destination\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:05:40', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061405408621722924340862', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"07-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401370081722924097008\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000037\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401436021722924103602\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000002\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401497731722924109773\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000006\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401552741722924115274\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000143\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402007281722924120728\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000087\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402141121722924134112\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000011\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402180821722924138082\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000082\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402215991722924141599\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000021\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402250611722924145061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000084\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402288361722924148836\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000004\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402325221722924152522\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000009\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402360051722924156005\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000090\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402398351722924159835\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000005\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402434961722924163496\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000012\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402471981722924167198\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000097\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402504921722924170492\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000013\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402540851722924174085\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000088\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402579381722924177938\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000014\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403018401722924181840\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000007\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403060611722924186061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000020\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403097211722924189721\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000017\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403135401722924193540\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000089\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-02-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403170891722924197089\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000094\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403204941722924200494\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000062\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403242431722924204243\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000099\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403279021722924207902\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000060\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403355401722924215540\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000064\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403389511722924218951\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000050\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403429331722924222933\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000058\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403470711722924227071\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000063\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403514001722924231400\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000057\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403555821722924235582\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000100\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404126201722924252620\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000052\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404176491722924257649\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000049\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404258211722924265821\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000055\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404297581722924269758\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000066\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404384781722924278478\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000008\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-02-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404455721722924285572\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000029\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405012061722924301206\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000074\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405053521722924305352\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000010\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405179751722924317975\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000039\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405313371722924331337\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000040\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405344621722924334462\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000085\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219631722923721963\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219821722923721982\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219961722923721996\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000067\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220761722923722076\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000168\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355219631722923721963 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:05:41', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061405410101722924341010', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000031\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '10.90.106.61', '2024-08-06 14:05:41', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061405428221722924342822', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"07-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401370081722924097008\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000037\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401436021722924103602\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000002\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401497731722924109773\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000006\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401552741722924115274\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000143\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402007281722924120728\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000087\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402141121722924134112\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000011\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402180821722924138082\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000082\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402215991722924141599\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000021\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402250611722924145061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000084\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402288361722924148836\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000004\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402325221722924152522\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000009\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402360051722924156005\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000090\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402398351722924159835\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000005\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402434961722924163496\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000012\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402471981722924167198\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000097\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402504921722924170492\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000013\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402540851722924174085\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000088\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402579381722924177938\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000014\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403018401722924181840\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000007\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403060611722924186061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000020\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403097211722924189721\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000017\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403135401722924193540\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000089\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-02-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403170891722924197089\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000094\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403204941722924200494\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000062\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403242431722924204243\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000099\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403279021722924207902\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000060\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403355401722924215540\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000064\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403389511722924218951\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000050\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403429331722924222933\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000058\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403470711722924227071\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000063\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403514001722924231400\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000057\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403555821722924235582\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000100\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404126201722924252620\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000052\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404176491722924257649\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000049\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404258211722924265821\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000055\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404297581722924269758\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000066\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404384781722924278478\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000008\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-02-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404455721722924285572\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000029\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405012061722924301206\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000074\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405053521722924305352\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000010\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405179751722924317975\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000039\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405313371722924331337\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000040\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405344621722924334462\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000085\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405410081722924341008\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000031\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219631722923721963\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219821722923721982\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219961722923721996\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000067\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220761722923722076\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000168\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355219631722923721963 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:05:43', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061405448171722924344817', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"07-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401370081722924097008\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000037\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401436021722924103602\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000002\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401497731722924109773\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000006\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401552741722924115274\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000143\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402007281722924120728\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000087\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402141121722924134112\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000011\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402180821722924138082\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000082\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402215991722924141599\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000021\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402250611722924145061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000084\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402288361722924148836\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000004\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402325221722924152522\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000009\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402360051722924156005\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000090\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402398351722924159835\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000005\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402434961722924163496\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000012\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402471981722924167198\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000097\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402504921722924170492\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000013\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402540851722924174085\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000088\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402579381722924177938\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000014\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403018401722924181840\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000007\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403060611722924186061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000020\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403097211722924189721\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000017\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403135401722924193540\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000089\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-02-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403170891722924197089\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000094\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403204941722924200494\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000062\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403242431722924204243\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000099\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403279021722924207902\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000060\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403355401722924215540\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000064\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403389511722924218951\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000050\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403429331722924222933\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000058\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403470711722924227071\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000063\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403514001722924231400\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000057\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403555821722924235582\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000100\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404126201722924252620\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000052\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404176491722924257649\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000049\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404258211722924265821\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000055\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404297581722924269758\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000066\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404384781722924278478\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000008\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-02-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404455721722924285572\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000029\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405012061722924301206\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000074\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405053521722924305352\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000010\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405179751722924317975\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000039\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405313371722924331337\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000040\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405344621722924334462\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000085\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405410081722924341008\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000031\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219631722923721963\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219821722923721982\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219961722923721996\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000067\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220761722923722076\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000168\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355219631722923721963 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:05:45', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061405468561722924346856', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"07-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401370081722924097008\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000037\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401436021722924103602\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000002\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401497731722924109773\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000006\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401552741722924115274\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000143\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402007281722924120728\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000087\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402141121722924134112\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000011\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402180821722924138082\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000082\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402215991722924141599\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000021\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402250611722924145061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000084\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402288361722924148836\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000004\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402325221722924152522\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000009\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402360051722924156005\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000090\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402398351722924159835\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000005\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402434961722924163496\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000012\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402471981722924167198\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000097\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402504921722924170492\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000013\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402540851722924174085\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000088\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402579381722924177938\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000014\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403018401722924181840\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000007\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403060611722924186061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000020\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403097211722924189721\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000017\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403135401722924193540\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000089\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-02-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403170891722924197089\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000094\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403204941722924200494\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000062\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403242431722924204243\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000099\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403279021722924207902\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000060\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403355401722924215540\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000064\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403389511722924218951\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000050\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403429331722924222933\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000058\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403470711722924227071\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000063\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403514001722924231400\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000057\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403555821722924235582\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000100\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404126201722924252620\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000052\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404176491722924257649\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000049\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404258211722924265821\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000055\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404297581722924269758\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000066\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404384781722924278478\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000008\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-02-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404455721722924285572\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000029\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405012061722924301206\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000074\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405053521722924305352\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000010\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405179751722924317975\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000039\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405313371722924331337\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000040\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405344621722924334462\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000085\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405410081722924341008\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000031\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219631722923721963\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219821722923721982\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219961722923721996\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000067\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220761722923722076\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000168\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355219631722923721963 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:05:47', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061405482201722924348220', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000074\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '10.90.106.61', '2024-08-06 14:05:48', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061405488501722924348850', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"07-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401370081722924097008\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000037\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401436021722924103602\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000002\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401497731722924109773\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000006\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401552741722924115274\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000143\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402007281722924120728\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000087\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402141121722924134112\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000011\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402180821722924138082\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000082\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402215991722924141599\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000021\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402250611722924145061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000084\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402288361722924148836\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000004\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402325221722924152522\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000009\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402360051722924156005\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000090\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402398351722924159835\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000005\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402434961722924163496\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000012\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402471981722924167198\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000097\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402504921722924170492\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000013\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402540851722924174085\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000088\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402579381722924177938\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000014\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403018401722924181840\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000007\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403060611722924186061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000020\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403097211722924189721\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000017\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403135401722924193540\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000089\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-02-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403170891722924197089\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000094\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403204941722924200494\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000062\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403242431722924204243\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000099\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403279021722924207902\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000060\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403355401722924215540\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000064\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403389511722924218951\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000050\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403429331722924222933\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000058\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403470711722924227071\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000063\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403514001722924231400\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000057\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403555821722924235582\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000100\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404126201722924252620\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000052\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404176491722924257649\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000049\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404258211722924265821\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000055\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404297581722924269758\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000066\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404384781722924278478\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000008\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-02-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404455721722924285572\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000029\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405012061722924301206\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000074\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405053521722924305352\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000010\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405179751722924317975\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000039\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405313371722924331337\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000040\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405344621722924334462\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000085\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405410081722924341008\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000031\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219631722923721963\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219821722923721982\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219961722923721996\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000067\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220761722923722076\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000168\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355219631722923721963 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:05:49', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061405508931722924350893', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"07-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401370081722924097008\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000037\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401436021722924103602\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000002\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401497731722924109773\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000006\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401552741722924115274\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000143\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402007281722924120728\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000087\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402141121722924134112\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000011\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402180821722924138082\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000082\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402215991722924141599\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000021\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402250611722924145061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000084\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402288361722924148836\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000004\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402325221722924152522\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000009\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402360051722924156005\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000090\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402398351722924159835\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000005\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402434961722924163496\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000012\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402471981722924167198\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000097\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402504921722924170492\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000013\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402540851722924174085\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000088\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402579381722924177938\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000014\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403018401722924181840\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000007\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403060611722924186061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000020\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403097211722924189721\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000017\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403135401722924193540\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000089\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-02-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403170891722924197089\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000094\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403204941722924200494\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000062\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403242431722924204243\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000099\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403279021722924207902\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000060\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403355401722924215540\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000064\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403389511722924218951\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000050\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403429331722924222933\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000058\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403470711722924227071\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000063\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403514001722924231400\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000057\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403555821722924235582\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000100\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404126201722924252620\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000052\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404176491722924257649\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000049\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404258211722924265821\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000055\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404297581722924269758\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000066\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404384781722924278478\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000008\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-02-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404455721722924285572\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000029\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405012061722924301206\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000074\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405053521722924305352\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000010\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405179751722924317975\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000039\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405313371722924331337\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000040\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405344621722924334462\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000085\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405410081722924341008\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000031\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219631722923721963\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219821722923721982\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219961722923721996\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000067\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220761722923722076\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000168\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355219631722923721963 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:05:51', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061405528901722924352890', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"07-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401370081722924097008\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000037\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401436021722924103602\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000002\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401497731722924109773\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000006\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401552741722924115274\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000143\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402007281722924120728\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000087\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402141121722924134112\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000011\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402180821722924138082\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000082\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402215991722924141599\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000021\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402250611722924145061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000084\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402288361722924148836\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000004\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402325221722924152522\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000009\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402360051722924156005\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000090\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402398351722924159835\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000005\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402434961722924163496\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000012\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402471981722924167198\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000097\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402504921722924170492\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000013\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402540851722924174085\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000088\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402579381722924177938\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000014\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403018401722924181840\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000007\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403060611722924186061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000020\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403097211722924189721\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000017\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403135401722924193540\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000089\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-02-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403170891722924197089\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000094\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403204941722924200494\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000062\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403242431722924204243\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000099\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403279021722924207902\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000060\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403355401722924215540\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000064\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403389511722924218951\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000050\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403429331722924222933\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000058\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403470711722924227071\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000063\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403514001722924231400\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000057\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403555821722924235582\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000100\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404126201722924252620\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000052\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404176491722924257649\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000049\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404258211722924265821\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000055\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404297581722924269758\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000066\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404384781722924278478\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000008\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-02-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404455721722924285572\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000029\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405012061722924301206\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000074\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405053521722924305352\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000010\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405179751722924317975\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000039\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405313371722924331337\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000040\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405344621722924334462\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000085\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405410081722924341008\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000031\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219631722923721963\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219821722923721982\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219961722923721996\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000067\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220761722923722076\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000168\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355219631722923721963 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:05:53', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061405548791722924354879', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"07-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401370081722924097008\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000037\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401436021722924103602\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000002\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401497731722924109773\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000006\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401552741722924115274\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000143\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402007281722924120728\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000087\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402141121722924134112\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000011\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402180821722924138082\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000082\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402215991722924141599\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000021\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402250611722924145061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000084\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402288361722924148836\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000004\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402325221722924152522\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000009\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402360051722924156005\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000090\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402398351722924159835\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000005\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402434961722924163496\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000012\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402471981722924167198\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000097\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402504921722924170492\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000013\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402540851722924174085\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000088\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402579381722924177938\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000014\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403018401722924181840\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000007\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403060611722924186061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000020\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403097211722924189721\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000017\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403135401722924193540\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000089\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-02-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403170891722924197089\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000094\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403204941722924200494\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000062\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403242431722924204243\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000099\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403279021722924207902\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000060\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403355401722924215540\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000064\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403389511722924218951\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000050\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403429331722924222933\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000058\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403470711722924227071\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000063\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403514001722924231400\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000057\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403555821722924235582\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000100\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404126201722924252620\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000052\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404176491722924257649\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000049\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404258211722924265821\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000055\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404297581722924269758\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000066\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404384781722924278478\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000008\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-02-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404455721722924285572\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000029\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405012061722924301206\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000074\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405053521722924305352\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000010\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405179751722924317975\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000039\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405313371722924331337\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000040\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405344621722924334462\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000085\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405410081722924341008\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000031\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219631722923721963\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219821722923721982\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219961722923721996\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000067\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220761722923722076\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000168\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355219631722923721963 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:05:55', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061405551511722924355151', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000073\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '10.90.106.61', '2024-08-06 14:05:55', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061405568641722924356864', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"07-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401370081722924097008\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000037\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401436021722924103602\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000002\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401497731722924109773\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000006\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401552741722924115274\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000143\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402007281722924120728\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000087\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402141121722924134112\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000011\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402180821722924138082\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000082\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402215991722924141599\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000021\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402250611722924145061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000084\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402288361722924148836\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000004\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402325221722924152522\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000009\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402360051722924156005\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000090\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402398351722924159835\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000005\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402434961722924163496\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000012\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402471981722924167198\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000097\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402504921722924170492\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000013\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402540851722924174085\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000088\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402579381722924177938\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000014\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403018401722924181840\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000007\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403060611722924186061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000020\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403097211722924189721\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000017\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403135401722924193540\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000089\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-02-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403170891722924197089\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000094\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403204941722924200494\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000062\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403242431722924204243\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000099\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403279021722924207902\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000060\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403355401722924215540\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000064\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403389511722924218951\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000050\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403429331722924222933\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000058\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403470711722924227071\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000063\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403514001722924231400\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000057\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403555821722924235582\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000100\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404126201722924252620\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000052\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404176491722924257649\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000049\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404258211722924265821\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000055\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404297581722924269758\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000066\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404384781722924278478\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000008\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-02-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404455721722924285572\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000029\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405012061722924301206\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000074\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405053521722924305352\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000010\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405179751722924317975\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000039\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405313371722924331337\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000040\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405344621722924334462\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000085\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405410081722924341008\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000031\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405551481722924355148\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000073\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219631722923721963\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219821722923721982\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219961722923721996\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000067\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220761722923722076\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000168\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355219631722923721963 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:05:57', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061405588981722924358898', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"07-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401370081722924097008\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000037\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401436021722924103602\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000002\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401497731722924109773\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000006\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401552741722924115274\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000143\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402007281722924120728\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000087\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402141121722924134112\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000011\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402180821722924138082\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000082\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402215991722924141599\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000021\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402250611722924145061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000084\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402288361722924148836\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000004\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402325221722924152522\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000009\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402360051722924156005\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000090\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402398351722924159835\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000005\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402434961722924163496\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000012\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402471981722924167198\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000097\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402504921722924170492\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000013\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402540851722924174085\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000088\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402579381722924177938\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000014\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403018401722924181840\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000007\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403060611722924186061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000020\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403097211722924189721\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000017\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403135401722924193540\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000089\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-02-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403170891722924197089\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000094\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403204941722924200494\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000062\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403242431722924204243\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000099\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403279021722924207902\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000060\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403355401722924215540\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000064\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403389511722924218951\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000050\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403429331722924222933\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000058\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403470711722924227071\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000063\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403514001722924231400\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000057\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403555821722924235582\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000100\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404126201722924252620\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000052\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404176491722924257649\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000049\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404258211722924265821\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000055\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404297581722924269758\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000066\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404384781722924278478\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000008\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-02-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404455721722924285572\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000029\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405012061722924301206\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000074\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405053521722924305352\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000010\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405179751722924317975\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000039\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405313371722924331337\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000040\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405344621722924334462\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000085\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405410081722924341008\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000031\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405551481722924355148\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000073\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219631722923721963\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219821722923721982\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219961722923721996\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000067\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220761722923722076\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000168\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355219631722923721963 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:05:59', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061406008951722924360895', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"07-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401370081722924097008\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000037\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401436021722924103602\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000002\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401497731722924109773\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000006\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401552741722924115274\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000143\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402007281722924120728\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000087\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402141121722924134112\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000011\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402180821722924138082\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000082\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402215991722924141599\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000021\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402250611722924145061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000084\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402288361722924148836\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000004\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402325221722924152522\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000009\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402360051722924156005\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000090\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402398351722924159835\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000005\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402434961722924163496\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000012\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402471981722924167198\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000097\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402504921722924170492\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000013\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402540851722924174085\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000088\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402579381722924177938\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000014\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403018401722924181840\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000007\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403060611722924186061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000020\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403097211722924189721\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000017\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403135401722924193540\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000089\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-02-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403170891722924197089\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000094\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403204941722924200494\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000062\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403242431722924204243\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000099\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403279021722924207902\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000060\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403355401722924215540\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000064\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403389511722924218951\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000050\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403429331722924222933\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000058\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403470711722924227071\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000063\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403514001722924231400\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000057\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403555821722924235582\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000100\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404126201722924252620\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000052\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404176491722924257649\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000049\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404258211722924265821\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000055\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404297581722924269758\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000066\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404384781722924278478\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000008\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-02-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404455721722924285572\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000029\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405012061722924301206\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000074\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405053521722924305352\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000010\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405179751722924317975\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000039\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405313371722924331337\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000040\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405344621722924334462\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000085\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405410081722924341008\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000031\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405551481722924355148\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000073\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219631722923721963\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219821722923721982\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219961722923721996\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000067\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220761722923722076\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000168\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355219631722923721963 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:06:01', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061406012191722924361219', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000083\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '10.90.106.61', '2024-08-06 14:06:01', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061406028851722924362885', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"07-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401370081722924097008\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000037\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401436021722924103602\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000002\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401497731722924109773\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000006\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401552741722924115274\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000143\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402007281722924120728\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000087\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402141121722924134112\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000011\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402180821722924138082\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000082\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402215991722924141599\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000021\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402250611722924145061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000084\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402288361722924148836\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000004\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402325221722924152522\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000009\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402360051722924156005\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000090\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402398351722924159835\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000005\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402434961722924163496\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000012\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402471981722924167198\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000097\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402504921722924170492\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000013\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402540851722924174085\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000088\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402579381722924177938\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000014\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403018401722924181840\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000007\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403060611722924186061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000020\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403097211722924189721\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000017\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403135401722924193540\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000089\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-02-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403170891722924197089\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000094\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403204941722924200494\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000062\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403242431722924204243\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000099\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403279021722924207902\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000060\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403355401722924215540\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000064\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403389511722924218951\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000050\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403429331722924222933\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000058\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403470711722924227071\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000063\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403514001722924231400\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000057\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403555821722924235582\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000100\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404126201722924252620\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000052\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404176491722924257649\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000049\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404258211722924265821\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000055\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404297581722924269758\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000066\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404384781722924278478\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000008\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-02-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404455721722924285572\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000029\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405012061722924301206\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000074\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405053521722924305352\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000010\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405179751722924317975\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000039\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405313371722924331337\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000040\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405344621722924334462\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000085\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405410081722924341008\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000031\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405551481722924355148\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000073\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061406012161722924361216\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000083\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219631722923721963\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219821722923721982\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219961722923721996\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000067\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355219631722923721963 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:06:03', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061406049631722924364963', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"07-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401370081722924097008\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000037\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401436021722924103602\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000002\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401497731722924109773\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000006\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401552741722924115274\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000143\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402007281722924120728\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000087\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402141121722924134112\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000011\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402180821722924138082\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000082\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402215991722924141599\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000021\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402250611722924145061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000084\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402288361722924148836\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000004\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402325221722924152522\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000009\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402360051722924156005\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000090\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402398351722924159835\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000005\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402434961722924163496\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000012\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402471981722924167198\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000097\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402504921722924170492\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000013\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402540851722924174085\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000088\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402579381722924177938\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000014\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403018401722924181840\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000007\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403060611722924186061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000020\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403097211722924189721\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000017\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403135401722924193540\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000089\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-02-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403170891722924197089\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000094\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403204941722924200494\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000062\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403242431722924204243\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000099\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403279021722924207902\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000060\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403355401722924215540\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000064\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403389511722924218951\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000050\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403429331722924222933\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000058\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403470711722924227071\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000063\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403514001722924231400\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000057\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403555821722924235582\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000100\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404126201722924252620\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000052\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404176491722924257649\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000049\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404258211722924265821\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000055\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404297581722924269758\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000066\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404384781722924278478\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000008\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-02-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404455721722924285572\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000029\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405012061722924301206\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000074\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405053521722924305352\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000010\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405179751722924317975\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000039\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405313371722924331337\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000040\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405344621722924334462\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000085\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405410081722924341008\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000031\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405551481722924355148\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000073\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061406012161722924361216\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000083\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219631722923721963\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219821722923721982\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219961722923721996\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000067\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355219631722923721963 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:06:05', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061406069321722924366932', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"07-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401370081722924097008\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000037\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401436021722924103602\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000002\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401497731722924109773\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000006\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401552741722924115274\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000143\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402007281722924120728\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000087\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402141121722924134112\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000011\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402180821722924138082\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000082\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402215991722924141599\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000021\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402250611722924145061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000084\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402288361722924148836\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000004\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402325221722924152522\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000009\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402360051722924156005\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000090\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402398351722924159835\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000005\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402434961722924163496\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000012\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402471981722924167198\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000097\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402504921722924170492\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000013\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402540851722924174085\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000088\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402579381722924177938\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000014\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403018401722924181840\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000007\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403060611722924186061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000020\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403097211722924189721\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000017\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403135401722924193540\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000089\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-02-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403170891722924197089\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000094\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403204941722924200494\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000062\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403242431722924204243\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000099\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403279021722924207902\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000060\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403355401722924215540\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000064\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403389511722924218951\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000050\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403429331722924222933\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000058\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403470711722924227071\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000063\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403514001722924231400\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000057\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403555821722924235582\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000100\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404126201722924252620\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000052\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404176491722924257649\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000049\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404258211722924265821\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000055\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404297581722924269758\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000066\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404384781722924278478\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000008\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-02-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404455721722924285572\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000029\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405012061722924301206\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000074\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405053521722924305352\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000010\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405179751722924317975\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000039\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405313371722924331337\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000040\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405344621722924334462\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000085\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405410081722924341008\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000031\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405551481722924355148\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000073\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061406012161722924361216\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000083\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219631722923721963\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219821722923721982\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219961722923721996\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000067\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355219631722923721963 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:06:07', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061406077911722924367791', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000010\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '10.90.106.61', '2024-08-06 14:06:08', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061406089691722924368969', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"07-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401370081722924097008\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000037\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401436021722924103602\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000002\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401497731722924109773\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000006\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401552741722924115274\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000143\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402007281722924120728\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000087\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402141121722924134112\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000011\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402180821722924138082\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000082\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402215991722924141599\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000021\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402250611722924145061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000084\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402288361722924148836\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000004\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402325221722924152522\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000009\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402360051722924156005\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000090\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402398351722924159835\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000005\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402434961722924163496\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000012\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402471981722924167198\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000097\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402504921722924170492\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000013\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402540851722924174085\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000088\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402579381722924177938\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000014\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403018401722924181840\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000007\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403060611722924186061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000020\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403097211722924189721\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000017\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403135401722924193540\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000089\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-02-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403170891722924197089\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000094\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403204941722924200494\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000062\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403242431722924204243\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000099\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403279021722924207902\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000060\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403355401722924215540\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000064\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403389511722924218951\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000050\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403429331722924222933\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000058\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403470711722924227071\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000063\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403514001722924231400\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000057\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403555821722924235582\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000100\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404126201722924252620\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000052\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404176491722924257649\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000049\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404258211722924265821\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000055\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404297581722924269758\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000066\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404384781722924278478\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000008\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-02-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404455721722924285572\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000029\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405012061722924301206\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000074\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405053521722924305352\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000010\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405179751722924317975\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000039\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405313371722924331337\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000040\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405344621722924334462\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000085\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405410081722924341008\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000031\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405551481722924355148\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000073\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061406012161722924361216\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000083\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219631722923721963\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219821722923721982\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219961722923721996\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000067\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355219631722923721963 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:06:09', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061406111391722924371139', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"07-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401370081722924097008\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000037\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401436021722924103602\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000002\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401497731722924109773\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000006\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401552741722924115274\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000143\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402007281722924120728\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000087\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402141121722924134112\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000011\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402180821722924138082\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000082\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402215991722924141599\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000021\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402250611722924145061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000084\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402288361722924148836\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000004\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402325221722924152522\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000009\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402360051722924156005\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000090\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402398351722924159835\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000005\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402434961722924163496\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000012\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402471981722924167198\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000097\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402504921722924170492\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000013\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402540851722924174085\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000088\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402579381722924177938\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000014\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403018401722924181840\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000007\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403060611722924186061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000020\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403097211722924189721\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000017\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403135401722924193540\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000089\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-02-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403170891722924197089\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000094\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403204941722924200494\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000062\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403242431722924204243\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000099\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403279021722924207902\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000060\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403355401722924215540\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000064\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403389511722924218951\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000050\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403429331722924222933\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000058\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403470711722924227071\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000063\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403514001722924231400\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000057\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403555821722924235582\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000100\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404126201722924252620\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000052\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404176491722924257649\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000049\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404258211722924265821\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000055\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404297581722924269758\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000066\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404384781722924278478\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000008\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-02-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404455721722924285572\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000029\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405012061722924301206\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000074\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405053521722924305352\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000010\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405179751722924317975\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000039\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405313371722924331337\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000040\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405344621722924334462\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000085\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405410081722924341008\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000031\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405551481722924355148\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000073\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061406012161722924361216\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000083\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219631722923721963\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219821722923721982\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219961722923721996\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000067\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355219631722923721963 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:06:11', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061406129601722924372960', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"07-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401370081722924097008\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000037\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401436021722924103602\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000002\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401497731722924109773\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000006\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401552741722924115274\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000143\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402007281722924120728\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000087\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402141121722924134112\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000011\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402180821722924138082\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000082\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402215991722924141599\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000021\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402250611722924145061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000084\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402288361722924148836\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000004\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402325221722924152522\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000009\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402360051722924156005\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000090\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402398351722924159835\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000005\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402434961722924163496\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000012\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402471981722924167198\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000097\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402504921722924170492\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000013\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402540851722924174085\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000088\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402579381722924177938\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000014\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403018401722924181840\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000007\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403060611722924186061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000020\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403097211722924189721\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000017\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403135401722924193540\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000089\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-02-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403170891722924197089\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000094\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403204941722924200494\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000062\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403242431722924204243\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000099\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403279021722924207902\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000060\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403355401722924215540\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000064\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403389511722924218951\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000050\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403429331722924222933\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000058\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403470711722924227071\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000063\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403514001722924231400\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000057\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403555821722924235582\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000100\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404126201722924252620\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000052\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404176491722924257649\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000049\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404258211722924265821\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000055\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404297581722924269758\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000066\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404384781722924278478\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000008\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-02-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404455721722924285572\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000029\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405012061722924301206\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000074\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405053521722924305352\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000010\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405179751722924317975\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000039\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405313371722924331337\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000040\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405344621722924334462\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000085\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405410081722924341008\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000031\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405551481722924355148\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000073\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061406012161722924361216\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000083\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219631722923721963\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219821722923721982\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219961722923721996\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000067\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355219631722923721963 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:06:13', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061406149441722924374944', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"07-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401370081722924097008\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000037\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401436021722924103602\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000002\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401497731722924109773\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000006\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401552741722924115274\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000143\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402007281722924120728\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000087\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402141121722924134112\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000011\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402180821722924138082\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000082\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402215991722924141599\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000021\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402250611722924145061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000084\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402288361722924148836\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000004\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402325221722924152522\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000009\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402360051722924156005\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000090\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402398351722924159835\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000005\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402434961722924163496\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000012\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402471981722924167198\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000097\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402504921722924170492\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000013\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402540851722924174085\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000088\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402579381722924177938\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000014\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403018401722924181840\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000007\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403060611722924186061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000020\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403097211722924189721\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000017\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403135401722924193540\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000089\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-02-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403170891722924197089\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000094\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403204941722924200494\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000062\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403242431722924204243\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000099\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403279021722924207902\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000060\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403355401722924215540\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000064\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403389511722924218951\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000050\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403429331722924222933\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000058\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403470711722924227071\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000063\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403514001722924231400\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000057\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403555821722924235582\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000100\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404126201722924252620\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000052\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404176491722924257649\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000049\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404258211722924265821\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000055\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404297581722924269758\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000066\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404384781722924278478\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000008\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-02-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404455721722924285572\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000029\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405012061722924301206\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000074\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405053521722924305352\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000010\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405179751722924317975\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000039\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405313371722924331337\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000040\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405344621722924334462\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000085\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405410081722924341008\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000031\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405551481722924355148\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000073\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061406012161722924361216\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000083\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219631722923721963\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219821722923721982\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219961722923721996\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000067\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355219631722923721963 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:06:15', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061406169261722924376926', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"07-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401370081722924097008\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000037\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401436021722924103602\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000002\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401497731722924109773\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000006\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401552741722924115274\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000143\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402007281722924120728\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000087\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402141121722924134112\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000011\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402180821722924138082\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000082\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402215991722924141599\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000021\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402250611722924145061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000084\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402288361722924148836\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000004\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402325221722924152522\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000009\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402360051722924156005\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000090\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402398351722924159835\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000005\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402434961722924163496\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000012\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402471981722924167198\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000097\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402504921722924170492\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000013\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402540851722924174085\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000088\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402579381722924177938\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000014\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403018401722924181840\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000007\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403060611722924186061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000020\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403097211722924189721\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000017\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403135401722924193540\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000089\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-02-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403170891722924197089\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000094\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403204941722924200494\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000062\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403242431722924204243\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000099\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403279021722924207902\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000060\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403355401722924215540\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000064\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403389511722924218951\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000050\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403429331722924222933\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000058\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403470711722924227071\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000063\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403514001722924231400\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000057\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403555821722924235582\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000100\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404126201722924252620\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000052\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404176491722924257649\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000049\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404258211722924265821\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000055\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404297581722924269758\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000066\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404384781722924278478\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000008\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-02-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404455721722924285572\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000029\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405012061722924301206\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000074\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405053521722924305352\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000010\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405179751722924317975\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000039\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405313371722924331337\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000040\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405344621722924334462\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000085\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405410081722924341008\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000031\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405551481722924355148\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000073\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061406012161722924361216\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000083\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219631722923721963\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219821722923721982\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219961722923721996\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000067\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355219631722923721963 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:06:17', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061406189491722924378949', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"07-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401370081722924097008\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000037\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401436021722924103602\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000002\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401497731722924109773\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000006\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401552741722924115274\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000143\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402007281722924120728\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000087\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402141121722924134112\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000011\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402180821722924138082\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000082\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402215991722924141599\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000021\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402250611722924145061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000084\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402288361722924148836\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000004\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402325221722924152522\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000009\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402360051722924156005\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000090\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402398351722924159835\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000005\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402434961722924163496\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000012\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402471981722924167198\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000097\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402504921722924170492\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000013\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402540851722924174085\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000088\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402579381722924177938\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000014\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403018401722924181840\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000007\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403060611722924186061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000020\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403097211722924189721\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000017\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403135401722924193540\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000089\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-02-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403170891722924197089\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000094\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403204941722924200494\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000062\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403242431722924204243\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000099\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403279021722924207902\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000060\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403355401722924215540\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000064\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403389511722924218951\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000050\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403429331722924222933\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000058\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403470711722924227071\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000063\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403514001722924231400\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000057\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403555821722924235582\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000100\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404126201722924252620\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000052\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404176491722924257649\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000049\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404258211722924265821\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000055\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404297581722924269758\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000066\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404384781722924278478\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000008\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-02-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404455721722924285572\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000029\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405012061722924301206\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000074\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405053521722924305352\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000010\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405179751722924317975\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000039\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405313371722924331337\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000040\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405344621722924334462\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000085\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405410081722924341008\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000031\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405551481722924355148\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000073\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061406012161722924361216\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000083\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219631722923721963\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219821722923721982\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219961722923721996\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000067\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355219631722923721963 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:06:19', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061406209471722924380947', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"07-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401370081722924097008\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000037\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401436021722924103602\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000002\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401497731722924109773\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000006\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401552741722924115274\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000143\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402007281722924120728\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000087\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402141121722924134112\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000011\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402180821722924138082\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000082\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402215991722924141599\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000021\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402250611722924145061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000084\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402288361722924148836\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000004\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402325221722924152522\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000009\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402360051722924156005\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000090\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402398351722924159835\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000005\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402434961722924163496\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000012\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402471981722924167198\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000097\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402504921722924170492\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000013\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402540851722924174085\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000088\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402579381722924177938\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000014\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403018401722924181840\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000007\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403060611722924186061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000020\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403097211722924189721\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000017\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403135401722924193540\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000089\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-02-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403170891722924197089\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000094\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403204941722924200494\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000062\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403242431722924204243\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000099\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403279021722924207902\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000060\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403355401722924215540\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000064\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403389511722924218951\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000050\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403429331722924222933\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000058\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403470711722924227071\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000063\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403514001722924231400\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000057\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403555821722924235582\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000100\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404126201722924252620\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000052\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404176491722924257649\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000049\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404258211722924265821\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000055\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404297581722924269758\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000066\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404384781722924278478\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000008\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-02-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404455721722924285572\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000029\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405012061722924301206\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000074\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405053521722924305352\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000010\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405179751722924317975\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000039\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405313371722924331337\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000040\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405344621722924334462\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000085\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405410081722924341008\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000031\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405551481722924355148\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000073\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061406012161722924361216\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000083\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219631722923721963\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219821722923721982\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219961722923721996\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000067\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355219631722923721963 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:06:21', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061406231511722924383151', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"07-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401370081722924097008\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000037\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401436021722924103602\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000002\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401497731722924109773\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000006\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401552741722924115274\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000143\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402007281722924120728\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000087\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402141121722924134112\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000011\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402180821722924138082\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000082\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402215991722924141599\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000021\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402250611722924145061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000084\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402288361722924148836\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000004\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402325221722924152522\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000009\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402360051722924156005\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000090\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402398351722924159835\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000005\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402434961722924163496\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000012\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402471981722924167198\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000097\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402504921722924170492\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000013\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402540851722924174085\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000088\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402579381722924177938\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000014\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403018401722924181840\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000007\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403060611722924186061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000020\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403097211722924189721\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000017\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403135401722924193540\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000089\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-02-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403170891722924197089\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000094\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403204941722924200494\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000062\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403242431722924204243\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000099\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403279021722924207902\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000060\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403355401722924215540\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000064\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403389511722924218951\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000050\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403429331722924222933\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000058\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403470711722924227071\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000063\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403514001722924231400\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000057\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403555821722924235582\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000100\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404126201722924252620\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000052\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404176491722924257649\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000049\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404258211722924265821\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000055\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404297581722924269758\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000066\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404384781722924278478\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000008\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-02-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404455721722924285572\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000029\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405012061722924301206\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000074\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405053521722924305352\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000010\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405179751722924317975\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000039\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405313371722924331337\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000040\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405344621722924334462\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000085\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405410081722924341008\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000031\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405551481722924355148\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000073\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061406012161722924361216\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000083\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219631722923721963\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219821722923721982\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219961722923721996\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000067\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355219631722923721963 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:06:23', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061406250431722924385043', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"07-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401370081722924097008\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000037\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401436021722924103602\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000002\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401497731722924109773\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000006\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401552741722924115274\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000143\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402007281722924120728\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000087\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402141121722924134112\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000011\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402180821722924138082\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000082\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402215991722924141599\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000021\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402250611722924145061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000084\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402288361722924148836\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000004\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402325221722924152522\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000009\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402360051722924156005\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000090\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402398351722924159835\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000005\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402434961722924163496\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000012\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402471981722924167198\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000097\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402504921722924170492\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000013\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402540851722924174085\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000088\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402579381722924177938\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000014\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403018401722924181840\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000007\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403060611722924186061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000020\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403097211722924189721\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000017\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403135401722924193540\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000089\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-02-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403170891722924197089\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000094\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403204941722924200494\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000062\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403242431722924204243\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000099\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403279021722924207902\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000060\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403355401722924215540\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000064\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403389511722924218951\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000050\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403429331722924222933\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000058\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403470711722924227071\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000063\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403514001722924231400\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000057\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403555821722924235582\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000100\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404126201722924252620\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000052\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404176491722924257649\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000049\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404258211722924265821\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000055\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404297581722924269758\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000066\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404384781722924278478\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000008\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-02-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404455721722924285572\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000029\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405012061722924301206\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000074\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405053521722924305352\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000010\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405179751722924317975\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000039\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405313371722924331337\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000040\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405344621722924334462\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000085\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405410081722924341008\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000031\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405551481722924355148\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000073\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061406012161722924361216\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000083\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219631722923721963\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219821722923721982\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219961722923721996\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000067\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355219631722923721963 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:06:25', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061406267601722924386760', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061355219761722923721976\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000118\", \"taskStatus\": 100, \"destination\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:06:27', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061406268191722924386819', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061355219691722923721969\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000188\", \"taskStatus\": 100, \"destination\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:06:27', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061406270301722924387030', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"07-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401370081722924097008\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000037\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401436021722924103602\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000002\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401497731722924109773\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000006\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401552741722924115274\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000143\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402007281722924120728\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000087\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402141121722924134112\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000011\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402180821722924138082\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000082\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402215991722924141599\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000021\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402250611722924145061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000084\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402288361722924148836\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000004\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402325221722924152522\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000009\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402360051722924156005\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000090\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402398351722924159835\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000005\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402434961722924163496\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000012\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402471981722924167198\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000097\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402504921722924170492\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000013\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402540851722924174085\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000088\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402579381722924177938\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000014\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403018401722924181840\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000007\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403060611722924186061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000020\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403097211722924189721\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000017\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403135401722924193540\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000089\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-02-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403170891722924197089\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000094\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403204941722924200494\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000062\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403242431722924204243\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000099\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403279021722924207902\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000060\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403355401722924215540\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000064\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403389511722924218951\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000050\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403429331722924222933\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000058\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403470711722924227071\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000063\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403514001722924231400\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000057\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403555821722924235582\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000100\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404126201722924252620\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000052\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404176491722924257649\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000049\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404258211722924265821\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000055\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404297581722924269758\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000066\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404384781722924278478\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000008\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-02-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404455721722924285572\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000029\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405012061722924301206\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000074\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405053521722924305352\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000010\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405179751722924317975\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000039\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405313371722924331337\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000040\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405344621722924334462\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000085\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405410081722924341008\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000031\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405551481722924355148\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000073\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061406012161722924361216\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000083\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219631722923721963\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219821722923721982\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219961722923721996\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000067\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355219631722923721963 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:06:27', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061406290581722924389058', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"07-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401370081722924097008\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000037\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401436021722924103602\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000002\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401497731722924109773\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000006\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401552741722924115274\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000143\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402007281722924120728\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000087\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402141121722924134112\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000011\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402180821722924138082\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000082\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402215991722924141599\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000021\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402250611722924145061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000084\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402288361722924148836\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000004\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402325221722924152522\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000009\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402360051722924156005\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000090\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402398351722924159835\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000005\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402434961722924163496\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000012\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402471981722924167198\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000097\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402504921722924170492\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000013\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402540851722924174085\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000088\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402579381722924177938\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000014\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403018401722924181840\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000007\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403060611722924186061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000020\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403097211722924189721\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000017\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403135401722924193540\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000089\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-02-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403170891722924197089\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000094\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403204941722924200494\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000062\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403242431722924204243\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000099\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403279021722924207902\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000060\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403355401722924215540\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000064\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403389511722924218951\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000050\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403429331722924222933\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000058\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403470711722924227071\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000063\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403514001722924231400\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000057\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403555821722924235582\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000100\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404126201722924252620\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000052\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404176491722924257649\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000049\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404258211722924265821\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000055\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404297581722924269758\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000066\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404384781722924278478\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000008\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-02-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404455721722924285572\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000029\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405012061722924301206\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000074\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405053521722924305352\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000010\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405179751722924317975\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000039\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405313371722924331337\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000040\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405344621722924334462\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000085\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405410081722924341008\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000031\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405551481722924355148\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000073\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061406012161722924361216\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000083\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219631722923721963\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"08-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219821722923721982\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219961722923721996\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000067\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355219631722923721963 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:06:29', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061406302751722924390275', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061355219821722923721982\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000026\", \"taskStatus\": 2, \"destination\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:06:30', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061406310741722924391074', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"07-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401370081722924097008\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000037\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401436021722924103602\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000002\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401497731722924109773\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000006\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401552741722924115274\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000143\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402007281722924120728\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000087\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402141121722924134112\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000011\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402180821722924138082\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000082\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402215991722924141599\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000021\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402250611722924145061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000084\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402288361722924148836\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000004\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402325221722924152522\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000009\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402360051722924156005\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000090\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402398351722924159835\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000005\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402434961722924163496\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000012\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402471981722924167198\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000097\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402504921722924170492\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000013\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402540851722924174085\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000088\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402579381722924177938\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000014\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403018401722924181840\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000007\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403060611722924186061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000020\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403097211722924189721\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000017\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403135401722924193540\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000089\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-02-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403170891722924197089\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000094\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403204941722924200494\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000062\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403242431722924204243\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000099\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403279021722924207902\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000060\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403355401722924215540\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000064\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403389511722924218951\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000050\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403429331722924222933\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000058\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403470711722924227071\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000063\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403514001722924231400\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000057\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403555821722924235582\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000100\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404126201722924252620\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000052\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404176491722924257649\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000049\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404258211722924265821\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000055\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404297581722924269758\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000066\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404384781722924278478\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000008\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-02-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404455721722924285572\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000029\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405012061722924301206\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000074\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405053521722924305352\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000010\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405179751722924317975\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000039\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405313371722924331337\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000040\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405344621722924334462\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000085\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405410081722924341008\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000031\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405551481722924355148\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000073\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061406012161722924361216\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000083\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219631722923721963\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219961722923721996\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000067\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220761722923722076\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000168\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355219631722923721963 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:06:31', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061406327621722924392762', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061355223631722923722363\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000101\", \"taskStatus\": 100, \"destination\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:06:33', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061406330621722924393062', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"07-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401370081722924097008\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000037\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401436021722924103602\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000002\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401497731722924109773\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000006\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401552741722924115274\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000143\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402007281722924120728\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000087\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402141121722924134112\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000011\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402180821722924138082\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000082\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402215991722924141599\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000021\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402250611722924145061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000084\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402288361722924148836\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000004\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402325221722924152522\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000009\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402360051722924156005\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000090\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402398351722924159835\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000005\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402434961722924163496\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000012\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402471981722924167198\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000097\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402504921722924170492\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000013\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402540851722924174085\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000088\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402579381722924177938\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000014\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403018401722924181840\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000007\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403060611722924186061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000020\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403097211722924189721\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000017\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403135401722924193540\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000089\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-02-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403170891722924197089\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000094\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403204941722924200494\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000062\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403242431722924204243\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000099\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403279021722924207902\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000060\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403355401722924215540\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000064\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403389511722924218951\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000050\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403429331722924222933\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000058\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403470711722924227071\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000063\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403514001722924231400\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000057\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403555821722924235582\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000100\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404126201722924252620\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000052\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404176491722924257649\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000049\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404258211722924265821\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000055\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404297581722924269758\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000066\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404384781722924278478\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000008\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-02-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404455721722924285572\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000029\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405012061722924301206\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000074\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405053521722924305352\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000010\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405179751722924317975\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000039\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405313371722924331337\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000040\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405344621722924334462\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000085\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405410081722924341008\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000031\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405551481722924355148\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000073\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061406012161722924361216\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000083\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219631722923721963\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219961722923721996\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000067\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220761722923722076\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000168\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355219631722923721963 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:06:33', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061406337591722924393759', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061355223701722923722370\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000198\", \"taskStatus\": 100, \"destination\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:06:34', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061406350551722924395055', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"07-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401370081722924097008\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000037\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401436021722924103602\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000002\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401497731722924109773\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000006\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401552741722924115274\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000143\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402007281722924120728\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000087\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402141121722924134112\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000011\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402180821722924138082\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000082\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402215991722924141599\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000021\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402250611722924145061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000084\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402288361722924148836\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000004\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402325221722924152522\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000009\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402360051722924156005\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000090\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402398351722924159835\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000005\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402434961722924163496\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000012\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402471981722924167198\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000097\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402504921722924170492\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000013\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402540851722924174085\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000088\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402579381722924177938\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000014\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403018401722924181840\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000007\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403060611722924186061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000020\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403097211722924189721\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000017\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403135401722924193540\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000089\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-02-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403170891722924197089\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000094\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403204941722924200494\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000062\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403242431722924204243\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000099\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403279021722924207902\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000060\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403355401722924215540\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000064\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403389511722924218951\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000050\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403429331722924222933\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000058\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403470711722924227071\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000063\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403514001722924231400\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000057\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403555821722924235582\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000100\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404126201722924252620\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000052\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404176491722924257649\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000049\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404258211722924265821\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000055\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404297581722924269758\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000066\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404384781722924278478\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000008\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-02-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404455721722924285572\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000029\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405012061722924301206\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000074\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405053521722924305352\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000010\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405179751722924317975\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000039\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405313371722924331337\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000040\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405344621722924334462\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000085\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405410081722924341008\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000031\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405551481722924355148\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000073\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061406012161722924361216\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000083\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219631722923721963\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219961722923721996\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000067\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220761722923722076\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000168\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355219631722923721963 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:06:35', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061406370771722924397077', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"07-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401370081722924097008\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000037\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401436021722924103602\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000002\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401497731722924109773\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000006\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401552741722924115274\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000143\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402007281722924120728\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000087\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402141121722924134112\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000011\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402180821722924138082\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000082\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402215991722924141599\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000021\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402250611722924145061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000084\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402288361722924148836\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000004\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402325221722924152522\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000009\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402360051722924156005\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000090\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402398351722924159835\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000005\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402434961722924163496\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000012\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402471981722924167198\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000097\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402504921722924170492\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000013\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402540851722924174085\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000088\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402579381722924177938\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000014\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403018401722924181840\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000007\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403060611722924186061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000020\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403097211722924189721\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000017\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403135401722924193540\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000089\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-02-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403170891722924197089\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000094\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403204941722924200494\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000062\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403242431722924204243\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000099\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403279021722924207902\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000060\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403355401722924215540\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000064\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403389511722924218951\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000050\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403429331722924222933\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000058\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403470711722924227071\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000063\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403514001722924231400\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000057\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403555821722924235582\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000100\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404126201722924252620\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000052\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404176491722924257649\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000049\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404258211722924265821\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000055\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404297581722924269758\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000066\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404384781722924278478\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000008\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-02-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404455721722924285572\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000029\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405012061722924301206\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000074\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405053521722924305352\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000010\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405179751722924317975\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000039\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405313371722924331337\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000040\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405344621722924334462\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000085\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405410081722924341008\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000031\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405551481722924355148\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000073\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061406012161722924361216\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000083\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219631722923721963\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219961722923721996\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000067\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220761722923722076\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000168\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355219631722923721963 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:06:37', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061406390881722924399088', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"07-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401370081722924097008\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000037\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401436021722924103602\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000002\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401497731722924109773\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000006\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401552741722924115274\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000143\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402007281722924120728\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000087\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402141121722924134112\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000011\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402180821722924138082\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000082\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402215991722924141599\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000021\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402250611722924145061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000084\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402288361722924148836\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000004\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402325221722924152522\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000009\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402360051722924156005\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000090\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402398351722924159835\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000005\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402434961722924163496\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000012\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402471981722924167198\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000097\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402504921722924170492\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000013\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402540851722924174085\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000088\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402579381722924177938\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000014\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403018401722924181840\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000007\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403060611722924186061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000020\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403097211722924189721\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000017\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403135401722924193540\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000089\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-02-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403170891722924197089\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000094\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403204941722924200494\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000062\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403242431722924204243\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000099\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403279021722924207902\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000060\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403355401722924215540\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000064\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403389511722924218951\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000050\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403429331722924222933\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000058\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403470711722924227071\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000063\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403514001722924231400\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000057\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403555821722924235582\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000100\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404126201722924252620\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000052\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404176491722924257649\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000049\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404258211722924265821\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000055\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404297581722924269758\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000066\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404384781722924278478\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000008\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-02-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404455721722924285572\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000029\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405012061722924301206\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000074\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405053521722924305352\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000010\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405179751722924317975\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000039\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405313371722924331337\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000040\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405344621722924334462\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000085\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405410081722924341008\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000031\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405551481722924355148\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000073\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061406012161722924361216\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000083\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219631722923721963\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219961722923721996\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000067\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220761722923722076\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000168\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355219631722923721963 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:06:39', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061406410841722924401084', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"07-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401370081722924097008\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000037\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401436021722924103602\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000002\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401497731722924109773\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000006\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401552741722924115274\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000143\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402007281722924120728\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000087\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402141121722924134112\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000011\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402180821722924138082\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000082\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402215991722924141599\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000021\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402250611722924145061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000084\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402288361722924148836\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000004\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402325221722924152522\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000009\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402360051722924156005\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000090\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402398351722924159835\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000005\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402434961722924163496\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000012\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402471981722924167198\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000097\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402504921722924170492\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000013\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402540851722924174085\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000088\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402579381722924177938\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000014\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403018401722924181840\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000007\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403060611722924186061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000020\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403097211722924189721\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000017\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403135401722924193540\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000089\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-02-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403170891722924197089\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000094\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403204941722924200494\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000062\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403242431722924204243\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000099\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403279021722924207902\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000060\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403355401722924215540\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000064\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403389511722924218951\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000050\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403429331722924222933\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000058\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403470711722924227071\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000063\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403514001722924231400\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000057\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403555821722924235582\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000100\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404126201722924252620\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000052\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404176491722924257649\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000049\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404258211722924265821\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000055\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404297581722924269758\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000066\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404384781722924278478\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000008\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-02-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404455721722924285572\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000029\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405012061722924301206\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000074\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405053521722924305352\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000010\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405179751722924317975\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000039\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405313371722924331337\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000040\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405344621722924334462\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000085\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405410081722924341008\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000031\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405551481722924355148\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000073\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061406012161722924361216\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000083\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219631722923721963\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219961722923721996\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000067\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220761722923722076\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000168\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355219631722923721963 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:06:41', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061406431091722924403109', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"07-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401370081722924097008\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000037\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401436021722924103602\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000002\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401497731722924109773\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000006\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401552741722924115274\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000143\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402007281722924120728\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000087\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402141121722924134112\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000011\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402180821722924138082\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000082\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402215991722924141599\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000021\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402250611722924145061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000084\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402288361722924148836\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000004\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402325221722924152522\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000009\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402360051722924156005\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000090\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402398351722924159835\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000005\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402434961722924163496\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000012\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402471981722924167198\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000097\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402504921722924170492\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000013\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402540851722924174085\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000088\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402579381722924177938\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000014\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403018401722924181840\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000007\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403060611722924186061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000020\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403097211722924189721\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000017\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403135401722924193540\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000089\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-02-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403170891722924197089\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000094\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403204941722924200494\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000062\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403242431722924204243\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000099\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403279021722924207902\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000060\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403355401722924215540\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000064\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403389511722924218951\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000050\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403429331722924222933\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000058\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403470711722924227071\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000063\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403514001722924231400\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000057\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403555821722924235582\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000100\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404126201722924252620\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000052\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404176491722924257649\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000049\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404258211722924265821\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000055\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404297581722924269758\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000066\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404384781722924278478\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000008\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-02-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404455721722924285572\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000029\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405012061722924301206\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000074\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405053521722924305352\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000010\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405179751722924317975\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000039\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405313371722924331337\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000040\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405344621722924334462\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000085\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405410081722924341008\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000031\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405551481722924355148\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000073\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061406012161722924361216\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000083\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219631722923721963\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219961722923721996\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000067\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220761722923722076\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000168\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355219631722923721963 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:06:43', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061406451401722924405140', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"07-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401370081722924097008\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000037\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401436021722924103602\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000002\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401497731722924109773\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000006\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401552741722924115274\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000143\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402007281722924120728\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000087\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402141121722924134112\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000011\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402180821722924138082\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000082\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402215991722924141599\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000021\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402250611722924145061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000084\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402288361722924148836\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000004\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402325221722924152522\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000009\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402360051722924156005\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000090\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402398351722924159835\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000005\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402434961722924163496\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000012\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402471981722924167198\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000097\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402504921722924170492\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000013\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402540851722924174085\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000088\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402579381722924177938\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000014\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403018401722924181840\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000007\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403060611722924186061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000020\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403097211722924189721\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000017\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403135401722924193540\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000089\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-02-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403170891722924197089\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000094\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403204941722924200494\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000062\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403242431722924204243\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000099\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403279021722924207902\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000060\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403355401722924215540\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000064\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403389511722924218951\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000050\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403429331722924222933\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000058\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403470711722924227071\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000063\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403514001722924231400\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000057\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403555821722924235582\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000100\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404126201722924252620\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000052\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404176491722924257649\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000049\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404258211722924265821\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000055\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404297581722924269758\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000066\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404384781722924278478\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000008\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-02-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404455721722924285572\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000029\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405012061722924301206\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000074\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405053521722924305352\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000010\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405179751722924317975\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000039\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405313371722924331337\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000040\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405344621722924334462\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000085\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405410081722924341008\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000031\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405551481722924355148\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000073\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061406012161722924361216\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000083\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219631722923721963\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219961722923721996\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000067\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220761722923722076\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000168\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355219631722923721963 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:06:45', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061406471411722924407141', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"07-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401370081722924097008\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000037\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401436021722924103602\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000002\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401497731722924109773\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000006\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401552741722924115274\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000143\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402007281722924120728\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000087\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402141121722924134112\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000011\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402180821722924138082\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000082\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402215991722924141599\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000021\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402250611722924145061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000084\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402288361722924148836\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000004\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402325221722924152522\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000009\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402360051722924156005\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000090\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402398351722924159835\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000005\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402434961722924163496\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000012\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402471981722924167198\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000097\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402504921722924170492\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000013\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402540851722924174085\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000088\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402579381722924177938\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000014\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403018401722924181840\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000007\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403060611722924186061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000020\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403097211722924189721\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000017\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403135401722924193540\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000089\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-02-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403170891722924197089\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000094\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403204941722924200494\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000062\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403242431722924204243\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000099\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403279021722924207902\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000060\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403355401722924215540\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000064\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403389511722924218951\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000050\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403429331722924222933\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000058\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403470711722924227071\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000063\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403514001722924231400\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000057\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403555821722924235582\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000100\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404126201722924252620\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000052\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404176491722924257649\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000049\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404258211722924265821\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000055\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404297581722924269758\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000066\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404384781722924278478\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000008\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-02-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404455721722924285572\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000029\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405012061722924301206\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000074\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405053521722924305352\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000010\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405179751722924317975\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000039\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405313371722924331337\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000040\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405344621722924334462\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000085\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405410081722924341008\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000031\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405551481722924355148\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000073\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061406012161722924361216\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000083\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219631722923721963\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219961722923721996\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000067\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220761722923722076\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000168\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355219631722923721963 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:06:47', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061406487941722924408794', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061355217401722923721740\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000086\", \"taskStatus\": 100, \"destination\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:06:49', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061406491531722924409153', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"07-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401370081722924097008\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000037\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401436021722924103602\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000002\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401497731722924109773\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000006\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401552741722924115274\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000143\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402007281722924120728\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000087\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402141121722924134112\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000011\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402180821722924138082\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000082\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402215991722924141599\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000021\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402250611722924145061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000084\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402288361722924148836\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000004\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402325221722924152522\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000009\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402360051722924156005\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000090\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402398351722924159835\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000005\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402434961722924163496\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000012\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402471981722924167198\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000097\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402504921722924170492\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000013\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402540851722924174085\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000088\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402579381722924177938\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000014\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403018401722924181840\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000007\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403060611722924186061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000020\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403097211722924189721\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000017\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403135401722924193540\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000089\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-02-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403170891722924197089\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000094\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403204941722924200494\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000062\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403242431722924204243\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000099\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403279021722924207902\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000060\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403355401722924215540\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000064\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403389511722924218951\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000050\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403429331722924222933\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000058\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403470711722924227071\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000063\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403514001722924231400\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000057\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403555821722924235582\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000100\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404126201722924252620\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000052\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404176491722924257649\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000049\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404258211722924265821\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000055\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404297581722924269758\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000066\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404384781722924278478\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000008\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-02-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404455721722924285572\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000029\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405012061722924301206\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000074\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405053521722924305352\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000010\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405179751722924317975\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000039\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405313371722924331337\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000040\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405344621722924334462\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000085\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405410081722924341008\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000031\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405551481722924355148\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000073\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061406012161722924361216\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000083\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219631722923721963\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219961722923721996\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000067\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220761722923722076\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000168\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355219631722923721963 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:06:49', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061406497901722924409790', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061355219461722923721946\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000068\", \"taskStatus\": 100, \"destination\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:06:50', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061406511771722924411177', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"07-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401370081722924097008\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000037\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401436021722924103602\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000002\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401497731722924109773\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000006\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401552741722924115274\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000143\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402007281722924120728\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000087\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402141121722924134112\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000011\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402180821722924138082\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000082\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402215991722924141599\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000021\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402250611722924145061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000084\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402288361722924148836\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000004\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402325221722924152522\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000009\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402360051722924156005\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000090\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402398351722924159835\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000005\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402434961722924163496\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000012\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402471981722924167198\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000097\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402504921722924170492\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000013\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402540851722924174085\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000088\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402579381722924177938\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000014\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403018401722924181840\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000007\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403060611722924186061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000020\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403097211722924189721\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000017\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403135401722924193540\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000089\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-02-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403170891722924197089\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000094\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403204941722924200494\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000062\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403242431722924204243\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000099\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403279021722924207902\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000060\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403355401722924215540\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000064\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403389511722924218951\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000050\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403429331722924222933\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000058\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403470711722924227071\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000063\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403514001722924231400\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000057\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403555821722924235582\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000100\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404126201722924252620\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000052\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404176491722924257649\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000049\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404258211722924265821\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000055\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404297581722924269758\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000066\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404384781722924278478\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000008\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-02-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404455721722924285572\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000029\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405012061722924301206\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000074\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405053521722924305352\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000010\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405179751722924317975\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000039\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405313371722924331337\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000040\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405344621722924334462\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000085\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405410081722924341008\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000031\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405551481722924355148\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000073\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061406012161722924361216\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000083\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219631722923721963\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219961722923721996\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000067\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220761722923722076\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000168\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355219631722923721963 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:06:51', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061406531491722924413149', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"07-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401370081722924097008\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000037\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401436021722924103602\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000002\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401497731722924109773\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000006\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401552741722924115274\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000143\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402007281722924120728\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000087\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402141121722924134112\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000011\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402180821722924138082\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000082\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402215991722924141599\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000021\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402250611722924145061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000084\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402288361722924148836\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000004\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402325221722924152522\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000009\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402360051722924156005\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000090\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402398351722924159835\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000005\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402434961722924163496\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000012\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402471981722924167198\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000097\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402504921722924170492\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000013\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402540851722924174085\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000088\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402579381722924177938\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000014\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403018401722924181840\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000007\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403060611722924186061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000020\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403097211722924189721\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000017\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403135401722924193540\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000089\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-02-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403170891722924197089\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000094\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403204941722924200494\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000062\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403242431722924204243\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000099\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403279021722924207902\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000060\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403355401722924215540\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000064\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403389511722924218951\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000050\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403429331722924222933\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000058\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403470711722924227071\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000063\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403514001722924231400\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000057\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403555821722924235582\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000100\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404126201722924252620\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000052\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404176491722924257649\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000049\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404258211722924265821\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000055\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404297581722924269758\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000066\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404384781722924278478\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000008\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-02-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404455721722924285572\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000029\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405012061722924301206\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000074\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405053521722924305352\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000010\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405179751722924317975\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000039\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405313371722924331337\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000040\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405344621722924334462\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000085\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405410081722924341008\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000031\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405551481722924355148\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000073\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061406012161722924361216\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000083\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219631722923721963\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219961722923721996\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000067\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220761722923722076\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000168\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355219631722923721963 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:06:53', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061406534301722924413430', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061355219631722923721963\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000047\", \"taskStatus\": 2, \"destination\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:06:53', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061406534701722924413470', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061355219961722923721996\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000067\", \"taskStatus\": 2, \"destination\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:06:53', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061406552031722924415203', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"07-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401370081722924097008\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000037\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401436021722924103602\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000002\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401497731722924109773\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000006\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401552741722924115274\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000143\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402007281722924120728\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000087\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402141121722924134112\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000011\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402180821722924138082\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000082\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402215991722924141599\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000021\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402250611722924145061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000084\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402288361722924148836\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000004\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402325221722924152522\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000009\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402360051722924156005\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000090\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402398351722924159835\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000005\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402434961722924163496\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000012\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402471981722924167198\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000097\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402504921722924170492\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000013\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402540851722924174085\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000088\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402579381722924177938\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000014\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403018401722924181840\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000007\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403060611722924186061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000020\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403097211722924189721\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000017\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403135401722924193540\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000089\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-02-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403170891722924197089\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000094\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403204941722924200494\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000062\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403242431722924204243\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000099\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403279021722924207902\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000060\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403355401722924215540\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000064\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403389511722924218951\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000050\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403429331722924222933\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000058\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403470711722924227071\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000063\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403514001722924231400\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000057\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403555821722924235582\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000100\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404126201722924252620\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000052\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404176491722924257649\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000049\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404258211722924265821\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000055\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404297581722924269758\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000066\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404384781722924278478\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000008\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-02-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404455721722924285572\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000029\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405012061722924301206\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000074\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405053521722924305352\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000010\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405179751722924317975\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000039\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405313371722924331337\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000040\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405344621722924334462\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000085\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405410081722924341008\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000031\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405551481722924355148\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000073\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061406012161722924361216\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000083\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220761722923722076\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000168\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355219901722923721990 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:06:55', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061406572001722924417200', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"07-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401370081722924097008\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000037\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401436021722924103602\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000002\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401497731722924109773\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000006\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401552741722924115274\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000143\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402007281722924120728\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000087\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402141121722924134112\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000011\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402180821722924138082\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000082\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402215991722924141599\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000021\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402250611722924145061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000084\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402288361722924148836\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000004\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402325221722924152522\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000009\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402360051722924156005\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000090\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402398351722924159835\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000005\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402434961722924163496\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000012\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402471981722924167198\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000097\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402504921722924170492\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000013\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402540851722924174085\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000088\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402579381722924177938\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000014\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403018401722924181840\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000007\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403060611722924186061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000020\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403097211722924189721\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000017\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403135401722924193540\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000089\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-02-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403170891722924197089\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000094\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403204941722924200494\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000062\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403242431722924204243\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000099\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403279021722924207902\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000060\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403355401722924215540\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000064\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403389511722924218951\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000050\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403429331722924222933\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000058\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403470711722924227071\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000063\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403514001722924231400\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000057\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403555821722924235582\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000100\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404126201722924252620\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000052\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404176491722924257649\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000049\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404258211722924265821\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000055\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404297581722924269758\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000066\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404384781722924278478\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000008\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-02-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404455721722924285572\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000029\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405012061722924301206\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000074\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405053521722924305352\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000010\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405179751722924317975\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000039\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405313371722924331337\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000040\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405344621722924334462\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000085\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405410081722924341008\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000031\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405551481722924355148\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000073\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061406012161722924361216\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000083\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220761722923722076\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000168\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355219901722923721990 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:06:57', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061406591821722924419182', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"07-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401370081722924097008\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000037\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401436021722924103602\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000002\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401497731722924109773\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000006\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401552741722924115274\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000143\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402007281722924120728\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000087\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402141121722924134112\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000011\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402180821722924138082\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000082\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402215991722924141599\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000021\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402250611722924145061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000084\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402288361722924148836\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000004\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402325221722924152522\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000009\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402360051722924156005\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000090\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402398351722924159835\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000005\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402434961722924163496\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000012\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402471981722924167198\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000097\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402504921722924170492\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000013\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402540851722924174085\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000088\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402579381722924177938\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000014\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403018401722924181840\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000007\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403060611722924186061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000020\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403097211722924189721\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000017\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403135401722924193540\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000089\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-02-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403170891722924197089\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000094\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403204941722924200494\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000062\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403242431722924204243\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000099\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403279021722924207902\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000060\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403355401722924215540\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000064\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403389511722924218951\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000050\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403429331722924222933\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000058\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403470711722924227071\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000063\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403514001722924231400\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000057\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403555821722924235582\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000100\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404126201722924252620\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000052\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404176491722924257649\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000049\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404258211722924265821\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000055\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404297581722924269758\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000066\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404384781722924278478\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000008\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-02-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404455721722924285572\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000029\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405012061722924301206\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000074\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405053521722924305352\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000010\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405179751722924317975\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000039\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405313371722924331337\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000040\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405344621722924334462\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000085\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405410081722924341008\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000031\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405551481722924355148\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000073\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061406012161722924361216\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000083\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220761722923722076\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000168\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355219901722923721990 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:06:59', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061407012361722924421236', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"07-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401370081722924097008\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000037\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401436021722924103602\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000002\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401497731722924109773\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000006\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401552741722924115274\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000143\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402007281722924120728\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000087\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402141121722924134112\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000011\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402180821722924138082\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000082\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402215991722924141599\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000021\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402250611722924145061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000084\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402288361722924148836\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000004\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402325221722924152522\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000009\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402360051722924156005\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000090\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402398351722924159835\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000005\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402434961722924163496\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000012\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402471981722924167198\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000097\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402504921722924170492\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000013\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402540851722924174085\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000088\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402579381722924177938\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000014\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403018401722924181840\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000007\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403060611722924186061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000020\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403097211722924189721\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000017\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403135401722924193540\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000089\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-02-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403170891722924197089\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000094\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403204941722924200494\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000062\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403242431722924204243\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000099\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403279021722924207902\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000060\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403355401722924215540\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000064\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403389511722924218951\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000050\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403429331722924222933\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000058\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403470711722924227071\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000063\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403514001722924231400\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000057\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403555821722924235582\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000100\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404126201722924252620\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000052\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404176491722924257649\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000049\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404258211722924265821\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000055\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404297581722924269758\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000066\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404384781722924278478\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000008\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-02-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404455721722924285572\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000029\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405012061722924301206\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000074\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405053521722924305352\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000010\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405179751722924317975\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000039\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405313371722924331337\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000040\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405344621722924334462\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000085\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405410081722924341008\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000031\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405551481722924355148\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000073\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061406012161722924361216\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000083\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220761722923722076\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000168\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355219901722923721990 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:07:01', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061407032251722924423225', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"07-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401370081722924097008\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000037\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401436021722924103602\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000002\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401497731722924109773\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000006\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401552741722924115274\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000143\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402007281722924120728\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000087\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402141121722924134112\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000011\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402180821722924138082\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000082\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402215991722924141599\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000021\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402250611722924145061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000084\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402288361722924148836\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000004\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402325221722924152522\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000009\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402360051722924156005\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000090\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402398351722924159835\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000005\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402434961722924163496\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000012\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402471981722924167198\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000097\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402504921722924170492\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000013\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402540851722924174085\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000088\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402579381722924177938\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000014\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403018401722924181840\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000007\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403060611722924186061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000020\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403097211722924189721\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000017\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403135401722924193540\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000089\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-02-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403170891722924197089\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000094\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403204941722924200494\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000062\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403242431722924204243\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000099\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403279021722924207902\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000060\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403355401722924215540\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000064\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403389511722924218951\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000050\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403429331722924222933\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000058\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403470711722924227071\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000063\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403514001722924231400\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000057\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403555821722924235582\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000100\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404126201722924252620\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000052\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404176491722924257649\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000049\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404258211722924265821\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000055\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404297581722924269758\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000066\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404384781722924278478\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000008\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-02-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404455721722924285572\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000029\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405012061722924301206\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000074\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405053521722924305352\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000010\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405179751722924317975\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000039\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405313371722924331337\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000040\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405344621722924334462\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000085\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405410081722924341008\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000031\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405551481722924355148\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000073\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061406012161722924361216\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000083\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220761722923722076\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000168\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355219901722923721990 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:07:03', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061407052531722924425253', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"07-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401370081722924097008\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000037\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401436021722924103602\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000002\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401497731722924109773\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000006\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401552741722924115274\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000143\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402007281722924120728\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000087\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402141121722924134112\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000011\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402180821722924138082\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000082\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402215991722924141599\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000021\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402250611722924145061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000084\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402288361722924148836\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000004\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402325221722924152522\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000009\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402360051722924156005\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000090\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402398351722924159835\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000005\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402434961722924163496\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000012\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402471981722924167198\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000097\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402504921722924170492\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000013\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402540851722924174085\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000088\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402579381722924177938\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000014\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403018401722924181840\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000007\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403060611722924186061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000020\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403097211722924189721\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000017\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403135401722924193540\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000089\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-02-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403170891722924197089\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000094\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403204941722924200494\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000062\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403242431722924204243\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000099\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403279021722924207902\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000060\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403355401722924215540\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000064\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403389511722924218951\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000050\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403429331722924222933\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000058\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403470711722924227071\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000063\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403514001722924231400\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000057\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403555821722924235582\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000100\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404126201722924252620\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000052\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404176491722924257649\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000049\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404258211722924265821\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000055\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404297581722924269758\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000066\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404384781722924278478\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000008\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-02-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404455721722924285572\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000029\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405012061722924301206\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000074\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405053521722924305352\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000010\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405179751722924317975\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000039\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405313371722924331337\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000040\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405344621722924334462\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000085\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405410081722924341008\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000031\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405551481722924355148\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000073\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061406012161722924361216\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000083\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220761722923722076\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000168\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355219901722923721990 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:07:05', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061407067881722924426788', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061355219821722923721982\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000026\", \"taskStatus\": 100, \"destination\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:07:07', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061407073221722924427322', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"07-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401370081722924097008\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000037\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401436021722924103602\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000002\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401497731722924109773\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000006\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401552741722924115274\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000143\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402007281722924120728\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000087\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402141121722924134112\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000011\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402180821722924138082\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000082\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402215991722924141599\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000021\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402250611722924145061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000084\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402288361722924148836\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000004\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402325221722924152522\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000009\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402360051722924156005\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000090\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402398351722924159835\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000005\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402434961722924163496\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000012\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402471981722924167198\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000097\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402504921722924170492\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000013\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402540851722924174085\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000088\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402579381722924177938\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000014\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403018401722924181840\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000007\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403060611722924186061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000020\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403097211722924189721\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000017\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403135401722924193540\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000089\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-02-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403170891722924197089\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000094\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403204941722924200494\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000062\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403242431722924204243\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000099\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403279021722924207902\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000060\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403355401722924215540\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000064\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403389511722924218951\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000050\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403429331722924222933\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000058\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403470711722924227071\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000063\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403514001722924231400\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000057\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403555821722924235582\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000100\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404126201722924252620\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000052\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404176491722924257649\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000049\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404258211722924265821\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000055\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404297581722924269758\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000066\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404384781722924278478\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000008\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-02-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404455721722924285572\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000029\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405012061722924301206\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000074\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405053521722924305352\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000010\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405179751722924317975\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000039\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405313371722924331337\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000040\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405344621722924334462\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000085\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405410081722924341008\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000031\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405551481722924355148\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000073\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061406012161722924361216\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000083\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220761722923722076\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000168\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355219901722923721990 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:07:07', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061407092411722924429241', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"07-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401370081722924097008\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000037\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401436021722924103602\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000002\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401497731722924109773\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000006\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401552741722924115274\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000143\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402007281722924120728\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000087\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402141121722924134112\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000011\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402180821722924138082\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000082\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402215991722924141599\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000021\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402250611722924145061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000084\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402288361722924148836\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000004\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402325221722924152522\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000009\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402360051722924156005\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000090\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402398351722924159835\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000005\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402434961722924163496\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000012\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402471981722924167198\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000097\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402504921722924170492\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000013\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402540851722924174085\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000088\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402579381722924177938\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000014\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403018401722924181840\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000007\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403060611722924186061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000020\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403097211722924189721\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000017\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403135401722924193540\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000089\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-02-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403170891722924197089\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000094\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403204941722924200494\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000062\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403242431722924204243\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000099\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403279021722924207902\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000060\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403355401722924215540\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000064\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403389511722924218951\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000050\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403429331722924222933\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000058\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403470711722924227071\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000063\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403514001722924231400\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000057\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403555821722924235582\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000100\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404126201722924252620\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000052\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404176491722924257649\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000049\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404258211722924265821\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000055\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404297581722924269758\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000066\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404384781722924278478\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000008\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-02-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404455721722924285572\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000029\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405012061722924301206\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000074\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405053521722924305352\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000010\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405179751722924317975\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000039\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405313371722924331337\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000040\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405344621722924334462\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000085\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405410081722924341008\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000031\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405551481722924355148\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000073\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061406012161722924361216\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000083\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220761722923722076\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000168\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355219901722923721990 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:07:09', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061407113131722924431313', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"07-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401370081722924097008\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000037\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401436021722924103602\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000002\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401497731722924109773\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000006\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401552741722924115274\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000143\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402007281722924120728\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000087\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402141121722924134112\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000011\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402180821722924138082\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000082\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402215991722924141599\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000021\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402250611722924145061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000084\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402288361722924148836\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000004\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402325221722924152522\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000009\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402360051722924156005\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000090\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402398351722924159835\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000005\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402434961722924163496\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000012\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402471981722924167198\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000097\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402504921722924170492\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000013\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402540851722924174085\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000088\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402579381722924177938\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000014\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403018401722924181840\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000007\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403060611722924186061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000020\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403097211722924189721\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000017\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403135401722924193540\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000089\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-02-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403170891722924197089\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000094\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403204941722924200494\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000062\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403242431722924204243\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000099\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403279021722924207902\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000060\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403355401722924215540\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000064\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403389511722924218951\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000050\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403429331722924222933\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000058\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403470711722924227071\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000063\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403514001722924231400\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000057\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403555821722924235582\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000100\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404126201722924252620\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000052\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404176491722924257649\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000049\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404258211722924265821\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000055\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404297581722924269758\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000066\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404384781722924278478\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000008\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-02-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404455721722924285572\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000029\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405012061722924301206\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000074\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405053521722924305352\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000010\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405179751722924317975\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000039\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405313371722924331337\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000040\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405344621722924334462\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000085\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405410081722924341008\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000031\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405551481722924355148\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000073\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061406012161722924361216\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000083\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220761722923722076\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000168\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355219901722923721990 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:07:11', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061407132841722924433284', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"07-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401370081722924097008\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000037\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401436021722924103602\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000002\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401497731722924109773\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000006\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401552741722924115274\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000143\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402007281722924120728\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000087\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402141121722924134112\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000011\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402180821722924138082\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000082\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402215991722924141599\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000021\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402250611722924145061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000084\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402288361722924148836\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000004\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402325221722924152522\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000009\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402360051722924156005\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000090\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402398351722924159835\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000005\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402434961722924163496\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000012\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402471981722924167198\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000097\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402504921722924170492\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000013\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402540851722924174085\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000088\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402579381722924177938\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000014\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403018401722924181840\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000007\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403060611722924186061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000020\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403097211722924189721\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000017\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403135401722924193540\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000089\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-02-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403170891722924197089\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000094\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403204941722924200494\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000062\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403242431722924204243\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000099\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403279021722924207902\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000060\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403355401722924215540\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000064\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403389511722924218951\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000050\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403429331722924222933\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000058\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403470711722924227071\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000063\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403514001722924231400\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000057\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403555821722924235582\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000100\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404126201722924252620\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000052\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404176491722924257649\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000049\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404258211722924265821\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000055\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404297581722924269758\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000066\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404384781722924278478\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000008\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-02-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404455721722924285572\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000029\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405012061722924301206\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000074\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405053521722924305352\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000010\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405179751722924317975\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000039\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405313371722924331337\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000040\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405344621722924334462\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000085\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405410081722924341008\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000031\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405551481722924355148\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000073\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061406012161722924361216\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000083\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220761722923722076\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000168\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355219901722923721990 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:07:13', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061407152801722924435280', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"07-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401370081722924097008\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000037\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401436021722924103602\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000002\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401497731722924109773\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000006\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401552741722924115274\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000143\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402007281722924120728\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000087\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402141121722924134112\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000011\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402180821722924138082\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000082\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402215991722924141599\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000021\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402250611722924145061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000084\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402288361722924148836\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000004\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402325221722924152522\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000009\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402360051722924156005\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000090\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402398351722924159835\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000005\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402434961722924163496\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000012\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402471981722924167198\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000097\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402504921722924170492\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000013\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402540851722924174085\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000088\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402579381722924177938\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000014\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403018401722924181840\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000007\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403060611722924186061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000020\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403097211722924189721\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000017\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403135401722924193540\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000089\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-02-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403170891722924197089\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000094\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403204941722924200494\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000062\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403242431722924204243\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000099\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403279021722924207902\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000060\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403355401722924215540\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000064\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403389511722924218951\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000050\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403429331722924222933\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000058\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403470711722924227071\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000063\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403514001722924231400\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000057\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403555821722924235582\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000100\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404126201722924252620\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000052\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404176491722924257649\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000049\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404258211722924265821\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000055\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404297581722924269758\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000066\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404384781722924278478\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000008\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-02-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404455721722924285572\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000029\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405012061722924301206\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000074\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405053521722924305352\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000010\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405179751722924317975\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000039\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405313371722924331337\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000040\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405344621722924334462\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000085\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405410081722924341008\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000031\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405551481722924355148\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000073\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061406012161722924361216\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000083\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220761722923722076\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000168\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355219901722923721990 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:07:15', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061407172931722924437293', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"07-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401370081722924097008\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000037\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401436021722924103602\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000002\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401497731722924109773\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000006\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401552741722924115274\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000143\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402007281722924120728\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000087\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402141121722924134112\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000011\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402180821722924138082\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000082\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402215991722924141599\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000021\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402250611722924145061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000084\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402288361722924148836\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000004\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402325221722924152522\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000009\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402360051722924156005\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000090\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402398351722924159835\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000005\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402434961722924163496\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000012\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402471981722924167198\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000097\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402504921722924170492\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000013\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402540851722924174085\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000088\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402579381722924177938\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000014\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403018401722924181840\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000007\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403060611722924186061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000020\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403097211722924189721\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000017\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403135401722924193540\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000089\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-02-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403170891722924197089\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000094\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403204941722924200494\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000062\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403242431722924204243\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000099\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403279021722924207902\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000060\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403355401722924215540\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000064\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403389511722924218951\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000050\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403429331722924222933\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000058\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403470711722924227071\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000063\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403514001722924231400\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000057\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403555821722924235582\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000100\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404126201722924252620\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000052\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404176491722924257649\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000049\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404258211722924265821\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000055\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404297581722924269758\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000066\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404384781722924278478\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000008\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-02-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404455721722924285572\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000029\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405012061722924301206\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000074\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405053521722924305352\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000010\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405179751722924317975\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000039\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405313371722924331337\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000040\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405344621722924334462\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000085\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405410081722924341008\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000031\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405551481722924355148\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000073\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061406012161722924361216\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000083\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220761722923722076\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000168\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355219901722923721990 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:07:17', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061407193131722924439313', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"07-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401370081722924097008\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000037\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401436021722924103602\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000002\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401497731722924109773\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000006\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401552741722924115274\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000143\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402007281722924120728\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000087\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402141121722924134112\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000011\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402180821722924138082\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000082\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402215991722924141599\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000021\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402250611722924145061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000084\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402288361722924148836\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000004\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402325221722924152522\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000009\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402360051722924156005\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000090\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402398351722924159835\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000005\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402434961722924163496\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000012\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402471981722924167198\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000097\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402504921722924170492\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000013\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402540851722924174085\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000088\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402579381722924177938\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000014\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403018401722924181840\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000007\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403060611722924186061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000020\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403097211722924189721\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000017\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403135401722924193540\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000089\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-02-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403170891722924197089\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000094\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403204941722924200494\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000062\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403242431722924204243\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000099\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403279021722924207902\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000060\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403355401722924215540\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000064\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403389511722924218951\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000050\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403429331722924222933\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000058\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403470711722924227071\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000063\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403514001722924231400\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000057\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403555821722924235582\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000100\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404126201722924252620\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000052\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404176491722924257649\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000049\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404258211722924265821\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000055\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404297581722924269758\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000066\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404384781722924278478\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000008\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-02-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404455721722924285572\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000029\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405012061722924301206\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000074\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405053521722924305352\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000010\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405179751722924317975\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000039\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405313371722924331337\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000040\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405344621722924334462\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000085\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405410081722924341008\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000031\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405551481722924355148\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000073\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061406012161722924361216\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000083\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220761722923722076\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000168\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355219901722923721990 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:07:19', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061407213131722924441313', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"07-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401370081722924097008\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000037\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401436021722924103602\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000002\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401497731722924109773\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000006\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401552741722924115274\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000143\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402007281722924120728\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000087\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402141121722924134112\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000011\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402180821722924138082\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000082\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402215991722924141599\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000021\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402250611722924145061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000084\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402288361722924148836\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000004\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402325221722924152522\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000009\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402360051722924156005\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000090\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402398351722924159835\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000005\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402434961722924163496\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000012\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402471981722924167198\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000097\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402504921722924170492\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000013\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402540851722924174085\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000088\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402579381722924177938\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000014\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403018401722924181840\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000007\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403060611722924186061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000020\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403097211722924189721\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000017\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403135401722924193540\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000089\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-02-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403170891722924197089\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000094\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403204941722924200494\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000062\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403242431722924204243\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000099\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403279021722924207902\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000060\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403355401722924215540\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000064\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403389511722924218951\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000050\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403429331722924222933\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000058\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403470711722924227071\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000063\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403514001722924231400\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000057\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403555821722924235582\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000100\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404126201722924252620\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000052\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404176491722924257649\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000049\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404258211722924265821\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000055\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404297581722924269758\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000066\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404384781722924278478\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000008\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-02-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404455721722924285572\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000029\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405012061722924301206\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000074\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405053521722924305352\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000010\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405179751722924317975\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000039\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405313371722924331337\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000040\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405344621722924334462\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000085\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405410081722924341008\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000031\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405551481722924355148\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000073\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061406012161722924361216\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000083\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220761722923722076\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000168\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355219901722923721990 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:07:21', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061407233011722924443301', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"07-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401370081722924097008\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000037\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401436021722924103602\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000002\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401497731722924109773\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000006\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401552741722924115274\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000143\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402007281722924120728\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000087\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402141121722924134112\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000011\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402180821722924138082\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000082\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402215991722924141599\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000021\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402250611722924145061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000084\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402288361722924148836\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000004\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402325221722924152522\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000009\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402360051722924156005\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000090\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402398351722924159835\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000005\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402434961722924163496\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000012\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402471981722924167198\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000097\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402504921722924170492\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000013\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402540851722924174085\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000088\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402579381722924177938\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000014\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403018401722924181840\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000007\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403060611722924186061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000020\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403097211722924189721\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000017\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403135401722924193540\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000089\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-02-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403170891722924197089\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000094\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403204941722924200494\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000062\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403242431722924204243\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000099\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403279021722924207902\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000060\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403355401722924215540\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000064\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403389511722924218951\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000050\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403429331722924222933\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000058\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403470711722924227071\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000063\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403514001722924231400\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000057\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403555821722924235582\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000100\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404126201722924252620\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000052\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404176491722924257649\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000049\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404258211722924265821\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000055\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404297581722924269758\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000066\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404384781722924278478\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000008\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-02-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404455721722924285572\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000029\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405012061722924301206\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000074\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405053521722924305352\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000010\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405179751722924317975\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000039\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405313371722924331337\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000040\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405344621722924334462\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000085\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405410081722924341008\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000031\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405551481722924355148\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000073\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061406012161722924361216\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000083\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220761722923722076\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000168\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355219901722923721990 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:07:23', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061407253081722924445308', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"07-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401370081722924097008\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000037\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401436021722924103602\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000002\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401497731722924109773\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000006\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401552741722924115274\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000143\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402007281722924120728\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000087\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402141121722924134112\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000011\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402180821722924138082\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000082\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402215991722924141599\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000021\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402250611722924145061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000084\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402288361722924148836\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000004\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402325221722924152522\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000009\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402360051722924156005\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000090\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402398351722924159835\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000005\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402434961722924163496\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000012\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402471981722924167198\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000097\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402504921722924170492\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000013\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402540851722924174085\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000088\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402579381722924177938\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000014\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403018401722924181840\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000007\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403060611722924186061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000020\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403097211722924189721\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000017\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403135401722924193540\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000089\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-02-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403170891722924197089\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000094\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403204941722924200494\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000062\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403242431722924204243\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000099\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403279021722924207902\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000060\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403355401722924215540\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000064\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403389511722924218951\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000050\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403429331722924222933\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000058\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403470711722924227071\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000063\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403514001722924231400\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000057\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403555821722924235582\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000100\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404126201722924252620\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000052\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404176491722924257649\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000049\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404258211722924265821\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000055\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404297581722924269758\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000066\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404384781722924278478\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000008\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-02-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404455721722924285572\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000029\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405012061722924301206\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000074\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405053521722924305352\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000010\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405179751722924317975\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000039\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405313371722924331337\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000040\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405344621722924334462\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000085\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405410081722924341008\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000031\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405551481722924355148\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000073\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061406012161722924361216\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000083\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220761722923722076\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000168\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355219901722923721990 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:07:25', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061407259931722924445993', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000083\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '10.90.106.61', '2024-08-06 14:07:26', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061407273271722924447327', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"07-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401370081722924097008\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000037\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401436021722924103602\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000002\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401497731722924109773\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000006\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401552741722924115274\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000143\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402007281722924120728\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000087\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402141121722924134112\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000011\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402180821722924138082\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000082\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402215991722924141599\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000021\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402250611722924145061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000084\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402288361722924148836\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000004\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402325221722924152522\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000009\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402360051722924156005\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000090\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402398351722924159835\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000005\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402434961722924163496\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000012\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402471981722924167198\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000097\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402504921722924170492\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000013\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402540851722924174085\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000088\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402579381722924177938\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000014\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403018401722924181840\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000007\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403060611722924186061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000020\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403097211722924189721\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000017\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403135401722924193540\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000089\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-02-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403170891722924197089\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000094\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403204941722924200494\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000062\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403242431722924204243\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000099\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403279021722924207902\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000060\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403355401722924215540\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000064\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403389511722924218951\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000050\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403429331722924222933\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000058\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403470711722924227071\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000063\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403514001722924231400\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000057\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403555821722924235582\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000100\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404126201722924252620\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000052\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404176491722924257649\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000049\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404258211722924265821\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000055\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404297581722924269758\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000066\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404384781722924278478\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000008\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-02-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404455721722924285572\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000029\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405012061722924301206\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000074\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405053521722924305352\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000010\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405179751722924317975\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000039\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405313371722924331337\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000040\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405344621722924334462\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000085\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405410081722924341008\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000031\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405551481722924355148\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000073\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061406012161722924361216\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000083\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220761722923722076\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000168\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355219901722923721990 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:07:27', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061407293671722924449367', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"07-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401370081722924097008\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000037\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401436021722924103602\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000002\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401497731722924109773\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000006\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401552741722924115274\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000143\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402007281722924120728\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000087\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402141121722924134112\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000011\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402180821722924138082\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000082\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402215991722924141599\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000021\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402250611722924145061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000084\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402288361722924148836\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000004\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402325221722924152522\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000009\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402360051722924156005\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000090\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402398351722924159835\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000005\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402434961722924163496\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000012\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402471981722924167198\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000097\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402504921722924170492\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000013\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402540851722924174085\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000088\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402579381722924177938\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000014\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403018401722924181840\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000007\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403060611722924186061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000020\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403097211722924189721\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000017\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403135401722924193540\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000089\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-02-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403170891722924197089\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000094\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403204941722924200494\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000062\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403242431722924204243\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000099\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403279021722924207902\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000060\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403355401722924215540\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000064\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403389511722924218951\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000050\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403429331722924222933\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000058\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403470711722924227071\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000063\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403514001722924231400\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000057\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403555821722924235582\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000100\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404126201722924252620\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000052\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404176491722924257649\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000049\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404258211722924265821\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000055\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404297581722924269758\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000066\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404384781722924278478\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000008\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-02-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404455721722924285572\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000029\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405012061722924301206\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000074\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405053521722924305352\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000010\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405179751722924317975\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000039\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405313371722924331337\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000040\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405344621722924334462\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000085\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405410081722924341008\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000031\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405551481722924355148\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000073\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061406012161722924361216\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000083\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220761722923722076\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000168\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355219901722923721990 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:07:29', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061407314421722924451442', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"07-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401370081722924097008\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000037\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401436021722924103602\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000002\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401497731722924109773\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000006\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401552741722924115274\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000143\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402007281722924120728\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000087\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402141121722924134112\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000011\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402180821722924138082\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000082\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402215991722924141599\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000021\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402250611722924145061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000084\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402288361722924148836\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000004\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402325221722924152522\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000009\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402360051722924156005\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000090\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402398351722924159835\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000005\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402434961722924163496\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000012\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402471981722924167198\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000097\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402504921722924170492\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000013\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402540851722924174085\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000088\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402579381722924177938\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000014\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403018401722924181840\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000007\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403060611722924186061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000020\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403097211722924189721\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000017\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403135401722924193540\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000089\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-02-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403170891722924197089\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000094\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403204941722924200494\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000062\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403242431722924204243\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000099\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403279021722924207902\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000060\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403355401722924215540\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000064\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403389511722924218951\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000050\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403429331722924222933\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000058\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403470711722924227071\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000063\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403514001722924231400\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000057\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403555821722924235582\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000100\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404126201722924252620\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000052\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404176491722924257649\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000049\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404258211722924265821\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000055\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404297581722924269758\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000066\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404384781722924278478\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000008\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-02-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404455721722924285572\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000029\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405012061722924301206\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000074\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405053521722924305352\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000010\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405179751722924317975\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000039\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405313371722924331337\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000040\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405344621722924334462\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000085\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405410081722924341008\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000031\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405551481722924355148\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000073\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061406012161722924361216\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000083\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220761722923722076\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000168\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355219901722923721990 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:07:31', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061407322021722924452202', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000166\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '10.90.106.61', '2024-08-06 14:07:32', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061407333831722924453383', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"07-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401370081722924097008\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000037\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401436021722924103602\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000002\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401497731722924109773\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000006\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401552741722924115274\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000143\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402007281722924120728\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000087\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402141121722924134112\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000011\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402180821722924138082\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000082\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402215991722924141599\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000021\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402250611722924145061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000084\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402288361722924148836\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000004\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402325221722924152522\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000009\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402360051722924156005\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000090\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402398351722924159835\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000005\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402434961722924163496\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000012\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402471981722924167198\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000097\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402504921722924170492\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000013\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402540851722924174085\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000088\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402579381722924177938\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000014\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403018401722924181840\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000007\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403060611722924186061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000020\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403097211722924189721\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000017\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403135401722924193540\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000089\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-02-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403170891722924197089\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000094\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403204941722924200494\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000062\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403242431722924204243\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000099\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403279021722924207902\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000060\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403355401722924215540\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000064\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403389511722924218951\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000050\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403429331722924222933\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000058\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403470711722924227071\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000063\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403514001722924231400\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000057\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403555821722924235582\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000100\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404126201722924252620\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000052\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404176491722924257649\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000049\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404258211722924265821\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000055\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404297581722924269758\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000066\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404384781722924278478\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000008\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-02-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404455721722924285572\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000029\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405012061722924301206\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000074\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405053521722924305352\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000010\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405179751722924317975\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000039\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405313371722924331337\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000040\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405344621722924334462\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000085\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405410081722924341008\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000031\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405551481722924355148\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000073\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061406012161722924361216\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000083\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061407322001722924452200\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000166\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220761722923722076\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000168\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355219901722923721990 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:07:33', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061407353761722924455376', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"07-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401370081722924097008\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000037\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401436021722924103602\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000002\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401497731722924109773\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000006\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401552741722924115274\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000143\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402007281722924120728\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000087\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402141121722924134112\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000011\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402180821722924138082\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000082\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402215991722924141599\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000021\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402250611722924145061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000084\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402288361722924148836\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000004\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402325221722924152522\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000009\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402360051722924156005\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000090\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402398351722924159835\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000005\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402434961722924163496\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000012\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402471981722924167198\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000097\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402504921722924170492\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000013\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402540851722924174085\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000088\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402579381722924177938\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000014\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403018401722924181840\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000007\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403060611722924186061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000020\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403097211722924189721\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000017\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403135401722924193540\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000089\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-02-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403170891722924197089\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000094\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403204941722924200494\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000062\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403242431722924204243\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000099\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403279021722924207902\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000060\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403355401722924215540\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000064\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403389511722924218951\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000050\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403429331722924222933\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000058\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403470711722924227071\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000063\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403514001722924231400\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000057\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403555821722924235582\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000100\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404126201722924252620\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000052\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404176491722924257649\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000049\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404258211722924265821\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000055\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404297581722924269758\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000066\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404384781722924278478\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000008\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-02-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404455721722924285572\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000029\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405012061722924301206\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000074\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405053521722924305352\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000010\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405179751722924317975\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000039\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405313371722924331337\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000040\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405344621722924334462\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000085\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405410081722924341008\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000031\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405551481722924355148\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000073\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061406012161722924361216\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000083\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061407322001722924452200\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000166\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220761722923722076\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000168\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355219901722923721990 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:07:35', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061407357561722924455756', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061355219631722923721963\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000047\", \"taskStatus\": 100, \"destination\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:07:36', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061407367651722924456765', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061355219961722923721996\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000067\", \"taskStatus\": 100, \"destination\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:07:37', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061407373811722924457381', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"07-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401370081722924097008\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000037\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401436021722924103602\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000002\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401497731722924109773\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000006\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401552741722924115274\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000143\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402007281722924120728\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000087\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402141121722924134112\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000011\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402180821722924138082\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000082\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402215991722924141599\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000021\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402250611722924145061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000084\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402288361722924148836\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000004\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402325221722924152522\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000009\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402360051722924156005\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000090\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402398351722924159835\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000005\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402434961722924163496\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000012\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402471981722924167198\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000097\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402504921722924170492\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000013\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402540851722924174085\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000088\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402579381722924177938\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000014\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403018401722924181840\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000007\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403060611722924186061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000020\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403097211722924189721\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000017\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403135401722924193540\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000089\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-02-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403170891722924197089\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000094\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403204941722924200494\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000062\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403242431722924204243\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000099\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403279021722924207902\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000060\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403355401722924215540\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000064\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403389511722924218951\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000050\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403429331722924222933\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000058\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403470711722924227071\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000063\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403514001722924231400\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000057\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403555821722924235582\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000100\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404126201722924252620\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000052\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404176491722924257649\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000049\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404258211722924265821\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000055\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404297581722924269758\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000066\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404384781722924278478\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000008\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-02-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404455721722924285572\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000029\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405012061722924301206\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000074\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405053521722924305352\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000010\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405179751722924317975\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000039\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405313371722924331337\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000040\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405344621722924334462\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000085\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405410081722924341008\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000031\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405551481722924355148\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000073\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061406012161722924361216\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000083\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061407322001722924452200\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000166\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220761722923722076\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000168\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355219901722923721990 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:07:37', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061407394121722924459412', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"07-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401370081722924097008\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000037\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401436021722924103602\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000002\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401497731722924109773\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000006\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401552741722924115274\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000143\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402007281722924120728\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000087\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402141121722924134112\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000011\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402180821722924138082\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000082\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402215991722924141599\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000021\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402250611722924145061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000084\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402288361722924148836\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000004\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402325221722924152522\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000009\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402360051722924156005\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000090\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402398351722924159835\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000005\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402434961722924163496\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000012\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402471981722924167198\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000097\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402504921722924170492\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000013\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402540851722924174085\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000088\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402579381722924177938\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000014\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403018401722924181840\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000007\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403060611722924186061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000020\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403097211722924189721\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000017\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403135401722924193540\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000089\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-02-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403170891722924197089\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000094\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403204941722924200494\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000062\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403242431722924204243\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000099\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403279021722924207902\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000060\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403355401722924215540\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000064\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403389511722924218951\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000050\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403429331722924222933\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000058\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403470711722924227071\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000063\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403514001722924231400\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000057\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403555821722924235582\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000100\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404126201722924252620\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000052\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404176491722924257649\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000049\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404258211722924265821\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000055\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404297581722924269758\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000066\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404384781722924278478\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000008\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-02-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404455721722924285572\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000029\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405012061722924301206\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000074\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405053521722924305352\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000010\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405179751722924317975\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000039\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405313371722924331337\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000040\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405344621722924334462\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000085\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405410081722924341008\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000031\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405551481722924355148\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000073\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061406012161722924361216\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000083\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061407322001722924452200\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000166\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220761722923722076\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000168\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355219901722923721990 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:07:39', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061407398401722924459840', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000077\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '10.90.106.61', '2024-08-06 14:07:40', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061407409701722924460970', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061355220761722923722076\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000168\", \"taskStatus\": 2, \"destination\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:07:41', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061407413961722924461396', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"07-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401370081722924097008\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000037\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401436021722924103602\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000002\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401497731722924109773\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000006\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401552741722924115274\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000143\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402007281722924120728\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000087\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402141121722924134112\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000011\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402180821722924138082\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000082\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402215991722924141599\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000021\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402250611722924145061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000084\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402288361722924148836\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000004\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402325221722924152522\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000009\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402360051722924156005\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000090\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402398351722924159835\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000005\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402434961722924163496\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000012\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402471981722924167198\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000097\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402504921722924170492\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000013\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402540851722924174085\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000088\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402579381722924177938\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000014\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403018401722924181840\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000007\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403060611722924186061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000020\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403097211722924189721\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000017\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403135401722924193540\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000089\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-02-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403170891722924197089\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000094\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403204941722924200494\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000062\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403242431722924204243\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000099\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403279021722924207902\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000060\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403355401722924215540\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000064\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403389511722924218951\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000050\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403429331722924222933\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000058\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403470711722924227071\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000063\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403514001722924231400\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000057\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403555821722924235582\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000100\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404126201722924252620\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000052\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404176491722924257649\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000049\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404258211722924265821\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000055\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404297581722924269758\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000066\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404384781722924278478\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000008\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-02-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404455721722924285572\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000029\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405012061722924301206\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000074\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405053521722924305352\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000010\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405179751722924317975\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000039\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405313371722924331337\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000040\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405344621722924334462\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000085\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405410081722924341008\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000031\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405551481722924355148\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000073\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061406012161722924361216\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000083\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061407322001722924452200\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000166\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061407398371722924459837\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000077\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355219901722923721990 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:07:41', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061407434411722924463441', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"07-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401370081722924097008\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000037\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401436021722924103602\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000002\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401497731722924109773\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000006\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401552741722924115274\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000143\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402007281722924120728\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000087\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402141121722924134112\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000011\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402180821722924138082\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000082\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402215991722924141599\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000021\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402250611722924145061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000084\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402288361722924148836\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000004\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402325221722924152522\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000009\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402360051722924156005\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000090\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402398351722924159835\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000005\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402434961722924163496\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000012\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402471981722924167198\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000097\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402504921722924170492\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000013\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402540851722924174085\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000088\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402579381722924177938\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000014\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403018401722924181840\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000007\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403060611722924186061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000020\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403097211722924189721\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000017\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403135401722924193540\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000089\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-02-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403170891722924197089\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000094\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403204941722924200494\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000062\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403242431722924204243\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000099\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403279021722924207902\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000060\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403355401722924215540\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000064\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403389511722924218951\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000050\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403429331722924222933\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000058\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403470711722924227071\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000063\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403514001722924231400\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000057\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403555821722924235582\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000100\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404126201722924252620\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000052\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404176491722924257649\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000049\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404258211722924265821\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000055\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404297581722924269758\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000066\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404384781722924278478\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000008\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-02-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404455721722924285572\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000029\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405012061722924301206\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000074\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405053521722924305352\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000010\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405179751722924317975\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000039\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405313371722924331337\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000040\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405344621722924334462\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000085\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405410081722924341008\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000031\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405551481722924355148\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000073\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061406012161722924361216\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000083\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061407322001722924452200\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000166\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061407398371722924459837\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000077\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355219901722923721990 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:07:43', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061407454291722924465429', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"07-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401370081722924097008\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000037\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401436021722924103602\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000002\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401497731722924109773\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000006\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401552741722924115274\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000143\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402007281722924120728\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000087\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402141121722924134112\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000011\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402180821722924138082\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000082\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402215991722924141599\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000021\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402250611722924145061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000084\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402288361722924148836\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000004\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402325221722924152522\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000009\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402360051722924156005\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000090\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402398351722924159835\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000005\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402434961722924163496\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000012\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402471981722924167198\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000097\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402504921722924170492\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000013\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402540851722924174085\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000088\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402579381722924177938\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000014\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403018401722924181840\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000007\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403060611722924186061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000020\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403097211722924189721\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000017\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403135401722924193540\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000089\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-02-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403170891722924197089\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000094\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403204941722924200494\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000062\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403242431722924204243\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000099\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403279021722924207902\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000060\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403355401722924215540\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000064\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403389511722924218951\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000050\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403429331722924222933\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000058\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403470711722924227071\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000063\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403514001722924231400\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000057\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403555821722924235582\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000100\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404126201722924252620\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000052\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404176491722924257649\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000049\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404258211722924265821\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000055\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404297581722924269758\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000066\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404384781722924278478\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000008\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-02-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404455721722924285572\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000029\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405012061722924301206\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000074\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405053521722924305352\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000010\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405179751722924317975\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000039\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405313371722924331337\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000040\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405344621722924334462\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000085\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405410081722924341008\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000031\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405551481722924355148\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000073\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061406012161722924361216\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000083\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061407322001722924452200\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000166\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061407398371722924459837\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000077\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355219901722923721990 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:07:45', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061407459321722924465932', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000053\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '10.90.106.61', '2024-08-06 14:07:46', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061407474271722924467427', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"07-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401370081722924097008\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000037\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401436021722924103602\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000002\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401497731722924109773\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000006\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401552741722924115274\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000143\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402007281722924120728\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000087\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402141121722924134112\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000011\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402180821722924138082\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000082\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402215991722924141599\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000021\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402250611722924145061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000084\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402288361722924148836\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000004\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402325221722924152522\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000009\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402360051722924156005\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000090\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402398351722924159835\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000005\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402434961722924163496\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000012\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402471981722924167198\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000097\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402504921722924170492\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000013\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402540851722924174085\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000088\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402579381722924177938\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000014\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403018401722924181840\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000007\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403060611722924186061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000020\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403097211722924189721\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000017\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403135401722924193540\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000089\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-02-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403170891722924197089\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000094\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403204941722924200494\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000062\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403242431722924204243\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000099\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403279021722924207902\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000060\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403355401722924215540\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000064\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403389511722924218951\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000050\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403429331722924222933\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000058\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403470711722924227071\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000063\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403514001722924231400\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000057\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403555821722924235582\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000100\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404126201722924252620\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000052\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404176491722924257649\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000049\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404258211722924265821\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000055\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404297581722924269758\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000066\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404384781722924278478\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000008\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-02-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404455721722924285572\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000029\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405012061722924301206\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000074\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405053521722924305352\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000010\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405179751722924317975\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000039\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405313371722924331337\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000040\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405344621722924334462\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000085\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405410081722924341008\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000031\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405551481722924355148\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000073\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061406012161722924361216\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000083\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061407322001722924452200\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000166\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061407398371722924459837\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000077\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061407459291722924465929\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000053\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355219901722923721990 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:07:47', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061407492891722924469289', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000112\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '10.90.106.61', '2024-08-06 14:07:49', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061407494821722924469482', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"07-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401370081722924097008\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000037\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401436021722924103602\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000002\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401497731722924109773\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000006\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401552741722924115274\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000143\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402007281722924120728\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000087\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402141121722924134112\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000011\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402180821722924138082\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000082\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402215991722924141599\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000021\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402250611722924145061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000084\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402288361722924148836\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000004\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402325221722924152522\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000009\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402360051722924156005\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000090\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402398351722924159835\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000005\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402434961722924163496\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000012\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402471981722924167198\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000097\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402504921722924170492\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000013\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402540851722924174085\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000088\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402579381722924177938\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000014\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403018401722924181840\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000007\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403060611722924186061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000020\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403097211722924189721\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000017\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403135401722924193540\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000089\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-02-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403170891722924197089\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000094\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403204941722924200494\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000062\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403242431722924204243\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000099\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403279021722924207902\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000060\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403355401722924215540\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000064\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403389511722924218951\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000050\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403429331722924222933\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000058\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403470711722924227071\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000063\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403514001722924231400\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000057\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403555821722924235582\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000100\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404126201722924252620\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000052\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404176491722924257649\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000049\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404258211722924265821\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000055\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404297581722924269758\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000066\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404384781722924278478\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000008\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-02-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404455721722924285572\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000029\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405012061722924301206\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000074\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405053521722924305352\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000010\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405179751722924317975\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000039\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405313371722924331337\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000040\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405344621722924334462\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000085\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405410081722924341008\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000031\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405551481722924355148\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000073\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061406012161722924361216\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000083\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061407322001722924452200\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000166\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061407398371722924459837\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000077\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061407459291722924465929\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000053\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355219901722923721990 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:07:49', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061407514321722924471432', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"07-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401370081722924097008\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000037\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401436021722924103602\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000002\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401497731722924109773\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000006\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401552741722924115274\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000143\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402007281722924120728\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000087\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402141121722924134112\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000011\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402180821722924138082\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000082\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402215991722924141599\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000021\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402250611722924145061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000084\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402288361722924148836\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000004\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402325221722924152522\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000009\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402360051722924156005\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000090\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402398351722924159835\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000005\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402434961722924163496\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000012\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402471981722924167198\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000097\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402504921722924170492\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000013\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402540851722924174085\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000088\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402579381722924177938\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000014\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403018401722924181840\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000007\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403060611722924186061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000020\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403097211722924189721\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000017\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403135401722924193540\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000089\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-02-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403170891722924197089\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000094\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403204941722924200494\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000062\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403242431722924204243\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000099\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403279021722924207902\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000060\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403355401722924215540\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000064\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403389511722924218951\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000050\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403429331722924222933\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000058\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403470711722924227071\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000063\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403514001722924231400\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000057\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403555821722924235582\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000100\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404126201722924252620\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000052\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404176491722924257649\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000049\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404258211722924265821\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000055\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404297581722924269758\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000066\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404384781722924278478\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000008\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-02-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404455721722924285572\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000029\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405012061722924301206\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000074\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405053521722924305352\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000010\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405179751722924317975\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000039\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405313371722924331337\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000040\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405344621722924334462\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000085\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405410081722924341008\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000031\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405551481722924355148\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000073\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061406012161722924361216\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000083\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061407322001722924452200\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000166\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061407398371722924459837\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000077\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061407459291722924465929\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000053\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061407492861722924469286\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000112\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355219901722923721990 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:07:51', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061407525391722924472539', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000025\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '10.90.106.61', '2024-08-06 14:07:53', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061407534671722924473467', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"07-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401370081722924097008\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000037\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401436021722924103602\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000002\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401497731722924109773\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000006\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401552741722924115274\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000143\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402007281722924120728\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000087\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402141121722924134112\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000011\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402180821722924138082\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000082\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402215991722924141599\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000021\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402250611722924145061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000084\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402288361722924148836\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000004\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402325221722924152522\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000009\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402360051722924156005\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000090\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402398351722924159835\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000005\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402434961722924163496\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000012\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402471981722924167198\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000097\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402504921722924170492\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000013\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402540851722924174085\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000088\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402579381722924177938\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000014\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403018401722924181840\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000007\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403060611722924186061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000020\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403097211722924189721\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000017\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403135401722924193540\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000089\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-02-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403170891722924197089\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000094\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403204941722924200494\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000062\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403242431722924204243\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000099\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403279021722924207902\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000060\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403355401722924215540\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000064\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403389511722924218951\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000050\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403429331722924222933\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000058\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403470711722924227071\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000063\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403514001722924231400\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000057\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403555821722924235582\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000100\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404126201722924252620\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000052\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404176491722924257649\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000049\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404258211722924265821\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000055\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404297581722924269758\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000066\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404384781722924278478\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000008\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-02-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404455721722924285572\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000029\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405012061722924301206\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000074\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405053521722924305352\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000010\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405179751722924317975\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000039\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405313371722924331337\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000040\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405344621722924334462\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000085\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405410081722924341008\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000031\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405551481722924355148\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000073\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061406012161722924361216\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000083\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061407322001722924452200\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000166\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061407398371722924459837\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000077\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061407459291722924465929\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000053\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061407492861722924469286\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000112\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061407525371722924472537\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000025\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355219901722923721990 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:07:53', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061407554591722924475459', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"07-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401370081722924097008\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000037\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401436021722924103602\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000002\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401497731722924109773\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000006\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401552741722924115274\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000143\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402007281722924120728\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000087\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402141121722924134112\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000011\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402180821722924138082\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000082\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402215991722924141599\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000021\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402250611722924145061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000084\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402288361722924148836\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000004\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402325221722924152522\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000009\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402360051722924156005\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000090\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402398351722924159835\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000005\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402434961722924163496\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000012\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402471981722924167198\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000097\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402504921722924170492\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000013\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402540851722924174085\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000088\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402579381722924177938\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000014\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403018401722924181840\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000007\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403060611722924186061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000020\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403097211722924189721\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000017\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403135401722924193540\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000089\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-02-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403170891722924197089\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000094\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403204941722924200494\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000062\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403242431722924204243\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000099\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403279021722924207902\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000060\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403355401722924215540\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000064\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403389511722924218951\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000050\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403429331722924222933\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000058\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403470711722924227071\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000063\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403514001722924231400\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000057\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403555821722924235582\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000100\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404126201722924252620\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000052\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404176491722924257649\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000049\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404258211722924265821\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000055\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404297581722924269758\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000066\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404384781722924278478\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000008\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-02-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404455721722924285572\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000029\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405012061722924301206\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000074\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405053521722924305352\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000010\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405179751722924317975\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000039\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405313371722924331337\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000040\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405344621722924334462\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000085\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405410081722924341008\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000031\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405551481722924355148\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000073\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061406012161722924361216\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000083\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061407322001722924452200\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000166\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061407398371722924459837\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000077\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061407459291722924465929\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000053\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061407492861722924469286\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000112\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061407525371722924472537\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000025\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355219901722923721990 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:07:55', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061407574511722924477451', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"07-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401370081722924097008\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000037\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401436021722924103602\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000002\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401497731722924109773\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000006\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401552741722924115274\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000143\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402007281722924120728\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000087\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402141121722924134112\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000011\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402180821722924138082\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000082\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402215991722924141599\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000021\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402250611722924145061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000084\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402288361722924148836\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000004\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402325221722924152522\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000009\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402360051722924156005\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000090\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402398351722924159835\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000005\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402434961722924163496\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000012\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402471981722924167198\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000097\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402504921722924170492\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000013\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402540851722924174085\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000088\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402579381722924177938\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000014\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403018401722924181840\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000007\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403060611722924186061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000020\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403097211722924189721\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000017\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403135401722924193540\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000089\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-02-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403170891722924197089\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000094\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403204941722924200494\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000062\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403242431722924204243\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000099\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403279021722924207902\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000060\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403355401722924215540\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000064\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403389511722924218951\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000050\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403429331722924222933\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000058\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403470711722924227071\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000063\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403514001722924231400\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000057\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403555821722924235582\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000100\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404126201722924252620\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000052\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404176491722924257649\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000049\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404258211722924265821\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000055\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404297581722924269758\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000066\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404384781722924278478\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000008\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-02-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404455721722924285572\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000029\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405012061722924301206\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000074\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405053521722924305352\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000010\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405179751722924317975\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000039\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405313371722924331337\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000040\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405344621722924334462\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000085\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405410081722924341008\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000031\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405551481722924355148\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000073\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061406012161722924361216\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000083\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061407322001722924452200\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000166\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061407398371722924459837\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000077\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061407459291722924465929\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000053\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061407492861722924469286\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000112\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061407525371722924472537\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000025\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355219901722923721990 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:07:57', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061407594801722924479480', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"07-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401370081722924097008\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000037\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401436021722924103602\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000002\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401497731722924109773\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000006\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401552741722924115274\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000143\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402007281722924120728\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000087\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402141121722924134112\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000011\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402180821722924138082\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000082\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402215991722924141599\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000021\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402250611722924145061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000084\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402288361722924148836\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000004\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402325221722924152522\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000009\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402360051722924156005\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000090\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402398351722924159835\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000005\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402434961722924163496\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000012\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402471981722924167198\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000097\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402504921722924170492\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000013\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402540851722924174085\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000088\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402579381722924177938\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000014\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403018401722924181840\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000007\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403060611722924186061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000020\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403097211722924189721\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000017\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403135401722924193540\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000089\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-02-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403170891722924197089\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000094\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403204941722924200494\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000062\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403242431722924204243\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000099\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403279021722924207902\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000060\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403355401722924215540\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000064\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403389511722924218951\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000050\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403429331722924222933\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000058\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403470711722924227071\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000063\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403514001722924231400\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000057\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403555821722924235582\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000100\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404126201722924252620\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000052\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404176491722924257649\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000049\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404258211722924265821\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000055\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404297581722924269758\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000066\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404384781722924278478\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000008\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-02-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404455721722924285572\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000029\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405012061722924301206\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000074\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405053521722924305352\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000010\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405179751722924317975\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000039\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405313371722924331337\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000040\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405344621722924334462\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000085\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405410081722924341008\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000031\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405551481722924355148\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000073\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061406012161722924361216\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000083\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061407322001722924452200\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000166\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061407398371722924459837\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000077\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061407459291722924465929\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000053\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061407492861722924469286\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000112\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061407525371722924472537\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000025\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355219901722923721990 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:07:59', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061408006051722924480605', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000039\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '10.90.106.61', '2024-08-06 14:08:01', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061408015181722924481518', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"07-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401370081722924097008\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000037\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401436021722924103602\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000002\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401497731722924109773\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000006\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401552741722924115274\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000143\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402007281722924120728\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000087\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402141121722924134112\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000011\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402180821722924138082\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000082\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402215991722924141599\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000021\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402250611722924145061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000084\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402288361722924148836\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000004\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402325221722924152522\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000009\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402360051722924156005\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000090\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402398351722924159835\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000005\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402434961722924163496\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000012\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402471981722924167198\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000097\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402504921722924170492\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000013\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402540851722924174085\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000088\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402579381722924177938\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000014\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403018401722924181840\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000007\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403060611722924186061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000020\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403097211722924189721\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000017\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403135401722924193540\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000089\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-02-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403170891722924197089\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000094\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403204941722924200494\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000062\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403242431722924204243\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000099\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403279021722924207902\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000060\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403355401722924215540\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000064\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403389511722924218951\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000050\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403429331722924222933\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000058\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403470711722924227071\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000063\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403514001722924231400\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000057\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403555821722924235582\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000100\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404126201722924252620\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000052\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404176491722924257649\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000049\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404258211722924265821\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000055\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404297581722924269758\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000066\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404384781722924278478\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000008\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-02-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404455721722924285572\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000029\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405012061722924301206\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000074\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405053521722924305352\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000010\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405179751722924317975\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000039\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405313371722924331337\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000040\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405344621722924334462\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000085\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405410081722924341008\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000031\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405551481722924355148\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000073\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061406012161722924361216\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000083\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061407322001722924452200\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000166\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061407398371722924459837\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000077\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061407459291722924465929\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000053\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061407492861722924469286\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000112\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061407525371722924472537\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000025\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355219901722923721990 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:08:02', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061408034871722924483487', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"07-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401370081722924097008\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000037\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401436021722924103602\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000002\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401497731722924109773\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000006\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401552741722924115274\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000143\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402007281722924120728\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000087\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402141121722924134112\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000011\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402180821722924138082\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000082\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402215991722924141599\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000021\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402250611722924145061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000084\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402288361722924148836\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000004\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402325221722924152522\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000009\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402360051722924156005\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000090\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402398351722924159835\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000005\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402434961722924163496\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000012\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402471981722924167198\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000097\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402504921722924170492\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000013\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402540851722924174085\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000088\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402579381722924177938\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000014\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403018401722924181840\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000007\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403060611722924186061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000020\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403097211722924189721\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000017\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403135401722924193540\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000089\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-02-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403170891722924197089\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000094\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403204941722924200494\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000062\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403242431722924204243\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000099\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403279021722924207902\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000060\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403355401722924215540\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000064\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403389511722924218951\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000050\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403429331722924222933\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000058\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403470711722924227071\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000063\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403514001722924231400\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000057\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403555821722924235582\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000100\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404126201722924252620\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000052\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404176491722924257649\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000049\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404258211722924265821\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000055\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404297581722924269758\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000066\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404384781722924278478\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000008\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-02-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404455721722924285572\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000029\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405012061722924301206\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000074\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405053521722924305352\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000010\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405179751722924317975\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000039\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405313371722924331337\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000040\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405344621722924334462\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000085\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405410081722924341008\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000031\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405551481722924355148\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000073\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061406012161722924361216\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000083\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061407322001722924452200\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000166\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061407398371722924459837\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000077\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061407459291722924465929\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000053\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061407492861722924469286\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000112\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061407525371722924472537\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000025\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355219901722923721990 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:08:03', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061408036171722924483617', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000188\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '10.90.106.61', '2024-08-06 14:08:04', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061408054841722924485484', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"07-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401370081722924097008\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000037\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401436021722924103602\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000002\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401497731722924109773\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000006\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401552741722924115274\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000143\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402007281722924120728\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000087\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402141121722924134112\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000011\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402180821722924138082\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000082\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402215991722924141599\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000021\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402250611722924145061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000084\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402288361722924148836\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000004\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402325221722924152522\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000009\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402360051722924156005\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000090\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402398351722924159835\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000005\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402434961722924163496\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000012\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402471981722924167198\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000097\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402504921722924170492\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000013\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402540851722924174085\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000088\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402579381722924177938\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000014\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403018401722924181840\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000007\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403060611722924186061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000020\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403097211722924189721\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000017\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403135401722924193540\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000089\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-02-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403170891722924197089\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000094\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403204941722924200494\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000062\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403242431722924204243\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000099\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403279021722924207902\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000060\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403355401722924215540\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000064\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403389511722924218951\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000050\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403429331722924222933\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000058\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403470711722924227071\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000063\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403514001722924231400\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000057\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403555821722924235582\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000100\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404126201722924252620\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000052\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404176491722924257649\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000049\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404258211722924265821\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000055\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404297581722924269758\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000066\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404384781722924278478\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000008\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-02-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404455721722924285572\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000029\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405012061722924301206\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000074\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405053521722924305352\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000010\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405179751722924317975\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000039\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405313371722924331337\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000040\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405344621722924334462\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000085\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405410081722924341008\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000031\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405551481722924355148\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000073\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061406012161722924361216\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000083\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061407322001722924452200\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000166\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061407398371722924459837\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000077\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061407459291722924465929\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000053\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061407492861722924469286\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000112\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061407525371722924472537\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000025\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408036151722924483615\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000188\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355219901722923721990 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:08:05', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061408070721722924487072', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000048\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '10.90.106.61', '2024-08-06 14:08:07', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061408075461722924487546', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"07-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401370081722924097008\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000037\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401436021722924103602\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000002\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401497731722924109773\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000006\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401552741722924115274\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000143\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402007281722924120728\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000087\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402141121722924134112\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000011\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402180821722924138082\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000082\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402215991722924141599\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000021\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402250611722924145061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000084\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402288361722924148836\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000004\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402325221722924152522\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000009\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402360051722924156005\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000090\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402398351722924159835\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000005\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402434961722924163496\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000012\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402471981722924167198\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000097\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402504921722924170492\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000013\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402540851722924174085\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000088\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402579381722924177938\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000014\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403018401722924181840\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000007\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403060611722924186061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000020\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403097211722924189721\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000017\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403135401722924193540\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000089\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-02-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403170891722924197089\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000094\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403204941722924200494\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000062\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403242431722924204243\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000099\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403279021722924207902\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000060\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403355401722924215540\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000064\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403389511722924218951\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000050\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403429331722924222933\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000058\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403470711722924227071\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000063\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403514001722924231400\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000057\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403555821722924235582\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000100\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404126201722924252620\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000052\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404176491722924257649\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000049\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404258211722924265821\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000055\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404297581722924269758\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000066\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404384781722924278478\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000008\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-02-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404455721722924285572\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000029\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405012061722924301206\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000074\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405053521722924305352\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000010\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405179751722924317975\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000039\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405313371722924331337\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000040\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405344621722924334462\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000085\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405410081722924341008\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000031\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405551481722924355148\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000073\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061406012161722924361216\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000083\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061407322001722924452200\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000166\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061407398371722924459837\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000077\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061407459291722924465929\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000053\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061407492861722924469286\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000112\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061407525371722924472537\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000025\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408036151722924483615\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000188\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-02-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408070691722924487069\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000048\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355219901722923721990 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:08:08', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061408095261722924489526', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"07-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401370081722924097008\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000037\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401436021722924103602\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000002\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401497731722924109773\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000006\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401552741722924115274\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000143\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402007281722924120728\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000087\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402141121722924134112\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000011\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402180821722924138082\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000082\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402215991722924141599\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000021\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402250611722924145061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000084\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402288361722924148836\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000004\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402325221722924152522\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000009\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402360051722924156005\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000090\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402398351722924159835\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000005\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402434961722924163496\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000012\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402471981722924167198\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000097\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402504921722924170492\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000013\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402540851722924174085\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000088\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402579381722924177938\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000014\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403018401722924181840\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000007\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403060611722924186061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000020\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403097211722924189721\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000017\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403135401722924193540\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000089\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-02-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403170891722924197089\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000094\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403204941722924200494\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000062\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403242431722924204243\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000099\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403279021722924207902\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000060\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403355401722924215540\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000064\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403389511722924218951\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000050\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403429331722924222933\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000058\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403470711722924227071\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000063\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403514001722924231400\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000057\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403555821722924235582\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000100\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404126201722924252620\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000052\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404176491722924257649\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000049\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404258211722924265821\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000055\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404297581722924269758\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000066\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404384781722924278478\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000008\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-02-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404455721722924285572\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000029\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405012061722924301206\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000074\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405053521722924305352\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000010\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405179751722924317975\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000039\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405313371722924331337\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000040\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405344621722924334462\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000085\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405410081722924341008\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000031\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405551481722924355148\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000073\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061406012161722924361216\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000083\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061407322001722924452200\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000166\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061407398371722924459837\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000077\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061407459291722924465929\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000053\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061407492861722924469286\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000112\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061407525371722924472537\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000025\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408036151722924483615\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000188\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-02-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408070691722924487069\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000048\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355219901722923721990 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:08:10', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061408115311722924491531', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"07-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401370081722924097008\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000037\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401436021722924103602\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000002\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401497731722924109773\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000006\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401552741722924115274\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000143\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402007281722924120728\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000087\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402141121722924134112\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000011\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402180821722924138082\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000082\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402215991722924141599\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000021\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402250611722924145061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000084\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402288361722924148836\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000004\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402325221722924152522\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000009\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402360051722924156005\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000090\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402398351722924159835\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000005\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402434961722924163496\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000012\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402471981722924167198\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000097\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402504921722924170492\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000013\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402540851722924174085\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000088\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402579381722924177938\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000014\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403018401722924181840\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000007\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403060611722924186061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000020\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403097211722924189721\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000017\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403135401722924193540\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000089\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-02-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403170891722924197089\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000094\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403204941722924200494\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000062\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403242431722924204243\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000099\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403279021722924207902\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000060\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403355401722924215540\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000064\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403389511722924218951\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000050\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403429331722924222933\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000058\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403470711722924227071\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000063\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403514001722924231400\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000057\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403555821722924235582\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000100\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404126201722924252620\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000052\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404176491722924257649\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000049\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404258211722924265821\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000055\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404297581722924269758\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000066\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404384781722924278478\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000008\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-02-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404455721722924285572\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000029\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405012061722924301206\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000074\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405053521722924305352\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000010\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405179751722924317975\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000039\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405313371722924331337\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000040\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405344621722924334462\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000085\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405410081722924341008\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000031\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405551481722924355148\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000073\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061406012161722924361216\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000083\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061407322001722924452200\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000166\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061407398371722924459837\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000077\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061407459291722924465929\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000053\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061407492861722924469286\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000112\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061407525371722924472537\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000025\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408036151722924483615\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000188\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-02-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408070691722924487069\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000048\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355219901722923721990 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:08:12', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061408132661722924493266', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000029\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '10.90.106.61', '2024-08-06 14:08:13', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061408135511722924493551', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"07-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401370081722924097008\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000037\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401436021722924103602\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000002\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401497731722924109773\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000006\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401552741722924115274\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000143\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402007281722924120728\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000087\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402141121722924134112\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000011\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402180821722924138082\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000082\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402215991722924141599\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000021\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402250611722924145061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000084\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402288361722924148836\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000004\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402325221722924152522\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000009\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402360051722924156005\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000090\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402398351722924159835\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000005\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402434961722924163496\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000012\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402471981722924167198\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000097\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402504921722924170492\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000013\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402540851722924174085\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000088\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402579381722924177938\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000014\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403018401722924181840\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000007\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403060611722924186061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000020\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403097211722924189721\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000017\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403135401722924193540\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000089\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-02-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403170891722924197089\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000094\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403204941722924200494\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000062\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403242431722924204243\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000099\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403279021722924207902\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000060\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403355401722924215540\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000064\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403389511722924218951\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000050\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403429331722924222933\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000058\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403470711722924227071\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000063\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403514001722924231400\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000057\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403555821722924235582\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000100\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404126201722924252620\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000052\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404176491722924257649\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000049\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404258211722924265821\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000055\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404297581722924269758\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000066\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404384781722924278478\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000008\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-02-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404455721722924285572\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000029\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405012061722924301206\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000074\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405053521722924305352\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000010\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405179751722924317975\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000039\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405313371722924331337\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000040\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405344621722924334462\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000085\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405410081722924341008\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000031\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405551481722924355148\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000073\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061406012161722924361216\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000083\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061407322001722924452200\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000166\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061407398371722924459837\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000077\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061407459291722924465929\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000053\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061407492861722924469286\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000112\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061407525371722924472537\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000025\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408036151722924483615\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000188\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-02-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408070691722924487069\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000048\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355219901722923721990 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:08:14', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061408155551722924495555', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"07-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401370081722924097008\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000037\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401436021722924103602\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000002\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401497731722924109773\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000006\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401552741722924115274\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000143\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402007281722924120728\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000087\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402141121722924134112\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000011\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402180821722924138082\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000082\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402215991722924141599\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000021\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402250611722924145061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000084\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402288361722924148836\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000004\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402325221722924152522\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000009\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402360051722924156005\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000090\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402398351722924159835\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000005\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402434961722924163496\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000012\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402471981722924167198\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000097\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402504921722924170492\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000013\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402540851722924174085\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000088\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402579381722924177938\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000014\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403018401722924181840\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000007\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403060611722924186061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000020\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403097211722924189721\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000017\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403135401722924193540\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000089\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-02-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403170891722924197089\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000094\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403204941722924200494\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000062\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403242431722924204243\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000099\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403279021722924207902\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000060\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403355401722924215540\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000064\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403389511722924218951\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000050\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403429331722924222933\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000058\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403470711722924227071\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000063\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403514001722924231400\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000057\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403555821722924235582\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000100\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404126201722924252620\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000052\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404176491722924257649\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000049\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404258211722924265821\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000055\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404297581722924269758\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000066\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404384781722924278478\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000008\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-02-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404455721722924285572\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000029\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405012061722924301206\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000074\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405053521722924305352\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000010\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405179751722924317975\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000039\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405313371722924331337\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000040\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405344621722924334462\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000085\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405410081722924341008\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000031\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405551481722924355148\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000073\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061406012161722924361216\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000083\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061407322001722924452200\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000166\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061407398371722924459837\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000077\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061407459291722924465929\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000053\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061407492861722924469286\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000112\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061407525371722924472537\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000025\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408036151722924483615\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000188\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-02-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408070691722924487069\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000048\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355219901722923721990 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:08:16', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061408167661722924496766', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061355220761722923722076\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000168\", \"taskStatus\": 100, \"destination\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:08:17', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061408174821722924497482', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000118\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '10.90.106.61', '2024-08-06 14:08:17', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061408175691722924497569', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"07-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401370081722924097008\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000037\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401436021722924103602\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000002\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401497731722924109773\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000006\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401552741722924115274\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000143\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402007281722924120728\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000087\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402141121722924134112\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000011\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402180821722924138082\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000082\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402215991722924141599\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000021\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402250611722924145061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000084\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402288361722924148836\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000004\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402325221722924152522\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000009\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402360051722924156005\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000090\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402398351722924159835\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000005\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402434961722924163496\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000012\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402471981722924167198\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000097\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402504921722924170492\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000013\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402540851722924174085\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000088\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402579381722924177938\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000014\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403018401722924181840\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000007\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403060611722924186061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000020\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403097211722924189721\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000017\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403135401722924193540\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000089\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-02-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403170891722924197089\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000094\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403204941722924200494\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000062\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403242431722924204243\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000099\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403279021722924207902\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000060\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403355401722924215540\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000064\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403389511722924218951\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000050\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403429331722924222933\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000058\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403470711722924227071\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000063\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403514001722924231400\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000057\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403555821722924235582\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000100\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404126201722924252620\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000052\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404176491722924257649\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000049\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404258211722924265821\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000055\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404297581722924269758\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000066\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404384781722924278478\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000008\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-02-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404455721722924285572\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000029\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405012061722924301206\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000074\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405053521722924305352\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000010\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405179751722924317975\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000039\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405313371722924331337\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000040\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405344621722924334462\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000085\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405410081722924341008\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000031\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405551481722924355148\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000073\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061406012161722924361216\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000083\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061407322001722924452200\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000166\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061407398371722924459837\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000077\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061407459291722924465929\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000053\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061407492861722924469286\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000112\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061407525371722924472537\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000025\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408036151722924483615\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000188\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-02-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408070691722924487069\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000048\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355219901722923721990 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:08:18', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061408188661722924498866', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061355223761722923722376\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000061\", \"taskStatus\": 2, \"destination\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:08:19', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061408197451722924499745', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000041\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '10.90.106.61', '2024-08-06 14:08:20', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061408204671722924500467', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"07-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401370081722924097008\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000037\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401436021722924103602\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000002\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401497731722924109773\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000006\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061401552741722924115274\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000143\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402007281722924120728\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000087\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402141121722924134112\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000011\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-01-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402180821722924138082\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000082\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402215991722924141599\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000021\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402250611722924145061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000084\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402288361722924148836\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000004\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402325221722924152522\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000009\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402360051722924156005\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000090\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402398351722924159835\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000005\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402434961722924163496\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000012\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402471981722924167198\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000097\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402504921722924170492\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000013\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-02-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402540851722924174085\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000088\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061402579381722924177938\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000014\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403018401722924181840\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000007\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403060611722924186061\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000020\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403097211722924189721\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000017\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403135401722924193540\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000089\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-02-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403170891722924197089\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000094\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403204941722924200494\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000062\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403242431722924204243\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000099\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403279021722924207902\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000060\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403355401722924215540\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000064\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403389511722924218951\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000050\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403429331722924222933\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000058\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403470711722924227071\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000063\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403514001722924231400\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000057\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061403555821722924235582\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000100\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404126201722924252620\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000052\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404176491722924257649\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000049\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404258211722924265821\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000055\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404297581722924269758\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000066\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404384781722924278478\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000008\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-02-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061404455721722924285572\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000029\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405012061722924301206\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000074\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405053521722924305352\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000010\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405179751722924317975\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000039\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405313371722924331337\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000040\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405344621722924334462\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000085\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405410081722924341008\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000031\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061405551481722924355148\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000073\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061406012161722924361216\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000083\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061407322001722924452200\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000166\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061407398371722924459837\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000077\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061407459291722924465929\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000053\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061407492861722924469286\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000112\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061407525371722924472537\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000025\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408036151722924483615\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000188\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-02-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408070691722924487069\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000048\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"02-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408174801722924497480\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000118\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":0,\\\"message\\\":\\\"任务创建成功,任务号:202408061401370081722924097008,202408061401436021722924103602,202408061401497731722924109773,202408061401552741722924115274,202408061402007281722924120728,202408061402141121722924134112,202408061402180821722924138082,202408061402215991722924141599,202408061402250611722924145061,202408061402288361722924148836,202408061402325221722924152522,202408061402360051722924156005,202408061402398351722924159835,202408061402434961722924163496,202408061402471981722924167198,202408061402504921722924170492,202408061402540851722924174085,202408061402579381722924177938,202408061403018401722924181840,202408061403060611722924186061,202408061403097211722924189721,202408061403135401722924193540,202408061403170891722924197089,202408061403204941722924200494,202408061403242431722924204243,202408061403279021722924207902,202408061403355401722924215540,202408061403389511722924218951,202408061403429331722924222933,202408061403470711722924227071,202408061403514001722924231400,202408061403555821722924235582,202408061404126201722924252620,202408061404176491722924257649,202408061404258211722924265821,202408061404297581722924269758,202408061404384781722924278478,202408061404455721722924285572,202408061405012061722924301206,202408061405053521722924305352,202408061405179751722924317975,202408061405313371722924331337,202408061405344621722924334462,202408061405410081722924341008,202408061405551481722924355148,202408061406012161722924361216,202408061407322001722924452200,202408061407398371722924459837,202408061407459291722924465929,202408061407492861722924469286,202408061407525371722924472537,202408061408036151722924483615,202408061408070691722924487069,202408061408174801722924497480\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:08:20', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061408214551722924501455', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"04-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408197431722924499743\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000041\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224411722923722441\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000080\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355219901722923721990 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:08:21', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061408234311722924503431', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"04-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408197431722924499743\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000041\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224411722923722441\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000080\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355219901722923721990 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:08:23', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061408254761722924505476', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"04-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408197431722924499743\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000041\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224411722923722441\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000080\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355219901722923721990 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:08:25', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061408261661722924506166', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000018\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '10.90.106.61', '2024-08-06 14:08:26', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061408275261722924507526', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"04-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408197431722924499743\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000041\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408261631722924506163\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000018\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224411722923722441\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000080\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355219901722923721990 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:08:28', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061408294731722924509473', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"04-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408197431722924499743\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000041\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408261631722924506163\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000018\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224411722923722441\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000080\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355219901722923721990 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:08:29', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061408314871722924511487', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"04-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408197431722924499743\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000041\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408261631722924506163\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000018\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224411722923722441\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000080\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355219901722923721990 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:08:31', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061408326931722924512693', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000040\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '10.90.106.61', '2024-08-06 14:08:33', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061408335081722924513508', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"04-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408197431722924499743\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000041\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408261631722924506163\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000018\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224411722923722441\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000080\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355219901722923721990 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:08:34', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061408355311722924515531', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"04-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408197431722924499743\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000041\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408261631722924506163\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000018\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224411722923722441\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000080\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355219901722923721990 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:08:36', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061408375261722924517526', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"04-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408197431722924499743\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000041\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408261631722924506163\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000018\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224411722923722441\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000080\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355219901722923721990 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:08:38', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061408393841722924519384', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000032\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '10.90.106.61', '2024-08-06 14:08:39', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061408395441722924519544', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"04-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408197431722924499743\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000041\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408261631722924506163\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000018\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408393811722924519381\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000032\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224411722923722441\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000080\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355219901722923721990 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:08:40', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061408415511722924521551', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"04-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408197431722924499743\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000041\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408261631722924506163\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000018\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408393811722924519381\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000032\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224411722923722441\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000080\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355219901722923721990 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:08:42', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061408435611722924523561', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"04-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408197431722924499743\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000041\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408261631722924506163\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000018\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408393811722924519381\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000032\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224411722923722441\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000080\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355219901722923721990 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:08:44', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061408455881722924525588', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"04-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408197431722924499743\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000041\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408261631722924506163\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000018\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408393811722924519381\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000032\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224411722923722441\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000080\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355219901722923721990 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:08:46', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061408456531722924525653', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000085\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '10.90.106.61', '2024-08-06 14:08:46', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061408476251722924527625', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"04-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408197431722924499743\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000041\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408261631722924506163\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000018\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408393811722924519381\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000032\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224411722923722441\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000080\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355219901722923721990 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:08:48', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061408495981722924529598', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"04-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408197431722924499743\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000041\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408261631722924506163\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000018\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408393811722924519381\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000032\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224411722923722441\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000080\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355219901722923721990 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:08:50', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061408515811722924531581', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"04-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408197431722924499743\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000041\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408261631722924506163\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000018\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408393811722924519381\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000032\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224411722923722441\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000080\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355219901722923721990 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:08:52', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061408517741722924531774', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061355223761722923722376\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000061\", \"taskStatus\": 100, \"destination\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:08:52', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061408521741722924532174', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000031\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '10.90.106.61', '2024-08-06 14:08:52', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061408536181722924533618', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"04-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408197431722924499743\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000041\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408261631722924506163\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000018\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408393811722924519381\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000032\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"04-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224411722923722441\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000080\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355219901722923721990 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:08:54', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061408551221722924535122', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061355224411722923722441\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000080\", \"taskStatus\": 2, \"destination\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:08:55', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061408556101722924535610', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"04-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408197431722924499743\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000041\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408261631722924506163\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000018\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408393811722924519381\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000032\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355219901722923721990 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:08:56', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061408576241722924537624', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"04-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408197431722924499743\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000041\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408261631722924506163\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000018\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408393811722924519381\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000032\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355219901722923721990 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:08:58', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061408585411722924538541', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000074\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '10.90.106.61', '2024-08-06 14:08:59', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061408596041722924539604', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"04-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408197431722924499743\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000041\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408261631722924506163\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000018\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408393811722924519381\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000032\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355219901722923721990 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:09:00', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061409016041722924541604', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"04-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408197431722924499743\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000041\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408261631722924506163\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000018\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408393811722924519381\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000032\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355219901722923721990 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:09:02', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061409036231722924543623', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"04-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408197431722924499743\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000041\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408261631722924506163\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000018\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408393811722924519381\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000032\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355219901722923721990 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:09:04', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061409046691722924544669', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000073\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '10.90.106.61', '2024-08-06 14:09:05', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061409056181722924545618', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"04-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408197431722924499743\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000041\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408261631722924506163\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000018\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408393811722924519381\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000032\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355219901722923721990 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:09:06', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061409076091722924547609', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"04-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408197431722924499743\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000041\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408261631722924506163\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000018\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408393811722924519381\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000032\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355219901722923721990 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:09:08', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061409096101722924549610', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"04-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408197431722924499743\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000041\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408261631722924506163\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000018\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408393811722924519381\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000032\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355219901722923721990 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:09:10', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061409110731722924551073', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000056\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '10.90.106.61', '2024-08-06 14:09:11', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061409116311722924551631', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"04-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408197431722924499743\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000041\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408261631722924506163\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000018\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408393811722924519381\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000032\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409110721722924551072\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355219901722923721990 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:09:12', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061409136201722924553620', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"04-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408197431722924499743\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000041\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408261631722924506163\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000018\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408393811722924519381\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000032\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409110721722924551072\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355219901722923721990 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:09:14', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061409156171722924555617', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"04-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408197431722924499743\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000041\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408261631722924506163\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000018\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408393811722924519381\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000032\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409110721722924551072\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355219901722923721990 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:09:16', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061409173721722924557372', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000035\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '10.90.106.61', '2024-08-06 14:09:17', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061409176241722924557624', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"04-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408197431722924499743\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000041\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408261631722924506163\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000018\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408393811722924519381\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000032\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409110721722924551072\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409173701722924557370\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355219901722923721990 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:09:18', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061409196161722924559616', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"04-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408197431722924499743\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000041\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408261631722924506163\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000018\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408393811722924519381\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000032\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409110721722924551072\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409173701722924557370\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355219901722923721990 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:09:20', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061409216201722924561620', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"04-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408197431722924499743\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000041\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408261631722924506163\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000018\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408393811722924519381\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000032\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409110721722924551072\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409173701722924557370\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355219901722923721990 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:09:22', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061409236111722924563611', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"04-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408197431722924499743\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000041\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408261631722924506163\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000018\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408393811722924519381\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000032\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409110721722924551072\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409173701722924557370\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355219901722923721990 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:09:24', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061409240241722924564024', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000101\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '10.90.106.61', '2024-08-06 14:09:24', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061409256481722924565648', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"04-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408197431722924499743\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000041\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408261631722924506163\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000018\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408393811722924519381\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000032\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409110721722924551072\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409173701722924557370\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409240211722924564021\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355219901722923721990 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:09:26', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061409276281722924567628', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"04-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408197431722924499743\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000041\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408261631722924506163\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000018\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408393811722924519381\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000032\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409110721722924551072\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409173701722924557370\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409240211722924564021\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355219901722923721990 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:09:28', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061409277431722924567743', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061355224411722923722441\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000080\", \"taskStatus\": 100, \"destination\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:09:28', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061409296721722924569672', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"04-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408197431722924499743\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000041\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408261631722924506163\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000018\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408393811722924519381\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000032\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409110721722924551072\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409173701722924557370\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409240211722924564021\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355219901722923721990 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:09:30', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061409302881722924570288', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000198\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '10.90.106.61', '2024-08-06 14:09:30', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061409316801722924571680', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"04-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408197431722924499743\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000041\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408261631722924506163\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000018\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408393811722924519381\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000032\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409110721722924551072\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409173701722924557370\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409240211722924564021\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409302851722924570285\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355219901722923721990 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:09:32', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061409336711722924573671', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"04-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408197431722924499743\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000041\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408261631722924506163\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000018\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408393811722924519381\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000032\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409110721722924551072\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409173701722924557370\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409240211722924564021\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409302851722924570285\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355219901722923721990 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:09:34', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061409356841722924575684', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"04-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408197431722924499743\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000041\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408261631722924506163\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000018\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408393811722924519381\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000032\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409110721722924551072\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409173701722924557370\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409240211722924564021\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409302851722924570285\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355219901722923721990 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:09:36', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061409364541722924576454', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000086\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '10.90.106.61', '2024-08-06 14:09:36', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061409376681722924577668', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"04-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408197431722924499743\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000041\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408261631722924506163\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000018\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408393811722924519381\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000032\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409110721722924551072\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409173701722924557370\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409240211722924564021\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409302851722924570285\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409364521722924576452\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000086\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355219901722923721990 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:09:38', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061409397011722924579701', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"04-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408197431722924499743\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000041\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408261631722924506163\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000018\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408393811722924519381\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000032\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409110721722924551072\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409173701722924557370\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409240211722924564021\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409302851722924570285\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409364521722924576452\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000086\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355219901722923721990 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:09:40', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061409416891722924581689', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"04-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408197431722924499743\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000041\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408261631722924506163\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000018\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408393811722924519381\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000032\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409110721722924551072\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409173701722924557370\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409240211722924564021\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409302851722924570285\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409364521722924576452\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000086\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355219901722923721990 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:09:42', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061409428121722924582812', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000068\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '10.90.106.61', '2024-08-06 14:09:43', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061409436821722924583682', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"04-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408197431722924499743\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000041\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408261631722924506163\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000018\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408393811722924519381\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000032\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409110721722924551072\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409173701722924557370\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409240211722924564021\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409302851722924570285\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409364521722924576452\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000086\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409428101722924582810\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355219901722923721990 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:09:44', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061409456951722924585695', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"04-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408197431722924499743\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000041\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408261631722924506163\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000018\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408393811722924519381\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000032\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409110721722924551072\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409173701722924557370\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409240211722924564021\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409302851722924570285\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409364521722924576452\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000086\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409428101722924582810\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355219901722923721990 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:09:46', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061409476801722924587680', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"04-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408197431722924499743\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000041\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408261631722924506163\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000018\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408393811722924519381\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000032\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409110721722924551072\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409173701722924557370\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409240211722924564021\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409302851722924570285\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409364521722924576452\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000086\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409428101722924582810\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355219901722923721990 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:09:48', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061409494641722924589464', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000026\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '10.90.106.61', '2024-08-06 14:09:49', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061409497151722924589715', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"04-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408197431722924499743\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000041\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408261631722924506163\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000018\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408393811722924519381\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000032\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409110721722924551072\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409173701722924557370\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409240211722924564021\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409302851722924570285\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409364521722924576452\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000086\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409428101722924582810\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409494621722924589462\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355219901722923721990 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:09:50', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061409516861722924591686', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"04-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408197431722924499743\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000041\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408261631722924506163\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000018\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408393811722924519381\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000032\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409110721722924551072\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409173701722924557370\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409240211722924564021\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409302851722924570285\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409364521722924576452\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000086\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409428101722924582810\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409494621722924589462\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355219901722923721990 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:09:52', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061409536941722924593694', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"04-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408197431722924499743\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000041\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408261631722924506163\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000018\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408393811722924519381\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000032\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409110721722924551072\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409173701722924557370\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409240211722924564021\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409302851722924570285\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409364521722924576452\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000086\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409428101722924582810\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409494621722924589462\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355219901722923721990 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:09:54', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061409557101722924595710', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"04-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408197431722924499743\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000041\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408261631722924506163\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000018\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408393811722924519381\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000032\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409110721722924551072\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409173701722924557370\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409240211722924564021\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409302851722924570285\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409364521722924576452\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000086\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409428101722924582810\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409494621722924589462\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355219901722923721990 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:09:56', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061409558291722924595829', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000077\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '10.90.106.61', '2024-08-06 14:09:56', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061409577171722924597717', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"04-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408197431722924499743\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000041\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408261631722924506163\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000018\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408393811722924519381\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000032\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409110721722924551072\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409173701722924557370\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409240211722924564021\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409302851722924570285\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409364521722924576452\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000086\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409428101722924582810\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409494621722924589462\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355219901722923721990 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:09:58', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061409597081722924599708', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"04-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408197431722924499743\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000041\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408261631722924506163\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000018\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408393811722924519381\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000032\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409110721722924551072\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409173701722924557370\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409240211722924564021\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409302851722924570285\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409364521722924576452\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000086\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409428101722924582810\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409494621722924589462\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355219901722923721990 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:10:00', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061410017121722924601712', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"04-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408197431722924499743\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000041\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408261631722924506163\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000018\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408393811722924519381\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000032\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409110721722924551072\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409173701722924557370\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409240211722924564021\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409302851722924570285\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409364521722924576452\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000086\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409428101722924582810\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409494621722924589462\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355219901722923721990 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:10:02', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061410037041722924603704', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"04-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408197431722924499743\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000041\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408261631722924506163\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000018\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408393811722924519381\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000032\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409110721722924551072\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409173701722924557370\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409240211722924564021\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409302851722924570285\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409364521722924576452\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000086\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409428101722924582810\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409494621722924589462\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355219901722923721990 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:10:04', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061410057021722924605702', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"04-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408197431722924499743\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000041\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408261631722924506163\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000018\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408393811722924519381\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000032\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409110721722924551072\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409173701722924557370\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409240211722924564021\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409302851722924570285\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409364521722924576452\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000086\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409428101722924582810\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409494621722924589462\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355219901722923721990 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:10:06', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061410077131722924607713', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"04-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408197431722924499743\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000041\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408261631722924506163\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000018\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408393811722924519381\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000032\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409110721722924551072\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409173701722924557370\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409240211722924564021\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409302851722924570285\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409364521722924576452\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000086\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409428101722924582810\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409494621722924589462\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355219901722923721990 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:10:08', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061410097181722924609718', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"04-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408197431722924499743\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000041\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408261631722924506163\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000018\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408393811722924519381\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000032\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409110721722924551072\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409173701722924557370\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409240211722924564021\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409302851722924570285\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409364521722924576452\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000086\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409428101722924582810\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409494621722924589462\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355219901722923721990 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:10:10', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061410117361722924611736', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"04-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408197431722924499743\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000041\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408261631722924506163\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000018\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408393811722924519381\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000032\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409110721722924551072\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409173701722924557370\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409240211722924564021\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409302851722924570285\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409364521722924576452\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000086\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409428101722924582810\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409494621722924589462\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355219901722923721990 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:10:12', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061410121791722924612179', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000053\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '10.90.106.61', '2024-08-06 14:10:12', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061410137991722924613799', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"04-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408197431722924499743\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000041\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408261631722924506163\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000018\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408393811722924519381\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000032\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409110721722924551072\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409173701722924557370\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409240211722924564021\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409302851722924570285\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409364521722924576452\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000086\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409428101722924582810\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409494621722924589462\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355219901722923721990 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:10:14', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061410157531722924615753', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"04-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408197431722924499743\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000041\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408261631722924506163\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000018\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408393811722924519381\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000032\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409110721722924551072\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409173701722924557370\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409240211722924564021\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409302851722924570285\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409364521722924576452\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000086\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409428101722924582810\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409494621722924589462\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355219901722923721990 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:10:16', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061410177601722924617760', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"04-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408197431722924499743\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000041\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408261631722924506163\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000018\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408393811722924519381\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000032\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409110721722924551072\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409173701722924557370\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409240211722924564021\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409302851722924570285\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409364521722924576452\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000086\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409428101722924582810\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409494621722924589462\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355219901722923721990 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:10:18', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061410188831722924618883', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000025\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '10.90.106.61', '2024-08-06 14:10:19', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061410197621722924619762', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"04-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408197431722924499743\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000041\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408261631722924506163\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000018\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408393811722924519381\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000032\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409110721722924551072\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409173701722924557370\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409240211722924564021\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409302851722924570285\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409364521722924576452\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000086\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409428101722924582810\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409494621722924589462\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355219901722923721990 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:10:20', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061410218031722924621803', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"04-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408197431722924499743\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000041\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408261631722924506163\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000018\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408393811722924519381\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000032\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409110721722924551072\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409173701722924557370\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409240211722924564021\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409302851722924570285\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409364521722924576452\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000086\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409428101722924582810\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409494621722924589462\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355219901722923721990 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:10:22', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061410238131722924623813', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"04-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408197431722924499743\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000041\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408261631722924506163\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000018\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408393811722924519381\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000032\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409110721722924551072\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409173701722924557370\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409240211722924564021\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409302851722924570285\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409364521722924576452\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000086\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409428101722924582810\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409494621722924589462\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355219901722923721990 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:10:24', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061410257911722924625791', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"04-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408197431722924499743\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000041\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408261631722924506163\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000018\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408393811722924519381\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000032\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409110721722924551072\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409173701722924557370\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409240211722924564021\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409302851722924570285\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409364521722924576452\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000086\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409428101722924582810\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409494621722924589462\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355219901722923721990 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:10:26', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061410277821722924627782', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"04-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408197431722924499743\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000041\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408261631722924506163\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000018\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408393811722924519381\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000032\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409110721722924551072\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409173701722924557370\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409240211722924564021\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409302851722924570285\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409364521722924576452\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000086\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409428101722924582810\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409494621722924589462\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355219901722923721990\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000070\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355219901722923721990 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:10:28', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061410298161722924629816', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"04-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408197431722924499743\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000041\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408261631722924506163\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000018\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408393811722924519381\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000032\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409110721722924551072\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409173701722924557370\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409240211722924564021\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409302851722924570285\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409364521722924576452\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000086\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409428101722924582810\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409494621722924589462\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355220031722923722003 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:10:30', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061410318161722924631816', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"04-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408197431722924499743\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000041\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408261631722924506163\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000018\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408393811722924519381\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000032\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409110721722924551072\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409173701722924557370\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409240211722924564021\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409302851722924570285\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409364521722924576452\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000086\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409428101722924582810\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409494621722924589462\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355220031722923722003 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:10:32', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061410319451722924631945', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000048\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '10.90.106.61', '2024-08-06 14:10:32', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061410338291722924633829', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"04-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408197431722924499743\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000041\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408261631722924506163\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000018\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408393811722924519381\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000032\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409110721722924551072\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409173701722924557370\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409240211722924564021\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409302851722924570285\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409364521722924576452\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000086\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409428101722924582810\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409494621722924589462\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355220031722923722003 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:10:34', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061410341891722924634189', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000047\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '10.90.106.61', '2024-08-06 14:10:34', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061410359021722924635902', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"04-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408197431722924499743\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000041\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408261631722924506163\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000018\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408393811722924519381\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000032\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409110721722924551072\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409173701722924557370\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409240211722924564021\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409302851722924570285\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409364521722924576452\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000086\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409428101722924582810\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409494621722924589462\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061410341861722924634186\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355220031722923722003 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:10:36', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061410378801722924637880', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"04-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408197431722924499743\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000041\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408261631722924506163\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000018\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408393811722924519381\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000032\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409110721722924551072\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409173701722924557370\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409240211722924564021\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409302851722924570285\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409364521722924576452\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000086\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409428101722924582810\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409494621722924589462\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061410341861722924634186\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355220031722923722003 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:10:38', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061410398771722924639877', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"04-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408197431722924499743\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000041\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408261631722924506163\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000018\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408393811722924519381\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000032\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409110721722924551072\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409173701722924557370\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409240211722924564021\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409302851722924570285\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409364521722924576452\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000086\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409428101722924582810\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409494621722924589462\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061410341861722924634186\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355220031722923722003 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:10:40', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061410403951722924640395', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000029\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '10.90.106.61', '2024-08-06 14:10:40', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061410418541722924641854', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"04-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408197431722924499743\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000041\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408261631722924506163\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000018\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408393811722924519381\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000032\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409110721722924551072\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409173701722924557370\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409240211722924564021\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409302851722924570285\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409364521722924576452\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000086\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409428101722924582810\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409494621722924589462\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061410341861722924634186\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355220031722923722003 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:10:42', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061410438361722924643836', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"04-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408197431722924499743\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000041\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408261631722924506163\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000018\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408393811722924519381\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000032\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409110721722924551072\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409173701722924557370\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409240211722924564021\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409302851722924570285\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409364521722924576452\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000086\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409428101722924582810\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409494621722924589462\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061410341861722924634186\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355220031722923722003 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:10:44', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061410458401722924645840', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"04-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408197431722924499743\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000041\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408261631722924506163\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000018\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408393811722924519381\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000032\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409110721722924551072\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409173701722924557370\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409240211722924564021\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409302851722924570285\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409364521722924576452\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000086\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409428101722924582810\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409494621722924589462\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061410341861722924634186\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220031722923722003\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355220031722923722003 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:10:46', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061410467931722924646793', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000041\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '10.90.106.61', '2024-08-06 14:10:47', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061410478471722924647847', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"04-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408197431722924499743\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000041\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408261631722924506163\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000018\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408393811722924519381\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000032\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409110721722924551072\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409173701722924557370\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409240211722924564021\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409302851722924570285\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409364521722924576452\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000086\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409428101722924582810\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409494621722924589462\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061410341861722924634186\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355220401722923722040 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:10:48', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061410498481722924649848', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"04-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408197431722924499743\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000041\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408261631722924506163\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000018\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408393811722924519381\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000032\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409110721722924551072\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409173701722924557370\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409240211722924564021\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409302851722924570285\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409364521722924576452\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000086\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409428101722924582810\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409494621722924589462\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061410341861722924634186\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355220401722923722040 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:10:50', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061410518861722924651886', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"04-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408197431722924499743\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000041\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408261631722924506163\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000018\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408393811722924519381\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000032\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409110721722924551072\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409173701722924557370\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409240211722924564021\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409302851722924570285\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409364521722924576452\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000086\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409428101722924582810\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409494621722924589462\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061410341861722924634186\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355220401722923722040 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:10:52', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061410531711722924653171', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000018\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '10.90.106.61', '2024-08-06 14:10:53', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061410538841722924653884', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"04-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408197431722924499743\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000041\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408261631722924506163\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000018\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408393811722924519381\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000032\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409110721722924551072\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409173701722924557370\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409240211722924564021\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409302851722924570285\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409364521722924576452\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000086\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409428101722924582810\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409494621722924589462\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061410341861722924634186\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355220401722923722040 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:10:54', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061410558611722924655861', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"04-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408197431722924499743\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000041\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408261631722924506163\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000018\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408393811722924519381\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000032\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409110721722924551072\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409173701722924557370\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409240211722924564021\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409302851722924570285\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409364521722924576452\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000086\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409428101722924582810\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409494621722924589462\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061410341861722924634186\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355220401722923722040 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:10:56', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061410579151722924657915', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"04-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408197431722924499743\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000041\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408261631722924506163\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000018\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408393811722924519381\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000032\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409110721722924551072\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409173701722924557370\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409240211722924564021\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409302851722924570285\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409364521722924576452\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000086\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409428101722924582810\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409494621722924589462\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061410341861722924634186\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355220401722923722040 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:10:58', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061410593111722924659311', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000040\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '10.90.106.61', '2024-08-06 14:10:59', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061410598741722924659874', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"04-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408197431722924499743\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000041\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408261631722924506163\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000018\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408393811722924519381\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000032\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409110721722924551072\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409173701722924557370\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409240211722924564021\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409302851722924570285\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409364521722924576452\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000086\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409428101722924582810\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409494621722924589462\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061410341861722924634186\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355220401722923722040 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:11:00', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061411018881722924661888', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"04-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408197431722924499743\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000041\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408261631722924506163\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000018\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408393811722924519381\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000032\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409110721722924551072\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409173701722924557370\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409240211722924564021\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409302851722924570285\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409364521722924576452\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000086\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409428101722924582810\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409494621722924589462\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061410341861722924634186\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220401722923722040\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355220401722923722040 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:11:02', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061411039121722924663912', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"04-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408197431722924499743\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000041\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408261631722924506163\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000018\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408393811722924519381\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000032\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409110721722924551072\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409173701722924557370\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409240211722924564021\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409302851722924570285\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409364521722924576452\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000086\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409428101722924582810\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409494621722924589462\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061410341861722924634186\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355220471722923722047 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:11:04', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061411058821722924665882', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000032\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '10.90.106.61', '2024-08-06 14:11:06', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061411059321722924665932', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"04-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408197431722924499743\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000041\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408261631722924506163\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000018\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408393811722924519381\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000032\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409110721722924551072\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409173701722924557370\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409240211722924564021\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409302851722924570285\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409364521722924576452\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000086\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409428101722924582810\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409494621722924589462\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061410341861722924634186\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355220471722923722047 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:11:06', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061411079081722924667908', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"04-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408197431722924499743\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000041\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408261631722924506163\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000018\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408393811722924519381\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000032\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409110721722924551072\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409173701722924557370\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409240211722924564021\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409302851722924570285\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409364521722924576452\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000086\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409428101722924582810\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409494621722924589462\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061410341861722924634186\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355220471722923722047 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:11:08', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061411099341722924669934', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"04-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408197431722924499743\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000041\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408261631722924506163\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000018\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408393811722924519381\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000032\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409110721722924551072\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409173701722924557370\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409240211722924564021\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409302851722924570285\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409364521722924576452\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000086\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409428101722924582810\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409494621722924589462\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061410341861722924634186\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355220471722923722047 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:11:10', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061411119371722924671937', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"04-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408197431722924499743\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000041\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408261631722924506163\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000018\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408393811722924519381\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000032\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409110721722924551072\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409173701722924557370\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409240211722924564021\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409302851722924570285\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409364521722924576452\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000086\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409428101722924582810\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409494621722924589462\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061410341861722924634186\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355220471722923722047 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:11:12', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061411126111722924672611', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000085\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '10.90.106.61', '2024-08-06 14:11:13', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061411139481722924673948', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"04-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408197431722924499743\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000041\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408261631722924506163\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000018\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408393811722924519381\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000032\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409110721722924551072\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409173701722924557370\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409240211722924564021\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409302851722924570285\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409364521722924576452\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000086\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409428101722924582810\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409494621722924589462\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061410341861722924634186\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355220471722923722047 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:11:14', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061411159721722924675972', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"04-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408197431722924499743\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000041\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408261631722924506163\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000018\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408393811722924519381\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000032\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409110721722924551072\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409173701722924557370\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409240211722924564021\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409302851722924570285\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409364521722924576452\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000086\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409428101722924582810\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409494621722924589462\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061410341861722924634186\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355220471722923722047 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:11:16', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061411179611722924677961', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"04-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408197431722924499743\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000041\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408261631722924506163\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000018\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408393811722924519381\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000032\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409110721722924551072\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409173701722924557370\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409240211722924564021\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409302851722924570285\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409364521722924576452\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000086\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409428101722924582810\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409494621722924589462\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061410341861722924634186\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355220471722923722047 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:11:18', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061411185571722924678557', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000031\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '10.90.106.61', '2024-08-06 14:11:19', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061411199701722924679970', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"04-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408197431722924499743\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000041\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408261631722924506163\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000018\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408393811722924519381\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000032\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409110721722924551072\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409173701722924557370\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409240211722924564021\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409302851722924570285\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409364521722924576452\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000086\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409428101722924582810\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409494621722924589462\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061410341861722924634186\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355220471722923722047 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:11:20', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061411218631722924681863', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000010\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '10.90.106.61', '2024-08-06 14:11:22', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061411220431722924682043', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"04-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408197431722924499743\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000041\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408261631722924506163\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000018\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408393811722924519381\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000032\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409110721722924551072\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409173701722924557370\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409240211722924564021\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409302851722924570285\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409364521722924576452\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000086\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409428101722924582810\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409494621722924589462\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061410341861722924634186\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355220471722923722047 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:11:22', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061411240641722924684064', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"04-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408197431722924499743\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000041\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408261631722924506163\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000018\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408393811722924519381\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000032\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409110721722924551072\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409173701722924557370\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409240211722924564021\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409302851722924570285\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409364521722924576452\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000086\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409428101722924582810\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409494621722924589462\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061410341861722924634186\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355220471722923722047 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:11:24', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061411256641722924685664', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000074\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '10.90.106.61', '2024-08-06 14:11:26', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061411260131722924686013', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"04-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408197431722924499743\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000041\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408261631722924506163\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000018\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408393811722924519381\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000032\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409110721722924551072\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409173701722924557370\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409240211722924564021\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409302851722924570285\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409364521722924576452\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000086\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409428101722924582810\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409494621722924589462\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061410341861722924634186\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355220471722923722047 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:11:26', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061411280061722924688006', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"04-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408197431722924499743\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000041\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408261631722924506163\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000018\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408393811722924519381\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000032\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409110721722924551072\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409173701722924557370\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409240211722924564021\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409302851722924570285\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409364521722924576452\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000086\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409428101722924582810\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409494621722924589462\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061410341861722924634186\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355220471722923722047 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:11:28', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061411300011722924690001', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"04-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408197431722924499743\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000041\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408261631722924506163\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000018\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408393811722924519381\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000032\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409110721722924551072\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409173701722924557370\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409240211722924564021\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409302851722924570285\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409364521722924576452\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000086\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409428101722924582810\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409494621722924589462\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061410341861722924634186\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355220471722923722047 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:11:30', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061411313231722924691323', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000073\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '10.90.106.61', '2024-08-06 14:11:31', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061411320241722924692024', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"04-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408197431722924499743\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000041\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408261631722924506163\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000018\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408393811722924519381\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000032\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409110721722924551072\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409173701722924557370\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409240211722924564021\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409302851722924570285\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409364521722924576452\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000086\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409428101722924582810\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409494621722924589462\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061410341861722924634186\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355220471722923722047 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:11:32', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061411340241722924694024', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"04-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408197431722924499743\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000041\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408261631722924506163\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000018\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408393811722924519381\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000032\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409110721722924551072\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409173701722924557370\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409240211722924564021\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409302851722924570285\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409364521722924576452\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000086\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409428101722924582810\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409494621722924589462\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061410341861722924634186\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355220471722923722047 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:11:34', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061411360311722924696031', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"04-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408197431722924499743\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000041\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408261631722924506163\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000018\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408393811722924519381\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000032\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409110721722924551072\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409173701722924557370\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409240211722924564021\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409302851722924570285\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409364521722924576452\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000086\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409428101722924582810\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409494621722924589462\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061410341861722924634186\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355220471722923722047 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:11:36', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061411379091722924697909', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000056\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '10.90.106.61', '2024-08-06 14:11:38', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061411380491722924698049', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"04-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408197431722924499743\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000041\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408261631722924506163\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000018\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408393811722924519381\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000032\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409110721722924551072\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409173701722924557370\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409240211722924564021\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409302851722924570285\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409364521722924576452\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000086\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409428101722924582810\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409494621722924589462\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061410341861722924634186\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355220471722923722047 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:11:38', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061411400531722924700053', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"04-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408197431722924499743\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000041\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408261631722924506163\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000018\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408393811722924519381\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000032\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409110721722924551072\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409173701722924557370\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409240211722924564021\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409302851722924570285\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409364521722924576452\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000086\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409428101722924582810\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409494621722924589462\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061410341861722924634186\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355220471722923722047 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:11:40', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061411420701722924702070', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"04-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408197431722924499743\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000041\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408261631722924506163\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000018\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408393811722924519381\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000032\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409110721722924551072\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409173701722924557370\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409240211722924564021\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409302851722924570285\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409364521722924576452\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000086\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409428101722924582810\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409494621722924589462\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061410341861722924634186\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355220471722923722047 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:11:42', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061411440431722924704043', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"04-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408197431722924499743\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000041\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408261631722924506163\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000018\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408393811722924519381\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000032\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409110721722924551072\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409173701722924557370\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409240211722924564021\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409302851722924570285\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409364521722924576452\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000086\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409428101722924582810\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409494621722924589462\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061410341861722924634186\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355220471722923722047 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:11:44', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061411442041722924704204', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000035\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '10.90.106.61', '2024-08-06 14:11:44', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061411460401722924706040', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"04-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408197431722924499743\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000041\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408261631722924506163\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000018\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408393811722924519381\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000032\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409110721722924551072\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409173701722924557370\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409240211722924564021\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409302851722924570285\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409364521722924576452\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000086\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409428101722924582810\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409494621722924589462\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061410341861722924634186\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355220471722923722047 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:11:46', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061411480331722924708033', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"04-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408197431722924499743\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000041\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408261631722924506163\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000018\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408393811722924519381\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000032\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409110721722924551072\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409173701722924557370\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409240211722924564021\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409302851722924570285\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409364521722924576452\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000086\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409428101722924582810\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409494621722924589462\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061410341861722924634186\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355220471722923722047 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:11:48', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061411500541722924710054', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"04-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408197431722924499743\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000041\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408261631722924506163\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000018\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408393811722924519381\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000032\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409110721722924551072\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409173701722924557370\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409240211722924564021\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409302851722924570285\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409364521722924576452\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000086\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409428101722924582810\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409494621722924589462\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061410341861722924634186\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355220471722923722047 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:11:50', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061411504001722924710400', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000086\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '10.90.106.61', '2024-08-06 14:11:50', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061411520331722924712033', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"04-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408197431722924499743\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000041\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408261631722924506163\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000018\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408393811722924519381\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000032\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409110721722924551072\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409173701722924557370\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409240211722924564021\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409302851722924570285\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409364521722924576452\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000086\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409428101722924582810\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409494621722924589462\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061410341861722924634186\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355220471722923722047 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:11:52', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061411540791722924714079', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"04-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408197431722924499743\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000041\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408261631722924506163\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000018\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408393811722924519381\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000032\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409110721722924551072\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409173701722924557370\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409240211722924564021\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409302851722924570285\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409364521722924576452\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000086\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409428101722924582810\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409494621722924589462\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061410341861722924634186\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355220471722923722047 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:11:54', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061411560391722924716039', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"04-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408197431722924499743\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000041\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408261631722924506163\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000018\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408393811722924519381\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000032\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409110721722924551072\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409173701722924557370\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409240211722924564021\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409302851722924570285\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409364521722924576452\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000086\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409428101722924582810\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409494621722924589462\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061410341861722924634186\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355220471722923722047 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:11:56', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061411567601722924716760', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000068\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '10.90.106.61', '2024-08-06 14:11:57', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061411580351722924718035', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"04-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408197431722924499743\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000041\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408261631722924506163\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000018\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408393811722924519381\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000032\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409110721722924551072\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409173701722924557370\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409240211722924564021\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409302851722924570285\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409364521722924576452\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000086\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409428101722924582810\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409494621722924589462\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061410341861722924634186\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355220471722923722047 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:11:58', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061412001021722924720102', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"04-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408197431722924499743\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000041\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408261631722924506163\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000018\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408393811722924519381\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000032\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409110721722924551072\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409173701722924557370\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409240211722924564021\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409302851722924570285\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409364521722924576452\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000086\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409428101722924582810\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409494621722924589462\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061410341861722924634186\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355220471722923722047 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:12:00', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061412020541722924722054', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"04-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408197431722924499743\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000041\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408261631722924506163\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000018\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408393811722924519381\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000032\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409110721722924551072\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409173701722924557370\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409240211722924564021\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409302851722924570285\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409364521722924576452\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000086\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409428101722924582810\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409494621722924589462\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061410341861722924634186\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355220471722923722047 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:12:02', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061412033241722924723324', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000026\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '10.90.106.61', '2024-08-06 14:12:03', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061412040431722924724043', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"04-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408197431722924499743\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000041\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408261631722924506163\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000018\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408393811722924519381\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000032\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409110721722924551072\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409173701722924557370\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409240211722924564021\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409302851722924570285\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409364521722924576452\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000086\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409428101722924582810\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409494621722924589462\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061410341861722924634186\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355220471722923722047 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:12:04', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061412060481722924726048', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"04-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408197431722924499743\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000041\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408261631722924506163\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000018\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408393811722924519381\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000032\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409110721722924551072\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409173701722924557370\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409240211722924564021\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409302851722924570285\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409364521722924576452\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000086\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409428101722924582810\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409494621722924589462\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061410341861722924634186\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355220471722923722047 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:12:06', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061412080451722924728045', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"04-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408197431722924499743\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000041\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408261631722924506163\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000018\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408393811722924519381\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000032\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409110721722924551072\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409173701722924557370\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409240211722924564021\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409302851722924570285\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409364521722924576452\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000086\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409428101722924582810\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409494621722924589462\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061410341861722924634186\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355220471722923722047 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:12:08', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061412096241722924729624', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000077\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '10.90.106.61', '2024-08-06 14:12:10', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061412100471722924730047', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"04-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408197431722924499743\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000041\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408261631722924506163\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000018\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408393811722924519381\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000032\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409110721722924551072\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409173701722924557370\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409240211722924564021\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409302851722924570285\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409364521722924576452\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000086\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409428101722924582810\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409494621722924589462\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061410341861722924634186\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355220471722923722047 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:12:10', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061412120421722924732042', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"04-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408197431722924499743\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000041\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408261631722924506163\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000018\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408393811722924519381\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000032\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409110721722924551072\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409173701722924557370\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409240211722924564021\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409302851722924570285\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409364521722924576452\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000086\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409428101722924582810\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409494621722924589462\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061410341861722924634186\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355220471722923722047 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:12:12', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061412140431722924734043', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"04-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408197431722924499743\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000041\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408261631722924506163\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000018\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408393811722924519381\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000032\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409110721722924551072\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409173701722924557370\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409240211722924564021\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409302851722924570285\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409364521722924576452\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000086\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409428101722924582810\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409494621722924589462\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061410341861722924634186\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355220471722923722047 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:12:14', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061412159621722924735962', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000053\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '10.90.106.61', '2024-08-06 14:12:16', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061412160421722924736042', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"04-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408197431722924499743\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000041\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408261631722924506163\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000018\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408393811722924519381\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000032\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409110721722924551072\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409173701722924557370\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409240211722924564021\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409302851722924570285\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409364521722924576452\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000086\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409428101722924582810\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409494621722924589462\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061410341861722924634186\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355220471722923722047 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:12:16', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061412180991722924738099', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"04-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408197431722924499743\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000041\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408261631722924506163\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000018\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408393811722924519381\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000032\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409110721722924551072\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409173701722924557370\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409240211722924564021\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409302851722924570285\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409364521722924576452\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000086\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409428101722924582810\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409494621722924589462\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061410341861722924634186\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355220471722923722047 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:12:18', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061412200561722924740056', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"04-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408197431722924499743\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000041\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408261631722924506163\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000018\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408393811722924519381\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000032\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409110721722924551072\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409173701722924557370\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409240211722924564021\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409302851722924570285\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409364521722924576452\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000086\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409428101722924582810\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409494621722924589462\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061410341861722924634186\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355220471722923722047 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:12:20', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061412220301722924742030', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"04-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408197431722924499743\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000041\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408261631722924506163\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000018\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408393811722924519381\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000032\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409110721722924551072\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409173701722924557370\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409240211722924564021\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409302851722924570285\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409364521722924576452\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000086\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409428101722924582810\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409494621722924589462\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061410341861722924634186\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355220471722923722047 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:12:22', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061412224891722924742489', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000025\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '10.90.106.61', '2024-08-06 14:12:22', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061412240501722924744050', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"04-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408197431722924499743\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000041\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408261631722924506163\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000018\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408393811722924519381\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000032\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409110721722924551072\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409173701722924557370\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409240211722924564021\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409302851722924570285\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409364521722924576452\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000086\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409428101722924582810\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409494621722924589462\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061410341861722924634186\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355220471722923722047 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:12:24', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061412260461722924746046', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"04-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408197431722924499743\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000041\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408261631722924506163\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000018\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408393811722924519381\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000032\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409110721722924551072\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409173701722924557370\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409240211722924564021\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409302851722924570285\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409364521722924576452\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000086\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409428101722924582810\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409494621722924589462\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061410341861722924634186\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355220471722923722047 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:12:26', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061412280521722924748052', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"04-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408197431722924499743\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000041\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408261631722924506163\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000018\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408393811722924519381\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000032\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409110721722924551072\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409173701722924557370\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409240211722924564021\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409302851722924570285\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409364521722924576452\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000086\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409428101722924582810\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409494621722924589462\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061410341861722924634186\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355220471722923722047 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:12:28', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061412287931722924748793', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000048\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '10.90.106.61', '2024-08-06 14:12:29', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061412300551722924750055', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"04-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408197431722924499743\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000041\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408261631722924506163\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000018\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408393811722924519381\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000032\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409110721722924551072\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409173701722924557370\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409240211722924564021\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409302851722924570285\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409364521722924576452\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000086\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409428101722924582810\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409494621722924589462\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061410341861722924634186\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355220471722923722047 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:12:30', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061412320731722924752073', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"04-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408197431722924499743\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000041\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408261631722924506163\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000018\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408393811722924519381\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000032\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409110721722924551072\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409173701722924557370\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409240211722924564021\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409302851722924570285\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409364521722924576452\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000086\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409428101722924582810\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409494621722924589462\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061410341861722924634186\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355220471722923722047 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:12:32', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061412340701722924754070', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"04-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408197431722924499743\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000041\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408261631722924506163\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000018\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408393811722924519381\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000032\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409110721722924551072\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409173701722924557370\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409240211722924564021\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409302851722924570285\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409364521722924576452\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000086\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409428101722924582810\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409494621722924589462\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061410341861722924634186\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355220471722923722047 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:12:34', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061412360471722924756047', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"04-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408197431722924499743\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000041\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408261631722924506163\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000018\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408393811722924519381\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000032\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409110721722924551072\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409173701722924557370\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409240211722924564021\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409302851722924570285\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409364521722924576452\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000086\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409428101722924582810\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409494621722924589462\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061410341861722924634186\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355220471722923722047 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:12:36', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061412381281722924758128', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"04-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408197431722924499743\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000041\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408261631722924506163\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000018\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408393811722924519381\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000032\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409110721722924551072\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409173701722924557370\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409240211722924564021\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409302851722924570285\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409364521722924576452\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000086\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409428101722924582810\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409494621722924589462\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061410341861722924634186\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355220471722923722047 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:12:38', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061412400681722924760068', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"04-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408197431722924499743\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000041\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408261631722924506163\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000018\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408393811722924519381\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000032\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409110721722924551072\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409173701722924557370\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409240211722924564021\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409302851722924570285\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409364521722924576452\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000086\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409428101722924582810\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409494621722924589462\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061410341861722924634186\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355220471722923722047 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:12:40', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061412413361722924761336', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000029\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '10.90.106.61', '2024-08-06 14:12:41', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061412420791722924762079', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"04-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408197431722924499743\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000041\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408261631722924506163\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000018\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408393811722924519381\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000032\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409110721722924551072\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409173701722924557370\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409240211722924564021\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409302851722924570285\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409364521722924576452\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000086\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409428101722924582810\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409494621722924589462\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061410341861722924634186\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355220471722923722047 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:12:42', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061412440481722924764048', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000083\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '10.90.106.61', '2024-08-06 14:12:44', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061412440671722924764067', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"04-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408197431722924499743\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000041\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408261631722924506163\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000018\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408393811722924519381\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000032\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409110721722924551072\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409173701722924557370\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409240211722924564021\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409302851722924570285\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409364521722924576452\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000086\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409428101722924582810\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409494621722924589462\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061410341861722924634186\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355220471722923722047 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:12:44', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061412460761722924766076', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"04-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408197431722924499743\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000041\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408261631722924506163\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000018\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408393811722924519381\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000032\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409110721722924551072\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409173701722924557370\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409240211722924564021\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409302851722924570285\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409364521722924576452\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000086\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409428101722924582810\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409494621722924589462\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061410341861722924634186\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355220471722923722047 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:12:46', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061412481191722924768119', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"04-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408197431722924499743\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000041\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408261631722924506163\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000018\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408393811722924519381\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000032\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409110721722924551072\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409173701722924557370\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409240211722924564021\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409302851722924570285\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409364521722924576452\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000086\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409428101722924582810\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409494621722924589462\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061410341861722924634186\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355220471722923722047 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:12:48', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061412500881722924770088', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"04-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408197431722924499743\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000041\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408261631722924506163\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000018\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408393811722924519381\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000032\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409110721722924551072\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409173701722924557370\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409240211722924564021\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409302851722924570285\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409364521722924576452\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000086\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409428101722924582810\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409494621722924589462\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061410341861722924634186\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355220471722923722047 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:12:50', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061412503581722924770358', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000018\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '10.90.106.61', '2024-08-06 14:12:50', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061412512621722924771262', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000198\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '10.90.106.61', '2024-08-06 14:12:51', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061412521331722924772133', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"04-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408197431722924499743\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000041\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408261631722924506163\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000018\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408393811722924519381\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000032\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409110721722924551072\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409173701722924557370\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409240211722924564021\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409302851722924570285\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409364521722924576452\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000086\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409428101722924582810\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409494621722924589462\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061410341861722924634186\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355220471722923722047 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:12:52', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061412540621722924774062', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"04-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408197431722924499743\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000041\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408261631722924506163\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000018\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408393811722924519381\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000032\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409110721722924551072\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409173701722924557370\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409240211722924564021\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409302851722924570285\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409364521722924576452\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000086\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409428101722924582810\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409494621722924589462\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061410341861722924634186\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355220471722923722047 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:12:54', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061412560861722924776086', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"04-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408197431722924499743\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000041\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408261631722924506163\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000018\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408393811722924519381\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000032\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409110721722924551072\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409173701722924557370\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409240211722924564021\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409302851722924570285\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409364521722924576452\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000086\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409428101722924582810\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409494621722924589462\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061410341861722924634186\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355220471722923722047 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:12:56', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061412570651722924777065', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000040\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '10.90.106.61', '2024-08-06 14:12:57', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061412580641722924778064', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"04-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408197431722924499743\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000041\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408261631722924506163\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000018\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408393811722924519381\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000032\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409110721722924551072\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409173701722924557370\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409240211722924564021\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409302851722924570285\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409364521722924576452\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000086\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409428101722924582810\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409494621722924589462\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061410341861722924634186\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355220471722923722047 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:12:58', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061413000671722924780067', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"04-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408197431722924499743\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000041\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408261631722924506163\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000018\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408393811722924519381\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000032\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409110721722924551072\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409173701722924557370\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409240211722924564021\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409302851722924570285\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409364521722924576452\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000086\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409428101722924582810\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409494621722924589462\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061410341861722924634186\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355220471722923722047 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:13:00', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061413020701722924782070', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"04-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408197431722924499743\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000041\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408261631722924506163\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000018\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408393811722924519381\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000032\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409110721722924551072\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409173701722924557370\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409240211722924564021\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409302851722924570285\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409364521722924576452\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000086\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409428101722924582810\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409494621722924589462\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061410341861722924634186\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355220471722923722047 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:13:02', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061413032261722924783226', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000032\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '10.90.106.61', '2024-08-06 14:13:03', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061413040711722924784071', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"04-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408197431722924499743\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000041\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408261631722924506163\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000018\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408393811722924519381\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000032\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409110721722924551072\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409173701722924557370\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409240211722924564021\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409302851722924570285\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409364521722924576452\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000086\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409428101722924582810\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409494621722924589462\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061410341861722924634186\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355220471722923722047 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:13:04', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061413060741722924786074', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"04-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408197431722924499743\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000041\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408261631722924506163\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000018\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408393811722924519381\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000032\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409110721722924551072\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409173701722924557370\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409240211722924564021\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409302851722924570285\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409364521722924576452\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000086\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409428101722924582810\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409494621722924589462\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061410341861722924634186\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355220471722923722047 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:13:06', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061413080521722924788052', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"04-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408197431722924499743\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000041\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408261631722924506163\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000018\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408393811722924519381\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000032\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409110721722924551072\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409173701722924557370\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409240211722924564021\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409302851722924570285\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409364521722924576452\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000086\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409428101722924582810\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409494621722924589462\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061410341861722924634186\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355220471722923722047 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:13:08', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061413097471722924789747', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000085\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '10.90.106.61', '2024-08-06 14:13:10', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061413101091722924790109', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"04-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408197431722924499743\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000041\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408261631722924506163\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000018\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408393811722924519381\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000032\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409110721722924551072\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409173701722924557370\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409240211722924564021\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409302851722924570285\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409364521722924576452\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000086\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409428101722924582810\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409494621722924589462\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061410341861722924634186\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355220471722923722047 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:13:10', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061413120981722924792098', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"04-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408197431722924499743\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000041\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408261631722924506163\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000018\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408393811722924519381\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000032\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409110721722924551072\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409173701722924557370\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409240211722924564021\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409302851722924570285\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409364521722924576452\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000086\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409428101722924582810\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409494621722924589462\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061410341861722924634186\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355220471722923722047 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:13:12', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061413141081722924794108', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"04-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408197431722924499743\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000041\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408261631722924506163\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000018\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408393811722924519381\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000032\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409110721722924551072\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409173701722924557370\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409240211722924564021\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409302851722924570285\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409364521722924576452\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000086\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409428101722924582810\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409494621722924589462\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061410341861722924634186\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355220471722923722047 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:13:14', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061413156401722924795640', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000031\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '10.90.106.61', '2024-08-06 14:13:16', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061413160691722924796069', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"04-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408197431722924499743\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000041\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408261631722924506163\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000018\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408393811722924519381\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000032\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409110721722924551072\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409173701722924557370\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409240211722924564021\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409302851722924570285\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409364521722924576452\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000086\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409428101722924582810\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409494621722924589462\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061410341861722924634186\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355220471722923722047 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:13:16', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061413180571722924798057', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"04-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408197431722924499743\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000041\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408261631722924506163\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000018\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408393811722924519381\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000032\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409110721722924551072\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409173701722924557370\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409240211722924564021\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409302851722924570285\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409364521722924576452\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000086\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409428101722924582810\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409494621722924589462\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061410341861722924634186\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355220471722923722047 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:13:18', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061413200781722924800078', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"04-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408197431722924499743\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000041\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408261631722924506163\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000018\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408393811722924519381\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000032\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409110721722924551072\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409173701722924557370\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409240211722924564021\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409302851722924570285\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409364521722924576452\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000086\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409428101722924582810\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409494621722924589462\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061410341861722924634186\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355220471722923722047 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:13:20', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061413220731722924802073', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"04-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408197431722924499743\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000041\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408261631722924506163\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000018\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408393811722924519381\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000032\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409110721722924551072\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409173701722924557370\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409240211722924564021\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409302851722924570285\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409364521722924576452\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000086\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409428101722924582810\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409494621722924589462\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061410341861722924634186\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355220471722923722047 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:13:22', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061413221271722924802127', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000074\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '10.90.106.61', '2024-08-06 14:13:22', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061413240721722924804072', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"04-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408197431722924499743\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000041\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408261631722924506163\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000018\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408393811722924519381\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000032\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409110721722924551072\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409173701722924557370\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409240211722924564021\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409302851722924570285\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409364521722924576452\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000086\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409428101722924582810\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409494621722924589462\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061410341861722924634186\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355220471722923722047 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:13:24', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061413261131722924806113', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"04-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408197431722924499743\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000041\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408261631722924506163\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000018\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408393811722924519381\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000032\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409110721722924551072\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409173701722924557370\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409240211722924564021\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409302851722924570285\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409364521722924576452\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000086\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409428101722924582810\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409494621722924589462\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061410341861722924634186\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355220471722923722047 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:13:26', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061413280711722924808071', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"04-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408197431722924499743\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000041\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408261631722924506163\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000018\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408393811722924519381\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000032\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409110721722924551072\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409173701722924557370\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409240211722924564021\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409302851722924570285\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409364521722924576452\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000086\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409428101722924582810\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409494621722924589462\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061410341861722924634186\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355220471722923722047 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:13:28', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061413283411722924808341', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000073\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '10.90.106.61', '2024-08-06 14:13:28', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061413300961722924810096', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"04-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408197431722924499743\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000041\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408261631722924506163\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000018\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408393811722924519381\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000032\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409110721722924551072\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409173701722924557370\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409240211722924564021\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409302851722924570285\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409364521722924576452\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000086\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409428101722924582810\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409494621722924589462\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061410341861722924634186\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355220471722923722047 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:13:30', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061413320861722924812086', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"04-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408197431722924499743\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000041\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408261631722924506163\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000018\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408393811722924519381\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000032\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409110721722924551072\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409173701722924557370\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409240211722924564021\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409302851722924570285\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409364521722924576452\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000086\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409428101722924582810\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409494621722924589462\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061410341861722924634186\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355220471722923722047 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:13:32', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061413340651722924814065', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"04-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408197431722924499743\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000041\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408261631722924506163\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000018\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408393811722924519381\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000032\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409110721722924551072\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409173701722924557370\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409240211722924564021\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409302851722924570285\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409364521722924576452\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000086\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409428101722924582810\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409494621722924589462\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061410341861722924634186\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355220471722923722047 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:13:34', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061413350881722924815088', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000056\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '10.90.106.61', '2024-08-06 14:13:35', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061413360831722924816083', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"04-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408197431722924499743\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000041\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408261631722924506163\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000018\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408393811722924519381\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000032\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409110721722924551072\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409173701722924557370\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409240211722924564021\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409302851722924570285\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409364521722924576452\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000086\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409428101722924582810\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409494621722924589462\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061410341861722924634186\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355220471722923722047 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:13:36', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061413380771722924818077', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"04-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408197431722924499743\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000041\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408261631722924506163\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000018\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408393811722924519381\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000032\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409110721722924551072\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409173701722924557370\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409240211722924564021\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409302851722924570285\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409364521722924576452\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000086\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409428101722924582810\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409494621722924589462\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061410341861722924634186\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355220471722923722047 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:13:38', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061413400781722924820078', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"04-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408197431722924499743\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000041\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408261631722924506163\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000018\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408393811722924519381\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000032\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409110721722924551072\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409173701722924557370\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409240211722924564021\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409302851722924570285\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409364521722924576452\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000086\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409428101722924582810\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409494621722924589462\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061410341861722924634186\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355220471722923722047 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:13:40', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061413413081722924821308', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000035\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '10.90.106.61', '2024-08-06 14:13:41', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061413420711722924822071', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"04-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408197431722924499743\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000041\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408261631722924506163\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000018\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408393811722924519381\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000032\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409110721722924551072\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409173701722924557370\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409240211722924564021\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409302851722924570285\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409364521722924576452\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000086\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409428101722924582810\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409494621722924589462\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061410341861722924634186\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355220471722923722047 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:13:42', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061413441301722924824130', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"04-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408197431722924499743\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000041\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408261631722924506163\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000018\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408393811722924519381\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000032\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409110721722924551072\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409173701722924557370\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409240211722924564021\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409302851722924570285\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409364521722924576452\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000086\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409428101722924582810\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409494621722924589462\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061410341861722924634186\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355220471722923722047 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:13:44', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061413461311722924826131', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"04-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408197431722924499743\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000041\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408261631722924506163\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000018\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408393811722924519381\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000032\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409110721722924551072\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409173701722924557370\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409240211722924564021\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409302851722924570285\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409364521722924576452\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000086\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409428101722924582810\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409494621722924589462\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061410341861722924634186\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355220471722923722047 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:13:46', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061413476081722924827608', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000086\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '10.90.106.61', '2024-08-06 14:13:48', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061413480901722924828090', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"04-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408197431722924499743\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000041\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408261631722924506163\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000018\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408393811722924519381\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000032\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409110721722924551072\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409173701722924557370\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409240211722924564021\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409302851722924570285\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409364521722924576452\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000086\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409428101722924582810\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409494621722924589462\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061410341861722924634186\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355220471722923722047 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:13:48', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061413501371722924830137', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"04-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408197431722924499743\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000041\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408261631722924506163\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000018\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408393811722924519381\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000032\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409110721722924551072\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409173701722924557370\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409240211722924564021\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409302851722924570285\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409364521722924576452\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000086\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409428101722924582810\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409494621722924589462\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061410341861722924634186\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355220471722923722047 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:13:50', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061413521081722924832108', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"04-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408197431722924499743\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000041\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408261631722924506163\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000018\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408393811722924519381\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000032\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409110721722924551072\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409173701722924557370\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409240211722924564021\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409302851722924570285\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409364521722924576452\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000086\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409428101722924582810\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409494621722924589462\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061410341861722924634186\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355220471722923722047 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:13:52', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061413540711722924834071', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"04-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408197431722924499743\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000041\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408261631722924506163\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000018\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408393811722924519381\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000032\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409110721722924551072\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409173701722924557370\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409240211722924564021\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409302851722924570285\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409364521722924576452\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000086\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409428101722924582810\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409494621722924589462\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061410341861722924634186\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355220471722923722047 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:13:54', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061413543181722924834318', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000068\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '10.90.106.61', '2024-08-06 14:13:54', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061413561521722924836152', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"04-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408197431722924499743\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000041\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408261631722924506163\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000018\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408393811722924519381\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000032\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409110721722924551072\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409173701722924557370\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409240211722924564021\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409302851722924570285\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409364521722924576452\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000086\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409428101722924582810\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409494621722924589462\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061410341861722924634186\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355220471722923722047 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:13:56', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061413580921722924838092', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"04-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408197431722924499743\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000041\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408261631722924506163\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000018\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408393811722924519381\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000032\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409110721722924551072\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409173701722924557370\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409240211722924564021\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409302851722924570285\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409364521722924576452\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000086\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409428101722924582810\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409494621722924589462\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061410341861722924634186\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355220471722923722047 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:13:58', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061414001071722924840107', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"04-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408197431722924499743\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000041\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408261631722924506163\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000018\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408393811722924519381\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000032\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409110721722924551072\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409173701722924557370\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409240211722924564021\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409302851722924570285\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409364521722924576452\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000086\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409428101722924582810\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409494621722924589462\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061410341861722924634186\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355220471722923722047 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:14:00', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061414003591722924840359', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000026\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '10.90.106.61', '2024-08-06 14:14:00', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061414020991722924842099', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"04-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408197431722924499743\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000041\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408261631722924506163\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000018\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408393811722924519381\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000032\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409110721722924551072\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409173701722924557370\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409240211722924564021\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409302851722924570285\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409364521722924576452\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000086\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409428101722924582810\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409494621722924589462\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061410341861722924634186\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355220471722923722047 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:14:02', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061414041551722924844155', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"04-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408197431722924499743\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000041\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408261631722924506163\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000018\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408393811722924519381\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000032\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409110721722924551072\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409173701722924557370\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409240211722924564021\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409302851722924570285\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409364521722924576452\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000086\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409428101722924582810\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409494621722924589462\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061410341861722924634186\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355220471722923722047 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:14:04', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061414061791722924846179', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"04-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408197431722924499743\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000041\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408261631722924506163\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000018\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408393811722924519381\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000032\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409110721722924551072\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409173701722924557370\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409240211722924564021\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409302851722924570285\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409364521722924576452\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000086\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409428101722924582810\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409494621722924589462\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061410341861722924634186\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355220471722923722047 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:14:06', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061414068091722924846809', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000077\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '10.90.106.61', '2024-08-06 14:14:07', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061414081841722924848184', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"04-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408197431722924499743\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000041\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408261631722924506163\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000018\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408393811722924519381\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000032\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409110721722924551072\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409173701722924557370\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409240211722924564021\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409302851722924570285\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409364521722924576452\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000086\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409428101722924582810\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409494621722924589462\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061410341861722924634186\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355220471722923722047 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:14:08', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061414097621722924849762', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061355220631722923722063\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000193\", \"taskStatus\": 100, \"destination\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:14:10', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061414098141722924849814', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061355219511722923721951\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000059\", \"taskStatus\": 100, \"destination\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:14:10', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061414100841722924850084', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061355223561722923722356\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000076\", \"taskStatus\": 2, \"destination\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:14:10', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061414101211722924850121', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"04-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408197431722924499743\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000041\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408261631722924506163\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000018\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408393811722924519381\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000032\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409110721722924551072\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409173701722924557370\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409240211722924564021\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409302851722924570285\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409364521722924576452\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000086\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409428101722924582810\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409494621722924589462\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061410341861722924634186\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"05-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223561722923722356\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355220471722923722047 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:14:10', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061414121091722924852109', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"04-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408197431722924499743\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000041\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408261631722924506163\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000018\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408393811722924519381\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000032\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409110721722924551072\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409173701722924557370\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409240211722924564021\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409302851722924570285\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409364521722924576452\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000086\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409428101722924582810\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409494621722924589462\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061410341861722924634186\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224501722923722450\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355220471722923722047 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:14:12', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061414128021722924852802', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000166\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '10.90.106.61', '2024-08-06 14:14:13', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061414132081722924853208', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061355224501722923722450\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000116\", \"taskStatus\": 2, \"destination\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:14:13', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061414140991722924854099', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"04-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408197431722924499743\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000041\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408261631722924506163\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000018\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408393811722924519381\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000032\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409110721722924551072\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409173701722924557370\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409240211722924564021\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409302851722924570285\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409364521722924576452\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000086\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409428101722924582810\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409494621722924589462\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061410341861722924634186\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355220471722923722047 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:14:14', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061414161461722924856146', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"04-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408197431722924499743\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000041\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408261631722924506163\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000018\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408393811722924519381\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000032\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409110721722924551072\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409173701722924557370\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409240211722924564021\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409302851722924570285\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409364521722924576452\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000086\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409428101722924582810\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409494621722924589462\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061410341861722924634186\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355220471722923722047 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:14:16', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061414181021722924858102', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"04-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408197431722924499743\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000041\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408261631722924506163\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000018\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408393811722924519381\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000032\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409110721722924551072\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409173701722924557370\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409240211722924564021\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409302851722924570285\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409364521722924576452\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000086\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409428101722924582810\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409494621722924589462\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061410341861722924634186\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355220471722923722047 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:14:18', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061414194931722924859493', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000053\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '10.90.106.61', '2024-08-06 14:14:19', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061414201161722924860116', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"04-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408197431722924499743\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000041\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408261631722924506163\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000018\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408393811722924519381\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000032\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409110721722924551072\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409173701722924557370\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409240211722924564021\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409302851722924570285\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409364521722924576452\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000086\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409428101722924582810\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409494621722924589462\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061410341861722924634186\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355220471722923722047 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:14:20', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061414221541722924862154', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"04-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408197431722924499743\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000041\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408261631722924506163\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000018\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408393811722924519381\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000032\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409110721722924551072\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409173701722924557370\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409240211722924564021\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409302851722924570285\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409364521722924576452\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000086\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409428101722924582810\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409494621722924589462\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061410341861722924634186\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355220471722923722047 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:14:22', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061414241051722924864105', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"04-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408197431722924499743\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000041\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408261631722924506163\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000018\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408393811722924519381\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000032\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409110721722924551072\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409173701722924557370\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409240211722924564021\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409302851722924570285\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409364521722924576452\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000086\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409428101722924582810\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409494621722924589462\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061410341861722924634186\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355220471722923722047 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:14:24', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061414258161722924865816', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000025\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '10.90.106.61', '2024-08-06 14:14:26', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061414261171722924866117', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"04-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408197431722924499743\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000041\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408261631722924506163\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000018\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408393811722924519381\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000032\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409110721722924551072\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409173701722924557370\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409240211722924564021\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409302851722924570285\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409364521722924576452\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000086\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409428101722924582810\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409494621722924589462\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061410341861722924634186\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355220471722923722047 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:14:26', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061414280941722924868094', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"04-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408197431722924499743\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000041\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408261631722924506163\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000018\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408393811722924519381\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000032\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409110721722924551072\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409173701722924557370\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409240211722924564021\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409302851722924570285\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409364521722924576452\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000086\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409428101722924582810\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409494621722924589462\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061410341861722924634186\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355220471722923722047 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:14:28', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061414301111722924870111', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"04-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408197431722924499743\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000041\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408261631722924506163\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000018\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408393811722924519381\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000032\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409110721722924551072\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409173701722924557370\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409240211722924564021\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409302851722924570285\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409364521722924576452\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000086\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409428101722924582810\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409494621722924589462\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061410341861722924634186\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355220471722923722047 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:14:30', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061414319421722924871942', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000048\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '10.90.106.61', '2024-08-06 14:14:32', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061414322221722924872222', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"04-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408197431722924499743\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000041\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408261631722924506163\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000018\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408393811722924519381\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000032\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409110721722924551072\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409173701722924557370\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409240211722924564021\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409302851722924570285\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409364521722924576452\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000086\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409428101722924582810\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409494621722924589462\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061410341861722924634186\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355220471722923722047 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:14:32', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061414341851722924874185', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"04-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408197431722924499743\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000041\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408261631722924506163\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000018\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408393811722924519381\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000032\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409110721722924551072\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409173701722924557370\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409240211722924564021\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409302851722924570285\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409364521722924576452\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000086\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409428101722924582810\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409494621722924589462\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061410341861722924634186\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355220471722923722047 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:14:34', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061414361491722924876149', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"04-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408197431722924499743\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000041\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408261631722924506163\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000018\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408393811722924519381\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000032\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409110721722924551072\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409173701722924557370\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409240211722924564021\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409302851722924570285\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409364521722924576452\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000086\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409428101722924582810\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409494621722924589462\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061410341861722924634186\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355220471722923722047 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:14:36', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061414382301722924878230', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"04-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408197431722924499743\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000041\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408261631722924506163\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000018\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408393811722924519381\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000032\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409110721722924551072\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409173701722924557370\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409240211722924564021\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409302851722924570285\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409364521722924576452\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000086\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409428101722924582810\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409494621722924589462\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061410341861722924634186\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355220471722923722047 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:14:38', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061414402061722924880206', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"04-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408197431722924499743\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000041\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408261631722924506163\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000018\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408393811722924519381\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000032\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409110721722924551072\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409173701722924557370\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409240211722924564021\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409302851722924570285\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409364521722924576452\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000086\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409428101722924582810\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409494621722924589462\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061410341861722924634186\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355220471722923722047 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:14:40', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061414421591722924882159', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"04-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408197431722924499743\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000041\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408261631722924506163\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000018\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408393811722924519381\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000032\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409110721722924551072\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409173701722924557370\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409240211722924564021\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409302851722924570285\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409364521722924576452\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000086\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409428101722924582810\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409494621722924589462\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061410341861722924634186\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355220471722923722047 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:14:42', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061414442231722924884223', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"04-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408197431722924499743\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000041\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408261631722924506163\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000018\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408393811722924519381\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000032\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409110721722924551072\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409173701722924557370\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409240211722924564021\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409302851722924570285\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409364521722924576452\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000086\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409428101722924582810\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409494621722924589462\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061410341861722924634186\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355220471722923722047 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:14:44', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061414450541722924885054', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000083\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '10.90.106.61', '2024-08-06 14:14:45', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061414459911722924885991', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061355223561722923722356\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000076\", \"taskStatus\": 100, \"destination\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:14:46', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061414461331722924886133', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"04-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408197431722924499743\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000041\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408261631722924506163\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000018\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408393811722924519381\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000032\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409110721722924551072\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409173701722924557370\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409240211722924564021\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409302851722924570285\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409364521722924576452\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000086\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409428101722924582810\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409494621722924589462\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061410341861722924634186\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355220471722923722047 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:14:46', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061414476281722924887628', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000018\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '10.90.106.61', '2024-08-06 14:14:48', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061414477181722924887718', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061355224501722923722450\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000116\", \"taskStatus\": 100, \"destination\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:14:48', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061414481231722924888123', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"04-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408197431722924499743\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000041\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408261631722924506163\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000018\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408393811722924519381\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000032\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409110721722924551072\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409173701722924557370\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409240211722924564021\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409302851722924570285\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409364521722924576452\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000086\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409428101722924582810\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409494621722924589462\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061410341861722924634186\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355220471722923722047 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:14:48', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061414501271722924890127', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"04-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408197431722924499743\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000041\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408261631722924506163\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000018\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408393811722924519381\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000032\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409110721722924551072\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409173701722924557370\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409240211722924564021\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409302851722924570285\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409364521722924576452\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000086\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409428101722924582810\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409494621722924589462\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061410341861722924634186\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355220471722923722047 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:14:50', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061414521371722924892137', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"04-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408197431722924499743\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000041\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408261631722924506163\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000018\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408393811722924519381\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000032\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409110721722924551072\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409173701722924557370\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409240211722924564021\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409302851722924570285\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409364521722924576452\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000086\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409428101722924582810\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409494621722924589462\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061410341861722924634186\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355220471722923722047 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:14:52', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061414539561722924893956', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000112\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '10.90.106.61', '2024-08-06 14:14:54', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061414541701722924894170', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"04-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408197431722924499743\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000041\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408261631722924506163\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000018\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408393811722924519381\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000032\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409110721722924551072\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409173701722924557370\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409240211722924564021\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409302851722924570285\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409364521722924576452\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000086\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409428101722924582810\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409494621722924589462\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061410341861722924634186\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355220471722923722047 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:14:54', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061414561681722924896168', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"04-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408197431722924499743\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000041\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408261631722924506163\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000018\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408393811722924519381\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000032\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409110721722924551072\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409173701722924557370\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409240211722924564021\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409302851722924570285\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409364521722924576452\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000086\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409428101722924582810\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409494621722924589462\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061410341861722924634186\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355220471722923722047 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:14:56', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061414581831722924898183', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"04-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408197431722924499743\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000041\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408261631722924506163\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000018\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408393811722924519381\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000032\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409110721722924551072\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409173701722924557370\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409240211722924564021\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409302851722924570285\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409364521722924576452\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000086\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409428101722924582810\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409494621722924589462\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061410341861722924634186\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355220471722923722047 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:14:58', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061415001511722924900151', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000188\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '10.90.106.61', '2024-08-06 14:15:00', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061415001541722924900154', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"04-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408197431722924499743\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000041\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408261631722924506163\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000018\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408393811722924519381\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000032\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409110721722924551072\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409173701722924557370\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409240211722924564021\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409302851722924570285\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409364521722924576452\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000086\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409428101722924582810\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409494621722924589462\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061410341861722924634186\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355220471722923722047 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:15:00', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061415021451722924902145', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"04-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408197431722924499743\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000041\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408261631722924506163\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000018\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408393811722924519381\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000032\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409110721722924551072\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409173701722924557370\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409240211722924564021\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409302851722924570285\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409364521722924576452\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000086\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409428101722924582810\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409494621722924589462\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061410341861722924634186\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355220471722923722047 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:15:02', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061415041341722924904134', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"04-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408197431722924499743\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000041\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408261631722924506163\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000018\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408393811722924519381\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000032\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409110721722924551072\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409173701722924557370\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409240211722924564021\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409302851722924570285\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409364521722924576452\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000086\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409428101722924582810\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409494621722924589462\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061410341861722924634186\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355220471722923722047 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:15:04', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061415061321722924906132', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"04-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408197431722924499743\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000041\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408261631722924506163\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000018\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408393811722924519381\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000032\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409110721722924551072\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409173701722924557370\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409240211722924564021\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409302851722924570285\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409364521722924576452\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000086\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409428101722924582810\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409494621722924589462\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061410341861722924634186\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355220471722923722047 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:15:06', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061415065951722924906595', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000085\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '10.90.106.61', '2024-08-06 14:15:07', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061415081311722924908131', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"04-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408197431722924499743\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000041\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408261631722924506163\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000018\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408393811722924519381\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000032\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409110721722924551072\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409173701722924557370\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409240211722924564021\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409302851722924570285\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409364521722924576452\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000086\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409428101722924582810\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409494621722924589462\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061410341861722924634186\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355220471722923722047 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:15:08', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061415101461722924910146', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"04-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408197431722924499743\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000041\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408261631722924506163\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000018\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408393811722924519381\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000032\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409110721722924551072\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409173701722924557370\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409240211722924564021\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409302851722924570285\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409364521722924576452\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000086\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409428101722924582810\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409494621722924589462\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061410341861722924634186\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355220471722923722047 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:15:10', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061415121781722924912178', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"04-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408197431722924499743\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000041\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408261631722924506163\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000018\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408393811722924519381\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000032\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409110721722924551072\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409173701722924557370\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409240211722924564021\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409302851722924570285\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409364521722924576452\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000086\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409428101722924582810\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409494621722924589462\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061410341861722924634186\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355220471722923722047 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:15:12', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061415130491722924913049', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000031\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '10.90.106.61', '2024-08-06 14:15:13', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061415141751722924914175', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"04-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408197431722924499743\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000041\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408261631722924506163\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000018\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408393811722924519381\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000032\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409110721722924551072\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409173701722924557370\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409240211722924564021\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409302851722924570285\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409364521722924576452\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000086\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409428101722924582810\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409494621722924589462\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061410341861722924634186\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355220471722923722047 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:15:14', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061415161761722924916176', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"04-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408197431722924499743\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000041\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408261631722924506163\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000018\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408393811722924519381\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000032\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409110721722924551072\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409173701722924557370\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409240211722924564021\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409302851722924570285\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409364521722924576452\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000086\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409428101722924582810\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409494621722924589462\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061410341861722924634186\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355220471722923722047 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:15:16', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061415182071722924918207', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"04-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408197431722924499743\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000041\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408261631722924506163\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000018\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408393811722924519381\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000032\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409110721722924551072\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409173701722924557370\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409240211722924564021\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409302851722924570285\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409364521722924576452\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000086\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409428101722924582810\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409494621722924589462\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061410341861722924634186\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220471722923722047\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355220471722923722047 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:15:18', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061415195381722924919538', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000074\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '10.90.106.61', '2024-08-06 14:15:20', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061415203151722924920315', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"04-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408197431722924499743\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000041\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408261631722924506163\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000018\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408393811722924519381\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000032\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409110721722924551072\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409173701722924557370\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409240211722924564021\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409302851722924570285\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409364521722924576452\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000086\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409428101722924582810\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409494621722924589462\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061410341861722924634186\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355220551722923722055 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:15:20', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061415222291722924922229', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"04-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408197431722924499743\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000041\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408261631722924506163\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000018\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408393811722924519381\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000032\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409110721722924551072\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409173701722924557370\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409240211722924564021\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409302851722924570285\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409364521722924576452\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000086\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409428101722924582810\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409494621722924589462\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061410341861722924634186\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355220551722923722055 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:15:22', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061415242121722924924212', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"04-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408197431722924499743\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000041\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408261631722924506163\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000018\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408393811722924519381\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000032\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409110721722924551072\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409173701722924557370\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409240211722924564021\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409302851722924570285\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409364521722924576452\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000086\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409428101722924582810\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409494621722924589462\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061410341861722924634186\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355220551722923722055 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:15:24', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061415256101722924925610', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000073\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '10.90.106.61', '2024-08-06 14:15:26', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061415263501722924926350', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"04-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408197431722924499743\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000041\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408261631722924506163\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000018\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408393811722924519381\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000032\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409110721722924551072\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409173701722924557370\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409240211722924564021\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409302851722924570285\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409364521722924576452\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000086\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409428101722924582810\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409494621722924589462\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061410341861722924634186\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355220551722923722055 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:15:26', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061415282291722924928229', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"04-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408197431722924499743\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000041\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408261631722924506163\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000018\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408393811722924519381\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000032\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409110721722924551072\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409173701722924557370\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409240211722924564021\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409302851722924570285\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409364521722924576452\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000086\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409428101722924582810\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409494621722924589462\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061410341861722924634186\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355220551722923722055 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:15:28', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061415302321722924930232', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"04-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408197431722924499743\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000041\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408261631722924506163\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000018\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408393811722924519381\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000032\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409110721722924551072\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409173701722924557370\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409240211722924564021\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409302851722924570285\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409364521722924576452\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000086\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409428101722924582810\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409494621722924589462\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061410341861722924634186\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355220551722923722055 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:15:30', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061415322271722924932227', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000056\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '10.90.106.61', '2024-08-06 14:15:32', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061415322871722924932287', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"04-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408197431722924499743\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000041\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408261631722924506163\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000018\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408393811722924519381\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000032\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409110721722924551072\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409173701722924557370\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409240211722924564021\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409302851722924570285\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409364521722924576452\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000086\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409428101722924582810\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409494621722924589462\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061410341861722924634186\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355220551722923722055\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355220551722923722055 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:15:32', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061415342441722924934244', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"04-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408197431722924499743\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000041\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408261631722924506163\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000018\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408393811722924519381\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000032\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409110721722924551072\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409173701722924557370\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409240211722924564021\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409302851722924570285\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409364521722924576452\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000086\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409428101722924582810\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409494621722924589462\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061410341861722924634186\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355223341722923722334 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:15:34', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061415356721722924935672', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000048\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '10.90.106.61', '2024-08-06 14:15:36', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061415362671722924936267', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"04-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408197431722924499743\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000041\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408261631722924506163\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000018\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408393811722924519381\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000032\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409110721722924551072\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409173701722924557370\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409240211722924564021\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409302851722924570285\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409364521722924576452\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000086\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409428101722924582810\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409494621722924589462\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061410341861722924634186\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355223341722923722334 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:15:36', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061415382731722924938273', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"04-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408197431722924499743\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000041\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408261631722924506163\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000018\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408393811722924519381\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000032\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409110721722924551072\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409173701722924557370\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409240211722924564021\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409302851722924570285\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409364521722924576452\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000086\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409428101722924582810\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409494621722924589462\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061410341861722924634186\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355223341722923722334 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:15:38', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061415383521722924938352', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000118\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '10.90.106.61', '2024-08-06 14:15:38', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061415402821722924940282', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"04-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408197431722924499743\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000041\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408261631722924506163\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000018\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408393811722924519381\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000032\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409110721722924551072\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409173701722924557370\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409240211722924564021\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409302851722924570285\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409364521722924576452\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000086\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409428101722924582810\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409494621722924589462\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061410341861722924634186\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355223341722923722334 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:15:40', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061415422951722924942295', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"04-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408197431722924499743\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000041\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408261631722924506163\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000018\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408393811722924519381\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000032\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409110721722924551072\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409173701722924557370\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409240211722924564021\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409302851722924570285\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409364521722924576452\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000086\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409428101722924582810\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409494621722924589462\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061410341861722924634186\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355223341722923722334 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:15:42', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061415443111722924944311', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"04-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408197431722924499743\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000041\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408261631722924506163\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000018\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408393811722924519381\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000032\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409110721722924551072\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409173701722924557370\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409240211722924564021\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409302851722924570285\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409364521722924576452\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000086\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409428101722924582810\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409494621722924589462\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061410341861722924634186\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223341722923722334\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355223341722923722334 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:15:44', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061415463131722924946313', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"04-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408197431722924499743\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000041\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408261631722924506163\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000018\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408393811722924519381\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000032\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409110721722924551072\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409173701722924557370\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409240211722924564021\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409302851722924570285\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409364521722924576452\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000086\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409428101722924582810\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409494621722924589462\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061410341861722924634186\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355223481722923722348 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:15:46', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061415483461722924948346', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"04-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408197431722924499743\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000041\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408261631722924506163\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000018\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408393811722924519381\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000032\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409110721722924551072\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409173701722924557370\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409240211722924564021\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409302851722924570285\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409364521722924576452\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000086\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409428101722924582810\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409494621722924589462\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061410341861722924634186\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355223481722923722348 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:15:48', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061415503621722924950362', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"04-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408197431722924499743\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000041\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408261631722924506163\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000018\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408393811722924519381\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000032\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409110721722924551072\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409173701722924557370\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409240211722924564021\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409302851722924570285\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409364521722924576452\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000086\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409428101722924582810\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409494621722924589462\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061410341861722924634186\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355223481722923722348 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:15:50', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061415516091722924951609', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000068\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '10.90.106.61', '2024-08-06 14:15:52', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061415523741722924952374', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"04-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408197431722924499743\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000041\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408261631722924506163\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000018\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408393811722924519381\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000032\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409110721722924551072\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409173701722924557370\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409240211722924564021\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409302851722924570285\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409364521722924576452\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000086\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409428101722924582810\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409494621722924589462\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061410341861722924634186\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355223481722923722348 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:15:52', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061415539761722924953976', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000026\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '10.90.106.61', '2024-08-06 14:15:54', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061415544121722924954412', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"04-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408197431722924499743\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000041\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408261631722924506163\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000018\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408393811722924519381\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000032\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409110721722924551072\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409173701722924557370\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409240211722924564021\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409302851722924570285\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409364521722924576452\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000086\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409428101722924582810\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409494621722924589462\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061410341861722924634186\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355223481722923722348 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:15:54', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061415563751722924956375', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"04-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408197431722924499743\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000041\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408261631722924506163\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000018\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408393811722924519381\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000032\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409110721722924551072\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409173701722924557370\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409240211722924564021\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409302851722924570285\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409364521722924576452\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000086\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409428101722924582810\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409494621722924589462\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061410341861722924634186\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-16-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223481722923722348\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355223481722923722348 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:15:56', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061415583901722924958390', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"04-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408197431722924499743\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000041\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408261631722924506163\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000018\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408393811722924519381\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000032\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409110721722924551072\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409173701722924557370\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409240211722924564021\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409302851722924570285\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409364521722924576452\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000086\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409428101722924582810\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409494621722924589462\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061410341861722924634186\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355223841722923722384 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:15:58', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061416003891722924960389', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"04-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408197431722924499743\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000041\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408261631722924506163\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000018\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408393811722924519381\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000032\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409110721722924551072\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409173701722924557370\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409240211722924564021\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409302851722924570285\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409364521722924576452\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000086\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409428101722924582810\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409494621722924589462\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061410341861722924634186\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355223841722923722384 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:16:00', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061416023961722924962396', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"04-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408197431722924499743\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000041\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408261631722924506163\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000018\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408393811722924519381\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000032\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409110721722924551072\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409173701722924557370\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409240211722924564021\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409302851722924570285\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409364521722924576452\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000086\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409428101722924582810\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409494621722924589462\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061410341861722924634186\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355223841722923722384 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:16:02', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061416024631722924962463', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000077\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '10.90.106.61', '2024-08-06 14:16:02', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061416044011722924964401', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"04-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408197431722924499743\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000041\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408261631722924506163\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000018\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408393811722924519381\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000032\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409110721722924551072\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409173701722924557370\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409240211722924564021\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409302851722924570285\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409364521722924576452\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000086\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409428101722924582810\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409494621722924589462\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061410341861722924634186\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355223841722923722384 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:16:04', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061416046641722924964664', 'Wcs请求载具入库', 'wcsVehicleIn', '[{\"point\": \"R1\", \"remark\": \"\", \"vehicleNo\": \"ASRS000037\", \"codeMessage\": \"ASRS000037\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求载具入库发生错误:当前载具没有入库或回库任务\\\"}\"', '10.90.106.61', '2024-08-06 14:16:05', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061416063871722924966387', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"04-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408197431722924499743\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000041\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408261631722924506163\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000018\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408393811722924519381\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000032\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409110721722924551072\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409173701722924557370\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409240211722924564021\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409302851722924570285\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409364521722924576452\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000086\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409428101722924582810\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409494621722924589462\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061410341861722924634186\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355223841722923722384 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:16:06', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061416083871722924968387', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"04-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408197431722924499743\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000041\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408261631722924506163\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000018\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408393811722924519381\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000032\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409110721722924551072\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409173701722924557370\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409240211722924564021\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409302851722924570285\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409364521722924576452\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000086\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409428101722924582810\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409494621722924589462\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061410341861722924634186\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"02-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355223841722923722384\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355223841722923722384 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:16:08', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061416092651722924969265', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000166\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '10.90.106.61', '2024-08-06 14:16:09', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061416104131722924970413', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"04-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408197431722924499743\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000041\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408261631722924506163\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000018\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408393811722924519381\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000032\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409110721722924551072\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409173701722924557370\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409240211722924564021\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409302851722924570285\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409364521722924576452\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000086\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409428101722924582810\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409494621722924589462\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061410341861722924634186\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355224361722923722436 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:16:10', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061416123991722924972399', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"04-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408197431722924499743\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000041\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408261631722924506163\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000018\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408393811722924519381\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000032\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409110721722924551072\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409173701722924557370\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409240211722924564021\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409302851722924570285\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409364521722924576452\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000086\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409428101722924582810\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409494621722924589462\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061410341861722924634186\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355224361722923722436 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:16:12', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061416144161722924974416', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"04-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408197431722924499743\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000041\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408261631722924506163\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000018\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408393811722924519381\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000032\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409110721722924551072\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409173701722924557370\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409240211722924564021\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409302851722924570285\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409364521722924576452\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000086\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409428101722924582810\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409494621722924589462\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061410341861722924634186\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355224361722923722436 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:16:14', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061416164481722924976448', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"04-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408197431722924499743\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000041\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408261631722924506163\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000018\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408393811722924519381\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000032\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409110721722924551072\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409173701722924557370\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409240211722924564021\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409302851722924570285\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409364521722924576452\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000086\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409428101722924582810\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409494621722924589462\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061410341861722924634186\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355224361722923722436 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:16:16', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061416183931722924978393', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"04-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408197431722924499743\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000041\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408261631722924506163\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000018\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408393811722924519381\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000032\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409110721722924551072\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409173701722924557370\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409240211722924564021\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409302851722924570285\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409364521722924576452\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000086\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409428101722924582810\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409494621722924589462\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061410341861722924634186\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224361722923722436\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355224361722923722436 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:16:18', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061416204001722924980400', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"04-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408197431722924499743\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000041\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408261631722924506163\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000018\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408393811722924519381\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000032\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409110721722924551072\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409173701722924557370\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409240211722924564021\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409302851722924570285\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409364521722924576452\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000086\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409428101722924582810\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409494621722924589462\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061410341861722924634186\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355224451722923722445 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:16:20', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061416223931722924982393', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"04-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408197431722924499743\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000041\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408261631722924506163\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000018\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408393811722924519381\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000032\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409110721722924551072\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409173701722924557370\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409240211722924564021\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409302851722924570285\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409364521722924576452\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000086\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409428101722924582810\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409494621722924589462\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061410341861722924634186\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355224451722923722445 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:16:22', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061416243971722924984397', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"04-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408197431722924499743\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000041\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408261631722924506163\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000018\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408393811722924519381\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000032\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409110721722924551072\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409173701722924557370\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409240211722924564021\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409302851722924570285\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409364521722924576452\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000086\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409428101722924582810\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409494621722924589462\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061410341861722924634186\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355224451722923722445 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:16:24', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061416263981722924986398', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"04-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408197431722924499743\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000041\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408261631722924506163\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000018\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408393811722924519381\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000032\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409110721722924551072\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409173701722924557370\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409240211722924564021\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409302851722924570285\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409364521722924576452\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000086\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409428101722924582810\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409494621722924589462\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061410341861722924634186\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355224451722923722445 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:16:26', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061416284151722924988415', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"04-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408197431722924499743\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000041\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408261631722924506163\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000018\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408393811722924519381\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000032\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409110721722924551072\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409173701722924557370\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409240211722924564021\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409302851722924570285\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409364521722924576452\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000086\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409428101722924582810\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409494621722924589462\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061410341861722924634186\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355224451722923722445 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:16:28', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061416303901722924990390', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"04-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408197431722924499743\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000041\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408261631722924506163\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000018\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408393811722924519381\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000032\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409110721722924551072\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409173701722924557370\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409240211722924564021\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409302851722924570285\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409364521722924576452\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000086\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409428101722924582810\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409494621722924589462\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061410341861722924634186\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"\\\",\\\"origin\\\":\\\"03-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061355224451722923722445\\\",\\\"taskType\\\":2,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":998,\\\"message\\\":\\\"任务:202408061355224451722923722445 已存在,请勿重复\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:16:30', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061416325901722924992590', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"04-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408197431722924499743\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000041\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"06-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408261631722924506163\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000018\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"09-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061408393811722924519381\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000032\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409110721722924551072\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000056\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409173701722924557370\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000035\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"05-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409240211722924564021\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000101\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"07-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409302851722924570285\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000198\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"08-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409364521722924576452\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000086\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"03-02-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409428101722924582810\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000068\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"01-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061409494621722924589462\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000026\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000},{\\\"destination\\\":\\\"04-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061410341861722924634186\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000047\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":0,\\\"message\\\":\\\"任务创建成功,任务号:202408061408197431722924499743,202408061408261631722924506163,202408061408393811722924519381,202408061409110721722924551072,202408061409173701722924557370,202408061409240211722924564021,202408061409302851722924570285,202408061409364521722924576452,202408061409428101722924582810,202408061409494621722924589462,202408061410341861722924634186\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:16:33', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061425367371722925536737', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061355216321722923721632\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000016\", \"taskStatus\": 100, \"destination\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:25:37', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061425551161722925555116', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000053\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '10.90.106.61', '2024-08-06 14:25:55', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061425578991722925557899', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061355216291722923721629\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000003\", \"taskStatus\": 2, \"destination\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:25:58', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061425579001722925557900', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061355216421722923721642\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000030\", \"taskStatus\": 2, \"destination\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:25:58', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061426014411722925561441', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000025\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '10.90.106.61', '2024-08-06 14:26:01', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061426077011722925567701', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000010\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '10.90.106.61', '2024-08-06 14:26:08', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061426140741722925574074', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000083\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '10.90.106.61', '2024-08-06 14:26:14', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061426203391722925580339', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000198\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '10.90.106.61', '2024-08-06 14:26:20', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061426260211722925586021', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000118\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '10.90.106.61', '2024-08-06 14:26:26', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061426266801722925586680', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000018\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '10.90.106.61', '2024-08-06 14:26:27', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061426329001722925592900', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000112\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '10.90.106.61', '2024-08-06 14:26:33', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061426362081722925596208', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061355216421722923721642\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000030\", \"taskStatus\": 100, \"destination\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:26:36', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061426362491722925596249', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061355216291722923721629\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000003\", \"taskStatus\": 100, \"destination\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:26:36', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061426391761722925599176', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000188\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '10.90.106.61', '2024-08-06 14:26:39', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061426397381722925599738', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061355216491722923721649\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000023\", \"taskStatus\": 2, \"destination\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:26:40', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061426397541722925599754', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061355216791722923721679\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000022\", \"taskStatus\": 2, \"destination\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:26:40', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061426480881722925608088', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000085\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '10.90.106.61', '2024-08-06 14:26:48', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061426503541722925610354', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000031\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '10.90.106.61', '2024-08-06 14:26:50', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061426561271722925616127', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000074\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '10.90.106.61', '2024-08-06 14:26:56', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061427027291722925622729', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000073\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '10.90.106.61', '2024-08-06 14:27:03', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061427090231722925629023', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000056\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '10.90.106.61', '2024-08-06 14:27:09', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061427154171722925635417', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000048\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '10.90.106.61', '2024-08-06 14:27:15', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061427192601722925639260', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061355216491722923721649\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000023\", \"taskStatus\": 100, \"destination\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:27:19', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061427193051722925639305', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061355216791722923721679\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000022\", \"taskStatus\": 100, \"destination\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:27:19', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061427216201722925641620', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000086\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '10.90.106.61', '2024-08-06 14:27:22', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061427220691722925642069', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000086\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '10.90.106.61', '2024-08-06 14:27:22', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061427227141722925642714', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061355217141722923721714\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000091\", \"taskStatus\": 2, \"destination\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:27:23', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061427227361722925642736', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061355219901722923721990\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000070\", \"taskStatus\": 2, \"destination\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:27:23', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061427251371722925645137', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000198\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '10.90.106.61', '2024-08-06 14:27:25', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061427281871722925648187', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000068\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '10.90.106.61', '2024-08-06 14:27:28', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061427345621722925654562', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000026\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '10.90.106.61', '2024-08-06 14:27:35', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061427408121722925660812', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000077\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '10.90.106.61', '2024-08-06 14:27:41', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061427472811722925667281', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000166\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '10.90.106.61', '2024-08-06 14:27:47', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061427536441722925673644', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000053\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '10.90.106.61', '2024-08-06 14:27:54', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061428000061722925680006', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000025\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '10.90.106.61', '2024-08-06 14:28:00', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061428052021722925685202', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061355219901722923721990\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000070\", \"taskStatus\": 100, \"destination\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:28:05', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061428052281722925685228', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061355217141722923721714\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000091\", \"taskStatus\": 100, \"destination\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:28:05', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061428063441722925686344', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000010\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '10.90.106.61', '2024-08-06 14:28:06', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061428092251722925689225', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061355220031722923722003\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000069\", \"taskStatus\": 2, \"destination\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:28:09', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061428092531722925689253', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061355220401722923722040\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000027\", \"taskStatus\": 2, \"destination\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:28:09', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061428127931722925692793', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000083\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '10.90.106.61', '2024-08-06 14:28:13', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061428329331722925712933', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000188\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '10.90.106.61', '2024-08-06 14:28:33', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061428357461722925715746', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000085\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '10.90.106.61', '2024-08-06 14:28:36', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061428444001722925724400', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000031\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '10.90.106.61', '2024-08-06 14:28:44', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061428510041722925731004', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000074\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '10.90.106.61', '2024-08-06 14:28:51', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061428552791722925735279', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061355220401722923722040\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000027\", \"taskStatus\": 100, \"destination\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:28:55', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061428552881722925735288', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061355220031722923722003\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000069\", \"taskStatus\": 100, \"destination\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:28:55', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061428573601722925737360', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000198\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '10.90.106.61', '2024-08-06 14:28:57', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061428580841722925738084', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061355220471722923722047\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000028\", \"taskStatus\": 2, \"destination\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:28:58', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061428580901722925738090', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061355220551722923722055\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000078\", \"taskStatus\": 2, \"destination\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:28:58', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061429038371722925743837', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000048\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '10.90.106.61', '2024-08-06 14:29:04', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061429099931722925749993', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000086\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '10.90.106.61', '2024-08-06 14:29:10', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061429168421722925756842', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000068\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '10.90.106.61', '2024-08-06 14:29:17', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061429227111722925762711', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000026\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '10.90.106.61', '2024-08-06 14:29:23', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061429293091722925769309', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000077\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '10.90.106.61', '2024-08-06 14:29:29', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061429352941722925775294', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000166\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '10.90.106.61', '2024-08-06 14:29:35', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061429418461722925781846', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000053\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '10.90.106.61', '2024-08-06 14:29:42', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061429462181722925786218', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061355220551722923722055\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000078\", \"taskStatus\": 100, \"destination\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:29:46', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061429472651722925787265', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061355220471722923722047\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000028\", \"taskStatus\": 100, \"destination\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:29:47', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061429481901722925788190', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000025\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '10.90.106.61', '2024-08-06 14:29:48', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061429518691722925791869', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061355223341722923722334\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000107\", \"taskStatus\": 2, \"destination\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:29:52', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061429518771722925791877', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061355223481722923722348\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000102\", \"taskStatus\": 2, \"destination\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:29:52', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061429546361722925794636', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000010\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '10.90.106.61', '2024-08-06 14:29:55', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061430074721722925807472', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000118\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '10.90.106.61', '2024-08-06 14:30:07', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061430101911722925810191', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000018\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '10.90.106.61', '2024-08-06 14:30:10', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061430193761722925819376', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000112\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '10.90.106.61', '2024-08-06 14:30:19', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061430258421722925825842', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000188\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '10.90.106.61', '2024-08-06 14:30:26', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061430317131722925831713', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000085\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '10.90.106.61', '2024-08-06 14:30:32', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061430383021722925838302', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000031\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '10.90.106.61', '2024-08-06 14:30:38', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061430442771722925844277', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061355223341722923722334\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000107\", \"taskStatus\": 100, \"destination\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:30:44', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061430449361722925844936', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000074\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '10.90.106.61', '2024-08-06 14:30:45', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061430452041722925845204', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061355223481722923722348\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000102\", \"taskStatus\": 100, \"destination\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:30:45', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061430484811722925848481', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061355223841722923722384\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000054\", \"taskStatus\": 2, \"destination\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:30:48', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061430485221722925848522', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061355224361722923722436\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000075\", \"taskStatus\": 2, \"destination\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:30:49', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061431382221722925898222', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061355224361722923722436\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000075\", \"taskStatus\": 100, \"destination\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:31:38', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061431382651722925898265', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061355223841722923722384\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000054\", \"taskStatus\": 100, \"destination\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:31:38', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061431424871722925902487', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061355224451722923722445\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000197\", \"taskStatus\": 2, \"destination\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:31:42', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061432185781722925938578', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061355224451722923722445\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000197\", \"taskStatus\": 100, \"destination\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:32:19', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061434404701722926080470', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061402180821722924138082\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000082\", \"taskStatus\": 2, \"destination\": \"09-01-01-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:34:40', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061434573851722926097385', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061402471981722924167198\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000097\", \"taskStatus\": 2, \"destination\": \"04-01-03-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:34:57', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061434573981722926097398', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061403242431722924204243\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000099\", \"taskStatus\": 2, \"destination\": \"04-01-04-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:34:57', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061435053011722926105301', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000048\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '10.90.106.61', '2024-08-06 14:35:05', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061435054001722926105400', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061402180821722924138082\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000082\", \"taskStatus\": 100, \"destination\": \"09-01-01-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:35:05', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061435224791722926122479', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061402360051722924156005\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000090\", \"taskStatus\": 2, \"destination\": \"08-01-02-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:35:22', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061435231891722926123189', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061403242431722924204243\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000099\", \"taskStatus\": 100, \"destination\": \"04-01-04-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:35:23', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061435269101722926126910', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061403204941722924200494\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000062\", \"taskStatus\": 2, \"destination\": \"02-01-05-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:35:27', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061435341961722926134196', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061402471981722924167198\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000097\", \"taskStatus\": 100, \"destination\": \"04-01-03-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:35:34', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061435370281722926137028', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061402215991722924141599\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000021\", \"taskStatus\": 2, \"destination\": \"03-01-02-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:35:37', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061435370561722926137056', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061403389511722924218951\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000050\", \"taskStatus\": 2, \"destination\": \"03-02-04-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:35:37', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061435388951722926138895', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061403514001722924231400\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000057\", \"taskStatus\": 2, \"destination\": \"07-01-04-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:35:39', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061435389941722926138994', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061401370081722924097008\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000037\", \"taskStatus\": 2, \"destination\": \"07-01-01-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:35:39', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061435404541722926140454', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061402288361722924148836\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000004\", \"taskStatus\": 2, \"destination\": \"05-01-02-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:35:40', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061435404741722926140474', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061403470711722924227071\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000063\", \"taskStatus\": 2, \"destination\": \"05-01-04-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:35:40', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061435436241722926143624', 'Wcs请求载具入库', 'wcsVehicleIn', '[{\"point\": \"R1\", \"remark\": \"\", \"vehicleNo\": \"ASRS000009\", \"codeMessage\": \"ASRS000009\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求载具入库发生错误:当前载具没有入库或回库任务\\\"}\"', '10.90.106.61', '2024-08-06 14:35:44', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061435481991722926148199', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061402360051722924156005\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000090\", \"taskStatus\": 100, \"destination\": \"08-01-02-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:35:48', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061435510951722926151095', 'Wcs请求载具入库', 'wcsVehicleIn', '[{\"point\": \"R1\", \"remark\": \"\", \"vehicleNo\": \"ASRS000087\", \"codeMessage\": \"ASRS000087\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求载具入库发生错误:当前载具没有入库或回库任务\\\"}\"', '10.90.106.61', '2024-08-06 14:35:51', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061435521861722926152186', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061403204941722924200494\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000062\", \"taskStatus\": 100, \"destination\": \"02-01-05-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:35:52', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061435524161722926152416', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061402540851722924174085\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000088\", \"taskStatus\": 2, \"destination\": \"09-01-02-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:35:52', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061435538281722926153828', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061402250611722924145061\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000084\", \"taskStatus\": 2, \"destination\": \"01-01-03-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:35:54', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061435538471722926153847', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061403429331722924222933\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000058\", \"taskStatus\": 2, \"destination\": \"01-01-06-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:35:54', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061435577581722926157758', 'Wcs请求载具入库', 'wcsVehicleIn', '[{\"point\": \"R1\", \"remark\": \"\", \"vehicleNo\": \"ASRS000011\", \"codeMessage\": \"ASRS000011\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求载具入库发生错误:当前载具没有入库或回库任务\\\"}\"', '10.90.106.61', '2024-08-06 14:35:58', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061436031981722926163198', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061402215991722924141599\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000021\", \"taskStatus\": 100, \"destination\": \"03-01-02-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:36:03', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061436032211722926163221', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061401370081722924097008\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000037\", \"taskStatus\": 100, \"destination\": \"07-01-01-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:36:03', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061436033771722926163377', 'Wcs请求载具入库', 'wcsVehicleIn', '[{\"point\": \"R1\", \"remark\": \"\", \"vehicleNo\": \"ASRS000097\", \"codeMessage\": \"ASRS000097\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求载具入库发生错误:当前载具没有入库或回库任务\\\"}\"', '10.90.106.61', '2024-08-06 14:36:03', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061436037231722926163723', 'Wcs请求载具入库', 'wcsVehicleIn', '[{\"point\": \"R1\", \"remark\": \"\", \"vehicleNo\": \"ASRS000097\", \"codeMessage\": \"ASRS000097\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求载具入库发生错误:当前载具没有入库或回库任务\\\"}\"', '10.90.106.61', '2024-08-06 14:36:04', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061436072121722926167212', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061403470711722924227071\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000063\", \"taskStatus\": 100, \"destination\": \"05-01-04-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:36:07', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061436151981722926175198', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061404126201722924252620\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000052\", \"taskStatus\": 2, \"destination\": \"03-02-05-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:36:15', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061436152091722926175209', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061402398351722924159835\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000005\", \"taskStatus\": 2, \"destination\": \"03-02-02-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:36:15', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061436152131722926175213', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061403389511722924218951\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000050\", \"taskStatus\": 100, \"destination\": \"03-02-04-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:36:15', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061436161941722926176194', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061403514001722924231400\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000057\", \"taskStatus\": 100, \"destination\": \"07-01-04-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:36:16', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061436166181722926176618', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061404297581722924269758\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000066\", \"taskStatus\": 2, \"destination\": \"06-01-05-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:36:17', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061436166351722926176635', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061402504921722924170492\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000013\", \"taskStatus\": 2, \"destination\": \"06-01-03-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:36:17', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061436188291722926178829', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061404258211722924265821\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000055\", \"taskStatus\": 2, \"destination\": \"04-01-05-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:36:19', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061436191741722926179174', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061402288361722924148836\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000004\", \"taskStatus\": 100, \"destination\": \"05-01-02-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:36:19', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061436192131722926179213', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061402540851722924174085\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000088\", \"taskStatus\": 100, \"destination\": \"09-01-02-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:36:19', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061436203741722926180374', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061404384781722924278478\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000008\", \"taskStatus\": 2, \"destination\": \"09-01-04-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:36:20', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061436204071722926180407', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061403555821722924235582\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000100\", \"taskStatus\": 2, \"destination\": \"08-01-04-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:36:20', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061436220161722926182016', 'Wcs请求载具入库', 'wcsVehicleIn', '[{\"point\": \"R1\", \"remark\": \"\", \"vehicleNo\": \"ASRS000094\", \"codeMessage\": \"ASRS000094\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求载具入库发生错误:当前载具没有入库或回库任务\\\"}\"', '10.90.106.61', '2024-08-06 14:36:22', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061436241871722926184187', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061403429331722924222933\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000058\", \"taskStatus\": 100, \"destination\": \"01-01-06-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:36:24', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061436368061722926196806', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061404176491722924257649\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000049\", \"taskStatus\": 2, \"destination\": \"01-01-07-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:36:37', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061436368081722926196808', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061402434961722924163496\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000012\", \"taskStatus\": 2, \"destination\": \"01-01-04-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:36:37', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061436371861722926197186', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061402250611722924145061\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000084\", \"taskStatus\": 100, \"destination\": \"01-01-03-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:36:37', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061436422031722926202203', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061402398351722924159835\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000005\", \"taskStatus\": 100, \"destination\": \"03-02-02-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:36:42', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061436432211722926203221', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061402504921722924170492\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000013\", \"taskStatus\": 100, \"destination\": \"06-01-03-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:36:43', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061436461871722926206187', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061404258211722924265821\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000055\", \"taskStatus\": 100, \"destination\": \"04-01-05-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:36:46', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061436466141722926206614', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061402007281722924120728\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000087\", \"taskStatus\": 2, \"destination\": \"04-01-02-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:36:47', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061436466201722926206620', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061403060611722924186061\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000020\", \"taskStatus\": 2, \"destination\": \"05-01-03-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:36:47', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061436482191722926208219', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061403555821722924235582\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000100\", \"taskStatus\": 100, \"destination\": \"08-01-04-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:36:48', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061436542251722926214225', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061403170891722924197089\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000094\", \"taskStatus\": 2, \"destination\": \"02-02-04-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:36:54', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061436542271722926214227', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061404126201722924252620\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000052\", \"taskStatus\": 100, \"destination\": \"03-02-05-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:36:54', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061436542311722926214231', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061402579381722924177938\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000014\", \"taskStatus\": 2, \"destination\": \"03-02-03-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:36:54', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061436557121722926215712', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061403097211722924189721\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000017\", \"taskStatus\": 2, \"destination\": \"07-01-03-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:36:56', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061436557321722926215732', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061402325221722924152522\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000009\", \"taskStatus\": 2, \"destination\": \"07-01-02-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:36:56', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061436561821722926216182', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061404297581722924269758\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000066\", \"taskStatus\": 100, \"destination\": \"06-01-05-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:36:56', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061436574711722926217471', 'Wcs请求载具入库', 'wcsVehicleIn', '[{\"point\": \"R1\", \"remark\": \"\", \"vehicleNo\": \"ASRS000011\", \"codeMessage\": \"ASRS000011\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求载具入库发生错误:当前载具没有入库或回库任务\\\"}\"', '10.90.106.61', '2024-08-06 14:36:57', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061436591631722926219163', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061404384781722924278478\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000008\", \"taskStatus\": 100, \"destination\": \"09-01-04-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:36:59', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061436593321722926219332', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061403355401722924215540\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000064\", \"taskStatus\": 2, \"destination\": \"09-01-03-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:36:59', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061437042151722926224215', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061402434961722924163496\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000012\", \"taskStatus\": 100, \"destination\": \"01-01-04-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:37:04', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061437046251722926224625', 'Wcs请求载具入库', 'wcsVehicleIn', '[{\"point\": \"R1\", \"remark\": \"\", \"vehicleNo\": \"ASRS000097\", \"codeMessage\": \"ASRS000097\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求载具入库发生错误:当前载具没有入库或回库任务\\\"}\"', '10.90.106.61', '2024-08-06 14:37:05', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061437102961722926230296', 'Wcs请求载具入库', 'wcsVehicleIn', '[{\"point\": \"R1\", \"remark\": \"\", \"vehicleNo\": \"ASRS000143\", \"codeMessage\": \"ASRS000143\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求载具入库发生错误:当前载具没有入库或回库任务\\\"}\"', '10.90.106.61', '2024-08-06 14:37:10', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061437131761722926233176', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061403060611722924186061\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000020\", \"taskStatus\": 100, \"destination\": \"05-01-03-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:37:13', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061437141591722926234159', 'Wcs请求载具入库', 'wcsVehicleIn', '[{\"point\": \"R1\", \"remark\": \"\", \"vehicleNo\": \"ASRS000006\", \"codeMessage\": \"ASRS000006\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求载具入库发生错误:当前载具没有入库或回库任务\\\"}\"', '10.90.106.61', '2024-08-06 14:37:14', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061437171661722926237166', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061404176491722924257649\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000049\", \"taskStatus\": 100, \"destination\": \"01-01-07-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:37:17', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061437175291722926237529', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061405410081722924341008\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000031\", \"taskStatus\": 2, \"destination\": \"01-01-08-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:37:18', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061437175781722926237578', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061403018401722924181840\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000007\", \"taskStatus\": 2, \"destination\": \"01-01-05-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:37:18', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061437184871722926238487', 'Wcs请求载具入库', 'wcsVehicleIn', '[{\"point\": \"R1\", \"remark\": \"\", \"vehicleNo\": \"ASRS000002\", \"codeMessage\": \"ASRS000002\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求载具入库发生错误:当前载具没有入库或回库任务\\\"}\"', '10.90.106.61', '2024-08-06 14:37:18', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061437221771722926242177', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061402579381722924177938\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000014\", \"taskStatus\": 100, \"destination\": \"03-02-03-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:37:22', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061437221781722926242178', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061402325221722924152522\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000009\", \"taskStatus\": 100, \"destination\": \"07-01-02-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:37:22', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061437251711722926245171', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061402007281722924120728\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000087\", \"taskStatus\": 100, \"destination\": \"04-01-02-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:37:25', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061437271801722926247180', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061403355401722924215540\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000064\", \"taskStatus\": 100, \"destination\": \"09-01-03-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:37:27', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061437325051722926252505', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061401436021722924103602\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000002\", \"taskStatus\": 2, \"destination\": \"08-01-01-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:37:33', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061437331791722926253179', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061403170891722924197089\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000094\", \"taskStatus\": 100, \"destination\": \"02-02-04-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:37:33', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061437332351722926253235', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061403097211722924189721\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000017\", \"taskStatus\": 100, \"destination\": \"07-01-03-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:37:33', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061437343191722926254319', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061402141121722924134112\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000011\", \"taskStatus\": 2, \"destination\": \"06-01-02-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:37:34', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061437343621722926254362', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061403279021722924207902\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000060\", \"taskStatus\": 2, \"destination\": \"06-01-04-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:37:34', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061437358711722926255871', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061401497731722924109773\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000006\", \"taskStatus\": 2, \"destination\": \"02-01-02-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:37:36', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061437482271722926268227', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061403018401722924181840\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000007\", \"taskStatus\": 100, \"destination\": \"01-01-05-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:37:48', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061438001691722926280169', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061401436021722924103602\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000002\", \"taskStatus\": 100, \"destination\": \"08-01-01-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:38:00', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061438002501722926280250', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061403135401722924193540\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000089\", \"taskStatus\": 2, \"destination\": \"08-01-03-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:38:00', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061438011731722926281173', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061405410081722924341008\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000031\", \"taskStatus\": 100, \"destination\": \"01-01-08-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:38:01', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061438015151722926281515', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061405012061722924301206\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000074\", \"taskStatus\": 2, \"destination\": \"02-01-07-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:38:02', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061438015181722926281518', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061401552741722924115274\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000143\", \"taskStatus\": 2, \"destination\": \"01-01-02-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:38:02', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061438021601722926282160', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061403279021722924207902\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000060\", \"taskStatus\": 100, \"destination\": \"06-01-04-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:38:02', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061438032151722926283215', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061401497731722924109773\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000006\", \"taskStatus\": 100, \"destination\": \"02-01-02-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:38:03', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061438142601722926294260', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061402141121722924134112\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000011\", \"taskStatus\": 100, \"destination\": \"06-01-02-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:38:14', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061438222741722926302274', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000086\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '10.90.106.61', '2024-08-06 14:38:22', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061438243551722926304355', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000026\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '10.90.106.61', '2024-08-06 14:38:24', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061438264381722926306438', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000077\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '10.90.106.61', '2024-08-06 14:38:26', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061438271661722926307166', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061403135401722924193540\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000089\", \"taskStatus\": 100, \"destination\": \"08-01-03-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:38:27', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061438286391722926308639', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000166\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '10.90.106.61', '2024-08-06 14:38:29', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061438307561722926310756', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000053\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '10.90.106.61', '2024-08-06 14:38:31', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061438329061722926312906', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000025\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '10.90.106.61', '2024-08-06 14:38:33', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061438331701722926313170', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061405012061722924301206\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000074\", \"taskStatus\": 100, \"destination\": \"02-01-07-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:38:33', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061438352761722926315276', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000010\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '10.90.106.61', '2024-08-06 14:38:35', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061438375531722926317553', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000083\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '10.90.106.61', '2024-08-06 14:38:38', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061438474761722926327476', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000097\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '10.90.106.61', '2024-08-06 14:38:47', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061438481801722926328180', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061401552741722924115274\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000143\", \"taskStatus\": 100, \"destination\": \"01-01-02-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:38:48', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061438497451722926329745', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"06-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061438474711722926327471\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000097\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":0,\\\"message\\\":\\\"任务创建成功,任务号:202408061438474711722926327471\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:38:50', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061438499081722926329908', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"ASRS-#2\", \"vehicleNo\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"确认成功,放行\\\"}\"', '10.90.106.61', '2024-08-06 14:38:50', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061438551001722926335100', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061407322001722924452200\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000166\", \"taskStatus\": 2, \"destination\": \"09-01-05-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:38:55', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061438551221722926335122', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061409364521722924576452\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000086\", \"taskStatus\": 2, \"destination\": \"08-01-07-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:38:55', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061438577981722926337797', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"ASRS-#2\", \"vehicleNo\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"确认成功,放行\\\"}\"', '10.90.106.61', '2024-08-06 14:38:58', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061438595451722926339545', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061407398371722924459837\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000077\", \"taskStatus\": 2, \"destination\": \"03-02-07-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:39:00', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061438595791722926339579', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061408070691722924487069\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000048\", \"taskStatus\": 2, \"destination\": \"02-02-08-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:39:00', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061439042611722926344261', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"ASRS-#2\", \"vehicleNo\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"确认成功,放行\\\"}\"', '10.90.106.61', '2024-08-06 14:39:04', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061439061531722926346153', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061407459291722924465929\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000053\", \"taskStatus\": 2, \"destination\": \"01-01-09-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:39:06', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061439061611722926346161', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061409494621722924589462\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000026\", \"taskStatus\": 2, \"destination\": \"01-01-11-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:39:06', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061439079981722926347998', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061405053521722924305352\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000010\", \"taskStatus\": 2, \"destination\": \"05-01-05-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:39:08', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061439095511722926349551', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061406012161722924361216\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000083\", \"taskStatus\": 2, \"destination\": \"06-01-06-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:39:10', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061439095731722926349573', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061407525371722924472537\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000025\", \"taskStatus\": 2, \"destination\": \"07-01-06-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:39:10', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061439192321722926359232', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"ASRS-#2\", \"vehicleNo\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"确认成功,放行\\\"}\"', '10.90.106.61', '2024-08-06 14:39:19', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061439202281722926360228', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000040\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '10.90.106.61', '2024-08-06 14:39:20', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061439225961722926362596', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000188\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '10.90.106.61', '2024-08-06 14:39:23', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061439244621722926364462', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000018\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '10.90.106.61', '2024-08-06 14:39:24', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061439251631722926365163', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061409364521722924576452\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000086\", \"taskStatus\": 100, \"destination\": \"08-01-07-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:39:25', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061439280081722926368008', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000112\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '10.90.106.61', '2024-08-06 14:39:28', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061439291561722926369156', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061408070691722924487069\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000048\", \"taskStatus\": 100, \"destination\": \"02-02-08-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:39:29', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061439292081722926369208', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"ASRS-#2\", \"vehicleNo\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"确认成功,放行\\\"}\"', '10.90.106.61', '2024-08-06 14:39:29', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061439320351722926372035', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000032\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '10.90.106.61', '2024-08-06 14:39:32', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061439351551722926375155', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061405053521722924305352\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000010\", \"taskStatus\": 100, \"destination\": \"05-01-05-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:39:35', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061439354951722926375495', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000035\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '10.90.106.61', '2024-08-06 14:39:35', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061439370821722926377082', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"ASRS-#2\", \"vehicleNo\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"确认成功,放行\\\"}\"', '10.90.106.61', '2024-08-06 14:39:37', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061439371631722926377163', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061407322001722924452200\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000166\", \"taskStatus\": 100, \"destination\": \"09-01-05-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:39:37', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061439381751722926378175', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061407525371722924472537\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000025\", \"taskStatus\": 100, \"destination\": \"07-01-06-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:39:38', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061439391771722926379177', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061409494621722924589462\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000026\", \"taskStatus\": 100, \"destination\": \"01-01-11-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:39:39', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061439391951722926379195', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000198\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '10.90.106.61', '2024-08-06 14:39:39', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061439401801722926380180', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061407398371722924459837\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000077\", \"taskStatus\": 100, \"destination\": \"03-02-07-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:39:40', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061439430851722926383085', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000188\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '10.90.106.61', '2024-08-06 14:39:43', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061439439101722926383910', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061405313371722924331337\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000040\", \"taskStatus\": 2, \"destination\": \"08-01-05-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:39:44', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061439488111722926388811', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000056\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '10.90.106.61', '2024-08-06 14:39:49', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061439491891722926389189', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061406012161722924361216\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000083\", \"taskStatus\": 100, \"destination\": \"06-01-06-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:39:49', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061439511801722926391180', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061407459291722924465929\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000053\", \"taskStatus\": 100, \"destination\": \"01-01-09-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:39:51', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061439518071722926391807', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061408261631722924506163\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000018\", \"taskStatus\": 2, \"destination\": \"06-01-07-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:39:52', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061439518211722926391821', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061438474711722926327471\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000097\", \"taskStatus\": 2, \"destination\": \"06-01-08-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:39:52', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061439566251722926396625', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061407492861722924469286\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000112\", \"taskStatus\": 2, \"destination\": \"05-01-06-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:39:57', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061439596231722926399623', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000118\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '10.90.106.61', '2024-08-06 14:40:00', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061440076911722926407691', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000085\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '10.90.106.61', '2024-08-06 14:40:08', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061440090061722926409006', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061409173701722924557370\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000035\", \"taskStatus\": 2, \"destination\": \"01-01-10-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:40:09', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061440131981722926413198', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061405313371722924331337\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000040\", \"taskStatus\": 100, \"destination\": \"08-01-05-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:40:13', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061440134121722926413412', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"ASRS-#4\", \"vehicleNo\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"确认成功,放行\\\"}\"', '10.90.106.61', '2024-08-06 14:40:13', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061440136151722926413615', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061408036151722924483615\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000188\", \"taskStatus\": 2, \"destination\": \"08-01-06-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:40:14', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061440136431722926413643', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061408393811722924519381\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000032\", \"taskStatus\": 2, \"destination\": \"09-01-06-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:40:14', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061440155811722926415581', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"ASRS-#1\", \"vehicleNo\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"确认成功,放行\\\"}\"', '10.90.106.61', '2024-08-06 14:40:16', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061440187571722926418757', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"ASRS-#4\", \"vehicleNo\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"确认成功,放行\\\"}\"', '10.90.106.61', '2024-08-06 14:40:19', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061440197731722926419773', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061409110721722924551072\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000056\", \"taskStatus\": 2, \"destination\": \"03-02-08-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:40:20', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061440204121722926420412', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"ASRS-#1\", \"vehicleNo\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"确认成功,放行\\\"}\"', '10.90.106.61', '2024-08-06 14:40:20', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061440225711722926422571', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"ASRS-#4\", \"vehicleNo\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"确认成功,放行\\\"}\"', '10.90.106.61', '2024-08-06 14:40:23', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061440242151722926424215', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061438474711722926327471\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000097\", \"taskStatus\": 100, \"destination\": \"06-01-08-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:40:24', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061440251711722926425171', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061407492861722924469286\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000112\", \"taskStatus\": 100, \"destination\": \"05-01-06-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:40:25', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061440255671722926425567', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"ASRS-#1\", \"vehicleNo\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"确认成功,放行\\\"}\"', '10.90.106.61', '2024-08-06 14:40:26', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061440260521722926426052', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"ASRS-#4\", \"vehicleNo\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"确认成功,放行\\\"}\"', '10.90.106.61', '2024-08-06 14:40:26', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061440351601722926435160', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061408261631722924506163\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000018\", \"taskStatus\": 100, \"destination\": \"06-01-07-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:40:35', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061440357231722926435723', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061409302851722924570285\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000198\", \"taskStatus\": 2, \"destination\": \"07-01-07-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:40:36', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061440367171722926436717', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000024\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '10.90.106.61', '2024-08-06 14:40:37', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061440375791722926437579', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"09-01-07-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061440367151722926436715\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000024\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":0,\\\"message\\\":\\\"任务创建成功,任务号:202408061440367151722926436715\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:40:38', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061440415421722926441542', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"ASRS-#5\", \"vehicleNo\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"确认成功,放行\\\"}\"', '10.90.106.61', '2024-08-06 14:40:42', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061440422601722926442260', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000041\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '10.90.106.61', '2024-08-06 14:40:42', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061440431241722926443124', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061409173701722924557370\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000035\", \"taskStatus\": 100, \"destination\": \"01-01-10-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:40:43', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061440437571722926443757', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061408174801722924497480\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000118\", \"taskStatus\": 2, \"destination\": \"02-01-09-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:40:44', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061440442041722926444204', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061408393811722924519381\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000032\", \"taskStatus\": 100, \"destination\": \"09-01-06-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:40:44', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061440456591722926445659', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000073\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '10.90.106.61', '2024-08-06 14:40:46', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061440510951722926451095', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061405344621722924334462\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000085\", \"taskStatus\": 2, \"destination\": \"03-02-06-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:40:51', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061440511601722926451160', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061409110721722924551072\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000056\", \"taskStatus\": 100, \"destination\": \"03-02-08-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:40:51', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061440519831722926451983', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"ASRS-#7\", \"vehicleNo\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"确认成功,放行\\\"}\"', '10.90.106.61', '2024-08-06 14:40:52', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061440530311722926453031', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000068\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '10.90.106.61', '2024-08-06 14:40:53', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061440551641722926455164', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061408036151722924483615\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000188\", \"taskStatus\": 100, \"destination\": \"08-01-06-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:40:55', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061440568541722926456854', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000039\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '10.90.106.61', '2024-08-06 14:40:57', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061440598291722926459829', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000093\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '10.90.106.61', '2024-08-06 14:41:00', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061440599541722926459954', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061440367151722926436715\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000024\", \"taskStatus\": 2, \"destination\": \"09-01-07-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:41:00', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061441015991722926461599', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"03-01-03-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061440598271722926459827\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000093\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":0,\\\"message\\\":\\\"任务创建成功,任务号:202408061440598271722926459827\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:41:02', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061441034971722926463497', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000047\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '10.90.106.61', '2024-08-06 14:41:03', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061441061511722926466151', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061409302851722924570285\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000198\", \"taskStatus\": 100, \"destination\": \"07-01-07-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:41:06', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061441072421722926467242', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000029\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '10.90.106.61', '2024-08-06 14:41:07', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061441147911722926474791', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000101\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '10.90.106.61', '2024-08-06 14:41:15', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061441150061722926475006', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061405551481722924355148\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000073\", \"taskStatus\": 2, \"destination\": \"04-01-06-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:41:15', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061441150221722926475022', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061408197431722924499743\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000041\", \"taskStatus\": 2, \"destination\": \"04-01-07-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:41:15', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061441171361722926477136', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061408174801722924497480\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000118\", \"taskStatus\": 100, \"destination\": \"02-01-09-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:41:17', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061441221811722926482181', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061405344621722924334462\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000085\", \"taskStatus\": 100, \"destination\": \"03-02-06-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:41:22', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061441231171722926483117', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061405179751722924317975\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000039\", \"taskStatus\": 2, \"destination\": \"07-01-05-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:41:23', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061441301901722926490190', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061440367151722926436715\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000024\", \"taskStatus\": 100, \"destination\": \"09-01-07-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:41:30', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061441313281722926491328', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061440598271722926459827\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000093\", \"taskStatus\": 2, \"destination\": \"03-01-03-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:41:31', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061441313461722926491346', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061409428101722924582810\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000068\", \"taskStatus\": 2, \"destination\": \"03-02-09-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:41:31', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061441353041722926495304', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000101\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '10.90.106.61', '2024-08-06 14:41:35', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061441461531722926506153', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061408197431722924499743\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000041\", \"taskStatus\": 100, \"destination\": \"04-01-07-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:41:46', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061441524611722926512461', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061405179751722924317975\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000039\", \"taskStatus\": 100, \"destination\": \"07-01-05-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:41:52', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061441571661722926517166', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061405551481722924355148\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000073\", \"taskStatus\": 100, \"destination\": \"04-01-06-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:41:57', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061441591811722926519181', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061440598271722926459827\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000093\", \"taskStatus\": 100, \"destination\": \"03-01-03-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:41:59', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061442047061722926524706', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061409240211722924564021\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000101\", \"taskStatus\": 2, \"destination\": \"05-01-07-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:42:05', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061442047211722926524721', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061410341861722924634186\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000047\", \"taskStatus\": 2, \"destination\": \"04-01-08-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:42:05', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061442139411722926533941', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061404455721722924285572\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000029\", \"taskStatus\": 2, \"destination\": \"02-02-06-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:42:14', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061442139751722926533975', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000067\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '10.90.106.61', '2024-08-06 14:42:14', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061442142151722926534215', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061409428101722924582810\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000068\", \"taskStatus\": 100, \"destination\": \"03-02-09-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:42:14', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061442156241722926535624', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"02-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061442139731722926533973\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000067\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":0,\\\"message\\\":\\\"任务创建成功,任务号:202408061442139731722926533973\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:42:16', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061442218251722926541825', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000061\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '10.90.106.61', '2024-08-06 14:42:22', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061442236351722926543635', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"05-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061442218231722926541823\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000061\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":0,\\\"message\\\":\\\"任务创建成功,任务号:202408061442218231722926541823\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:42:24', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061442323611722926552361', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000168\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '10.90.106.61', '2024-08-06 14:42:32', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061442336421722926553642', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"07-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061442323601722926552360\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000168\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":0,\\\"message\\\":\\\"任务创建成功,任务号:202408061442323601722926552360\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:42:34', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061442359491722926555949', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000038\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '10.90.106.61', '2024-08-06 14:42:36', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061442361491722926556149', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061410341861722924634186\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000047\", \"taskStatus\": 100, \"destination\": \"04-01-08-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:42:36', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061442376321722926557632', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"08-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061442359471722926555947\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000038\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":0,\\\"message\\\":\\\"任务创建成功,任务号:202408061442359471722926555947\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:42:38', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061442451321722926565132', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061404455721722924285572\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000029\", \"taskStatus\": 100, \"destination\": \"02-02-06-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:42:45', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061442471551722926567155', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061409240211722924564021\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000101\", \"taskStatus\": 100, \"destination\": \"05-01-07-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:42:47', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061442473171722926567317', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061442139731722926533973\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000067\", \"taskStatus\": 2, \"destination\": \"02-01-11-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:42:47', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061442513781722926571378', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061442218231722926541823\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000061\", \"taskStatus\": 2, \"destination\": \"05-01-08-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:42:51', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061442584351722926578435', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061442323601722926552360\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000168\", \"taskStatus\": 2, \"destination\": \"07-01-08-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:42:58', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061443090201722926589020', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000033\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '10.90.106.61', '2024-08-06 14:43:09', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061443096621722926589662', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"02-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061443090181722926589018\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000033\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":0,\\\"message\\\":\\\"任务创建成功,任务号:202408061443090181722926589018\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:43:10', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061443125501722926592550', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000080\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '10.90.106.61', '2024-08-06 14:43:13', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061443136501722926593650', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"01-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061443125491722926592549\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000080\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":0,\\\"message\\\":\\\"任务创建成功,任务号:202408061443125491722926592549\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:43:14', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061443160951722926596095', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000193\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '10.90.106.61', '2024-08-06 14:43:16', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061443176631722926597663', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"04-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061443160941722926596094\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000193\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":0,\\\"message\\\":\\\"任务创建成功,任务号:202408061443160941722926596094\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:43:18', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061443221531722926602153', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061442139731722926533973\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000067\", \"taskStatus\": 100, \"destination\": \"02-01-11-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:43:22', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061443221911722926602191', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061442218231722926541823\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000061\", \"taskStatus\": 100, \"destination\": \"05-01-08-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:43:22', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061443271221722926607122', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000076\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '10.90.106.61', '2024-08-06 14:43:27', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061443276871722926607687', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"07-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061443271211722926607121\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000076\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":0,\\\"message\\\":\\\"任务创建成功,任务号:202408061443271211722926607121\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:43:28', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061443281601722926608160', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061442323601722926552360\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000168\", \"taskStatus\": 100, \"destination\": \"07-01-08-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:43:28', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061443289421722926608942', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061442359471722926555947\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000038\", \"taskStatus\": 2, \"destination\": \"08-01-08-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:43:29', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061443316581722926611658', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000042\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '10.90.106.61', '2024-08-06 14:43:32', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061443336721722926613672', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"09-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061443316561722926611656\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000042\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":0,\\\"message\\\":\\\"任务创建成功,任务号:202408061443316561722926611656\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:43:34', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061443363371722926616337', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000016\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '10.90.106.61', '2024-08-06 14:43:36', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061443376821722926617682', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"03-01-04-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061443363351722926616335\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000016\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":0,\\\"message\\\":\\\"任务创建成功,任务号:202408061443363351722926616335\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:43:38', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061443400481722926620048', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061443090181722926589018\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000033\", \"taskStatus\": 2, \"destination\": \"02-01-04-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:43:40', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061443418171722926621817', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000003\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '10.90.106.61', '2024-08-06 14:43:42', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061443436751722926623675', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"01-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061443418151722926621815\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000003\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":0,\\\"message\\\":\\\"任务创建成功,任务号:202408061443418151722926621815\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:43:44', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061443451921722926625192', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061443160941722926596094\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000193\", \"taskStatus\": 2, \"destination\": \"04-01-09-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:43:45', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061443471171722926627117', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061443125491722926592549\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000080\", \"taskStatus\": 2, \"destination\": \"01-01-12-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:43:47', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061443534861722926633486', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061443271211722926607121\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000076\", \"taskStatus\": 2, \"destination\": \"07-01-11-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:43:53', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061444007991722926640799', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000030\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '10.90.106.61', '2024-08-06 14:44:01', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061444011751722926641175', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061442359471722926555947\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000038\", \"taskStatus\": 100, \"destination\": \"08-01-08-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:44:01', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061444016341722926641634', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061443316561722926611656\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000042\", \"taskStatus\": 2, \"destination\": \"09-01-08-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:44:02', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061444016611722926641661', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"05-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061444007981722926640798\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000030\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":0,\\\"message\\\":\\\"任务创建成功,任务号:202408061444007981722926640798\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:44:02', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061444045271722926644527', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000023\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '10.90.106.61', '2024-08-06 14:44:05', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061444056871722926645687', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"06-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061444045251722926644525\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000023\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":0,\\\"message\\\":\\\"任务创建成功,任务号:202408061444045251722926644525\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:44:06', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061444081451722926648145', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061443090181722926589018\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000033\", \"taskStatus\": 100, \"destination\": \"02-01-04-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:44:08', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061444087501722926648750', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061443363351722926616335\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000016\", \"taskStatus\": 2, \"destination\": \"03-01-04-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:44:09', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061444095971722926649597', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000116\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '10.90.106.61', '2024-08-06 14:44:10', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061444096851722926649685', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"08-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061444095951722926649595\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000116\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":0,\\\"message\\\":\\\"任务创建成功,任务号:202408061444095951722926649595\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:44:10', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061444175321722926657532', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000079\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '10.90.106.61', '2024-08-06 14:44:18', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061444181821722926658182', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061443160941722926596094\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000193\", \"taskStatus\": 100, \"destination\": \"04-01-09-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:44:18', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061444241571722926664157', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061443125491722926592549\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000080\", \"taskStatus\": 100, \"destination\": \"01-01-12-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:44:24', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061444271861722926667186', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061443271211722926607121\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000076\", \"taskStatus\": 100, \"destination\": \"07-01-11-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:44:27', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061444296171722926669617', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000069\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '10.90.106.61', '2024-08-06 14:44:30', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061444296621722926669662', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061444007981722926640798\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000030\", \"taskStatus\": 2, \"destination\": \"05-01-09-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:44:30', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061444296921722926669692', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"03-01-05-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061444296161722926669616\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000069\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":0,\\\"message\\\":\\\"任务创建成功,任务号:202408061444296161722926669616\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:44:30', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061444312891722926671289', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061444045251722926644525\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000023\", \"taskStatus\": 2, \"destination\": \"06-01-12-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:44:31', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061444332161722926673216', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000027\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '10.90.106.61', '2024-08-06 14:44:33', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061444336971722926673697', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"02-01-13-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061444332151722926673215\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000027\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":0,\\\"message\\\":\\\"任务创建成功,任务号:202408061444332151722926673215\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:44:34', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061444341431722926674143', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061443316561722926611656\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000042\", \"taskStatus\": 100, \"destination\": \"09-01-08-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:44:34', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061444344211722926674421', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061444095951722926649595\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000116\", \"taskStatus\": 2, \"destination\": \"08-01-09-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:44:34', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061444351201722926675120', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061443363351722926616335\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000016\", \"taskStatus\": 100, \"destination\": \"03-01-04-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:44:35', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061444373521722926677352', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000028\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '10.90.106.61', '2024-08-06 14:44:37', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061444377401722926677740', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"04-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061444373501722926677350\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000028\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":0,\\\"message\\\":\\\"任务创建成功,任务号:202408061444373501722926677350\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:44:38', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061444425121722926682512', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000078\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '10.90.106.61', '2024-08-06 14:44:43', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061444437131722926683713', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"07-01-18-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061444425101722926682510\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000078\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":0,\\\"message\\\":\\\"任务创建成功,任务号:202408061444425101722926682510\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:44:44', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061444449341722926684934', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061443418151722926621815\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000003\", \"taskStatus\": 2, \"destination\": \"01-01-13-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:44:45', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061444456981722926685698', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"ASRS-#1\", \"vehicleNo\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"确认成功,放行\\\"}\"', '10.90.106.61', '2024-08-06 14:44:46', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061444465911722926686591', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000107\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '10.90.106.61', '2024-08-06 14:44:47', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061444478261722926687826', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"09-01-09-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061444465901722926686590\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000107\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":0,\\\"message\\\":\\\"任务创建成功,任务号:202408061444465901722926686590\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:44:48', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061444500731722926690073', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021033564131722566036413\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000079\", \"taskStatus\": 2, \"destination\": \"02-01-10-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:44:50', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061444505811722926690581', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000102\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '10.90.106.61', '2024-08-06 14:44:51', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061444512181722926691218', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"ASRS-#1\", \"vehicleNo\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"确认成功,放行\\\"}\"', '10.90.106.61', '2024-08-06 14:44:51', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061444517261722926691726', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"03-01-06-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061444505791722926690579\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000102\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":0,\\\"message\\\":\\\"任务创建成功,任务号:202408061444505791722926690579\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:44:52', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061444567501722926696750', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"ASRS-#1\", \"vehicleNo\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"确认成功,放行\\\"}\"', '10.90.106.61', '2024-08-06 14:44:57', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061445003391722926700339', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"ASRS-#1\", \"vehicleNo\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"确认成功,放行\\\"}\"', '10.90.106.61', '2024-08-06 14:45:00', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061445008571722926700857', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000054\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '10.90.106.61', '2024-08-06 14:45:01', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061445017131722926701713', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"01-01-14-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061445008551722926700855\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000054\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":0,\\\"message\\\":\\\"任务创建成功,任务号:202408061445008551722926700855\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:45:02', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061445021531722926702153', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061444007981722926640798\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000030\", \"taskStatus\": 100, \"destination\": \"05-01-09-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:45:02', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061445061421722926706142', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061444373501722926677350\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000028\", \"taskStatus\": 2, \"destination\": \"04-01-10-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:45:06', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061445081231722926708123', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061444045251722926644525\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000023\", \"taskStatus\": 100, \"destination\": \"06-01-12-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:45:08', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061445081601722926708160', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061444095951722926649595\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000116\", \"taskStatus\": 100, \"destination\": \"08-01-09-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:45:08', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061445083631722926708363', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061444425101722926682510\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000078\", \"taskStatus\": 2, \"destination\": \"07-01-18-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:45:08', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061445101981722926710198', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061444465901722926686590\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000107\", \"taskStatus\": 2, \"destination\": \"09-01-09-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:45:10', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061445145301722926714530', 'Wcs请求释放箱子(站台实体按钮触发)', 'requestFreeVehicle', '[{\"location\": \"ASRS-#1\", \"vehicleNo\": \"\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"确认成功,放行\\\"}\"', '10.90.106.61', '2024-08-06 14:45:15', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061445200171722926720017', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000197\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '10.90.106.61', '2024-08-06 14:45:20', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061445211331722926721133', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408021033564131722566036413\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000079\", \"taskStatus\": 100, \"destination\": \"02-01-10-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:45:21', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061445217271722926721727', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"04-01-11-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061445200161722926720016\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000197\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":0,\\\"message\\\":\\\"任务创建成功,任务号:202408061445200161722926720016\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:45:22', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061445220341722926722034', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061444505791722926690579\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000102\", \"taskStatus\": 2, \"destination\": \"03-01-06-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:45:22', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061445220701722926722070', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061444296161722926669616\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000069\", \"taskStatus\": 2, \"destination\": \"03-01-05-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:45:22', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061445231251722926723125', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061443418151722926621815\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000003\", \"taskStatus\": 100, \"destination\": \"01-01-13-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:45:23', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061445237971722926723797', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061444332151722926673215\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000027\", \"taskStatus\": 2, \"destination\": \"02-01-13-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:45:24', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061445259071722926725907', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000059\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '10.90.106.61', '2024-08-06 14:45:26', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061445277481722926727748', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"06-01-19-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061445259051722926725905\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000059\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":0,\\\"message\\\":\\\"任务创建成功,任务号:202408061445259051722926725905\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:45:28', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061445313921722926731392', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000022\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '10.90.106.61', '2024-08-06 14:45:31', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061445317341722926731734', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"08-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061445313901722926731390\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000022\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":0,\\\"message\\\":\\\"任务创建成功,任务号:202408061445313901722926731390\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:45:32', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061445346681722926734668', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000091\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '10.90.106.61', '2024-08-06 14:45:35', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061445357441722926735744', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"02-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061445346671722926734667\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000091\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":0,\\\"message\\\":\\\"任务创建成功,任务号:202408061445346671722926734667\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:45:36', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061445401431722926740143', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061444373501722926677350\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000028\", \"taskStatus\": 100, \"destination\": \"04-01-10-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:45:40', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061445441521722926744152', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061444465901722926686590\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000107\", \"taskStatus\": 100, \"destination\": \"09-01-09-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:45:44', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061445453871722926745387', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000043\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '10.90.106.61', '2024-08-06 14:45:45', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061445457631722926745763', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"01-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061445453851722926745385\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000043\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":0,\\\"message\\\":\\\"任务创建成功,任务号:202408061445453851722926745385\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:45:46', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061445491171722926749117', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061445200161722926720016\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000197\", \"taskStatus\": 2, \"destination\": \"04-01-11-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:45:49', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061445491241722926749124', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061444425101722926682510\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000078\", \"taskStatus\": 100, \"destination\": \"07-01-18-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:45:49', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061445493021722926749302', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000075\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '10.90.106.61', '2024-08-06 14:45:49', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061445497281722926749728', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"04-01-12-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061445492991722926749299\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000075\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":0,\\\"message\\\":\\\"任务创建成功,任务号:202408061445492991722926749299\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:45:50', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061445514991722926751499', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061445259051722926725905\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000059\", \"taskStatus\": 2, \"destination\": \"06-01-19-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:45:51', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061445527371722926752737', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000154\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '10.90.106.61', '2024-08-06 14:45:53', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061445537511722926753751', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"07-01-19-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061445527351722926752735\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000154\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":0,\\\"message\\\":\\\"任务创建成功,任务号:202408061445527351722926752735\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:45:54', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061445547771722926754777', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061445313901722926731390\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000022\", \"taskStatus\": 2, \"destination\": \"08-01-10-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:45:55', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061446016881722926761688', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061445008551722926700855\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000054\", \"taskStatus\": 2, \"destination\": \"01-01-14-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:46:02', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061446021511722926762151', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061444332151722926673215\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000027\", \"taskStatus\": 100, \"destination\": \"02-01-13-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:46:02', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061446242391722926784239', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061445200161722926720016\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000197\", \"taskStatus\": 100, \"destination\": \"04-01-11-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:46:24', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061446249401722926784940', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061445492991722926749299\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000075\", \"taskStatus\": 2, \"destination\": \"04-01-12-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:46:25', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061446301541722926790154', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061445313901722926731390\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000022\", \"taskStatus\": 100, \"destination\": \"08-01-10-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:46:30', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061446374121722926797412', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061445259051722926725905\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000059\", \"taskStatus\": 100, \"destination\": \"06-01-19-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:46:37', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061446374241722926797424', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061445527351722926752735\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000154\", \"taskStatus\": 2, \"destination\": \"07-01-19-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:46:37', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061446411951722926801195', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061445008551722926700855\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000054\", \"taskStatus\": 100, \"destination\": \"01-01-14-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:46:41', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061446414981722926801498', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061445453851722926745385\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000043\", \"taskStatus\": 2, \"destination\": \"01-01-15-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:46:41', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061446471231722926807123', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061444296161722926669616\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000069\", \"taskStatus\": 100, \"destination\": \"03-01-05-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:46:47', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061446541301722926814130', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000034\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '10.90.106.61', '2024-08-06 14:46:54', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061446557671722926815767', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"09-01-10-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061446541291722926814129\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000034\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":0,\\\"message\\\":\\\"任务创建成功,任务号:202408061446541291722926814129\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:46:56', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061446577541722926817754', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000148\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '10.90.106.61', '2024-08-06 14:46:58', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061446580131722926818013', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061445346671722926734667\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000091\", \"taskStatus\": 2, \"destination\": \"02-01-08-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:46:58', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061446581521722926818152', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061444505791722926690579\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000102\", \"taskStatus\": 100, \"destination\": \"03-01-06-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:46:58', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061446597791722926819779', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"03-01-08-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061446577531722926817753\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000148\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":0,\\\"message\\\":\\\"任务创建成功,任务号:202408061446577531722926817753\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:47:00', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061447012781722926821278', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061445492991722926749299\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000075\", \"taskStatus\": 100, \"destination\": \"04-01-12-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:47:01', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061447122341722926832234', 'Wcs请求箱子是否回库', 'requestBack', '[{\"vehicleId\": \"ASRS000081\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"可以回库。\\\"}\"', '10.90.106.61', '2024-08-06 14:47:12', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061447138041722926833804', '向WCS发送任务', 'SetStackerTask', '\"[{\\\"destination\\\":\\\"02-01-15-01\\\",\\\"priority\\\":1,\\\"taskId\\\":\\\"202408061447122331722926832233\\\",\\\"taskType\\\":1,\\\"vehicleNo\\\":\\\"ASRS000081\\\",\\\"vehicleSize\\\":1,\\\"weight\\\":0.000}]\"', '\"{\\\"code\\\":0,\\\"message\\\":\\\"任务创建成功,任务号:202408061447122331722926832233\\\",\\\"returnData\\\":[]}\"', 'http://10.90.106.61:18990/api/Wms/WmsTask/SetStackerTask', '2024-08-06 14:47:14', 'WMS'); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061447175401722926837540', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061446541291722926814129\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000034\", \"taskStatus\": 2, \"destination\": \"09-01-10-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:47:18', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061447221841722926842184', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061445453851722926745385\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000043\", \"taskStatus\": 100, \"destination\": \"01-01-15-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:47:22', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061447231461722926843146', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061445527351722926752735\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000154\", \"taskStatus\": 100, \"destination\": \"07-01-19-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:47:23', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061447292041722926849204', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061445346671722926734667\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000091\", \"taskStatus\": 100, \"destination\": \"02-01-08-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:47:29', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061447293301722926849330', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061446577531722926817753\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000148\", \"taskStatus\": 2, \"destination\": \"03-01-08-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:47:29', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061447458451722926865845', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061447122331722926832233\", \"message\": \"开始执行\", \"vehicleNo\": \"ASRS000081\", \"taskStatus\": 2, \"destination\": \"02-01-15-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:47:46', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061447521911722926872191', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061446541291722926814129\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000034\", \"taskStatus\": 100, \"destination\": \"09-01-10-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:47:52', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061448012441722926881244', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061446577531722926817753\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000148\", \"taskStatus\": 100, \"destination\": \"03-01-08-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:48:01', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408061448261481722926906148', 'Wcs任务反馈', 'sendTaskResult', '[{\"taskId\": \"202408061447122331722926832233\", \"message\": \"任务完成\", \"vehicleNo\": \"ASRS000081\", \"taskStatus\": 100, \"destination\": \"02-01-15-01\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"处理任务反馈成功\\\"}\"', '10.90.106.61', '2024-08-06 14:48:26', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408070922495191722993769519', '带密码登录', 'loginWithAuth', '[{\"isAsc\": true, \"pageNo\": 1, \"roleId\": null, \"sortBy\": \"\", \"userId\": null, \"addTime\": null, \"addUser\": \"\", \"pageSize\": 10, \"userName\": \"\", \"updateTime\": null, \"loginAccount\": \"admin\", \"loginPassword\": \"admin\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"登录成功\\\",\\\"returnData\\\":{\\\"menuList\\\":[{\\\"children\\\":[{\\\"children\\\":[],\\\"id\\\":\\\"11\\\",\\\"labelName\\\":\\\"入库\\\",\\\"path\\\":\\\"/goodsIn\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"12\\\",\\\"labelName\\\":\\\"出库\\\",\\\"path\\\":\\\"/goodsOut\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"13\\\",\\\"labelName\\\":\\\"盘点\\\",\\\"path\\\":\\\"/inventory\\\"}],\\\"iconValue\\\":\\\"Operation\\\",\\\"id\\\":\\\"1\\\",\\\"labelName\\\":\\\"操作\\\",\\\"path\\\":\\\"\\\"},{\\\"children\\\":[{\\\"children\\\":[],\\\"id\\\":\\\"21\\\",\\\"labelName\\\":\\\"库存信息\\\",\\\"path\\\":\\\"/stock\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"22\\\",\\\"labelName\\\":\\\"物料信息\\\",\\\"path\\\":\\\"/goods\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"23\\\",\\\"labelName\\\":\\\"入库记录\\\",\\\"path\\\":\\\"/inTaskRecord\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"24\\\",\\\"labelName\\\":\\\"出库记录\\\",\\\"path\\\":\\\"/outTaskRecord\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"241\\\",\\\"labelName\\\":\\\"盘点记录\\\",\\\"path\\\":\\\"/inventoryRecord\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"25\\\",\\\"labelName\\\":\\\"任务监控\\\",\\\"path\\\":\\\"/taskMonitor\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"26\\\",\\\"labelName\\\":\\\"库位监控\\\",\\\"path\\\":\\\"/location\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"27\\\",\\\"labelName\\\":\\\"料箱监控\\\",\\\"path\\\":\\\"/vehicles\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"28\\\",\\\"labelName\\\":\\\"接口日志\\\",\\\"path\\\":\\\"/wmsLog\\\"}],\\\"iconValue\\\":\\\"Histogram\\\",\\\"id\\\":\\\"2\\\",\\\"labelName\\\":\\\"数据\\\",\\\"path\\\":\\\"\\\"},{\\\"children\\\":[{\\\"children\\\":[],\\\"id\\\":\\\"35\\\",\\\"labelName\\\":\\\"系统配置\\\",\\\"path\\\":\\\"/config\\\"}],\\\"iconValue\\\":\\\"Setting\\\",\\\"id\\\":\\\"3\\\",\\\"labelName\\\":\\\"系统\\\"},{\\\"children\\\":[{\\\"children\\\":[],\\\"id\\\":\\\"41\\\",\\\"labelName\\\":\\\"备料执行\\\",\\\"path\\\":\\\"/testDoKitting\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"42\\\",\\\"labelName\\\":\\\"备料完成\\\",\\\"path\\\":\\\"/testFinishKitting\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"43\\\",\\\"labelName\\\":\\\"呼叫空箱\\\",\\\"path\\\":\\\"/testCallEmptyVehicle\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"44\\\",\\\"labelName\\\":\\\"整理盒子\\\",\\\"path\\\":\\\"/testSortBoxs\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"45\\\",\\\"labelName\\\":\\\"上传DBS\\\",\\\"path\\\":\\\"/uploadDbs\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"46\\\",\\\"labelName\\\":\\\"上传工单\\\",\\\"path\\\":\\\"/uploadOrders\\\"}],\\\"iconValue\\\":\\\"Lock\\\",\\\"id\\\":\\\"4\\\",\\\"labelName\\\":\\\"测试\\\"}],\\\"standId\\\":\\\"\\\",\\\"user\\\":{\\\"addTime\\\":\\\"2023-03-23 11:17:06\\\",\\\"addUser\\\":\\\"系统\\\",\\\"loginAccount\\\":\\\"admin\\\",\\\"loginPassword\\\":\\\"812C0C84E2970FA98456DDC5B0B59594\\\",\\\"roleId\\\":1,\\\"updateTime\\\":\\\"2023-03-23 11:17:10\\\",\\\"userId\\\":1,\\\"userName\\\":\\\"管理员\\\"}}}\"', '127.0.0.1', '2024-08-07 09:22:50', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408070929350041722994175004', '获取当前站台任务完成信息', 'getFinishedWorkInfo', '[{\"goodsId\": \"\", \"standId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '127.0.0.1', '2024-08-07 09:29:35', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408071035499821722998149982', '带密码登录', 'loginWithAuth', '[{\"isAsc\": true, \"pageNo\": 1, \"roleId\": null, \"sortBy\": \"\", \"userId\": null, \"addTime\": null, \"addUser\": \"\", \"pageSize\": 10, \"userName\": \"\", \"updateTime\": null, \"loginAccount\": \"admin\", \"loginPassword\": \"admin\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"登录成功\\\",\\\"returnData\\\":{\\\"menuList\\\":[{\\\"children\\\":[{\\\"children\\\":[],\\\"id\\\":\\\"11\\\",\\\"labelName\\\":\\\"入库\\\",\\\"path\\\":\\\"/goodsIn\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"12\\\",\\\"labelName\\\":\\\"出库\\\",\\\"path\\\":\\\"/goodsOut\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"13\\\",\\\"labelName\\\":\\\"盘点\\\",\\\"path\\\":\\\"/inventory\\\"}],\\\"iconValue\\\":\\\"Operation\\\",\\\"id\\\":\\\"1\\\",\\\"labelName\\\":\\\"操作\\\",\\\"path\\\":\\\"\\\"},{\\\"children\\\":[{\\\"children\\\":[],\\\"id\\\":\\\"21\\\",\\\"labelName\\\":\\\"库存信息\\\",\\\"path\\\":\\\"/stock\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"22\\\",\\\"labelName\\\":\\\"物料信息\\\",\\\"path\\\":\\\"/goods\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"23\\\",\\\"labelName\\\":\\\"入库记录\\\",\\\"path\\\":\\\"/inTaskRecord\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"24\\\",\\\"labelName\\\":\\\"出库记录\\\",\\\"path\\\":\\\"/outTaskRecord\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"241\\\",\\\"labelName\\\":\\\"盘点记录\\\",\\\"path\\\":\\\"/inventoryRecord\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"25\\\",\\\"labelName\\\":\\\"任务监控\\\",\\\"path\\\":\\\"/taskMonitor\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"26\\\",\\\"labelName\\\":\\\"库位监控\\\",\\\"path\\\":\\\"/location\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"27\\\",\\\"labelName\\\":\\\"料箱监控\\\",\\\"path\\\":\\\"/vehicles\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"28\\\",\\\"labelName\\\":\\\"接口日志\\\",\\\"path\\\":\\\"/wmsLog\\\"}],\\\"iconValue\\\":\\\"Histogram\\\",\\\"id\\\":\\\"2\\\",\\\"labelName\\\":\\\"数据\\\",\\\"path\\\":\\\"\\\"},{\\\"children\\\":[{\\\"children\\\":[],\\\"id\\\":\\\"35\\\",\\\"labelName\\\":\\\"系统配置\\\",\\\"path\\\":\\\"/config\\\"}],\\\"iconValue\\\":\\\"Setting\\\",\\\"id\\\":\\\"3\\\",\\\"labelName\\\":\\\"系统\\\"},{\\\"children\\\":[{\\\"children\\\":[],\\\"id\\\":\\\"41\\\",\\\"labelName\\\":\\\"备料执行\\\",\\\"path\\\":\\\"/testDoKitting\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"42\\\",\\\"labelName\\\":\\\"备料完成\\\",\\\"path\\\":\\\"/testFinishKitting\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"43\\\",\\\"labelName\\\":\\\"呼叫空箱\\\",\\\"path\\\":\\\"/testCallEmptyVehicle\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"44\\\",\\\"labelName\\\":\\\"整理盒子\\\",\\\"path\\\":\\\"/testSortBoxs\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"45\\\",\\\"labelName\\\":\\\"上传DBS\\\",\\\"path\\\":\\\"/uploadDbs\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"46\\\",\\\"labelName\\\":\\\"上传工单\\\",\\\"path\\\":\\\"/uploadOrders\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"47\\\",\\\"labelName\\\":\\\"体验拣选\\\",\\\"path\\\":\\\"/play_boy\\\"}],\\\"iconValue\\\":\\\"Lock\\\",\\\"id\\\":\\\"4\\\",\\\"labelName\\\":\\\"测试\\\"}],\\\"standId\\\":\\\"\\\",\\\"user\\\":{\\\"addTime\\\":\\\"2023-03-23 11:17:06\\\",\\\"addUser\\\":\\\"系统\\\",\\\"loginAccount\\\":\\\"admin\\\",\\\"loginPassword\\\":\\\"812C0C84E2970FA98456DDC5B0B59594\\\",\\\"roleId\\\":1,\\\"updateTime\\\":\\\"2023-03-23 11:17:10\\\",\\\"userId\\\":1,\\\"userName\\\":\\\"管理员\\\"}}}\"', '127.0.0.1', '2024-08-07 10:35:50', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408071053367791722999216779', '带密码登录', 'loginWithAuth', '[{\"isAsc\": true, \"pageNo\": 1, \"roleId\": null, \"sortBy\": \"\", \"userId\": null, \"addTime\": null, \"addUser\": \"\", \"pageSize\": 10, \"userName\": \"\", \"updateTime\": null, \"loginAccount\": \"admin\", \"loginPassword\": \"admin\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"登录成功\\\",\\\"returnData\\\":{\\\"menuList\\\":[{\\\"children\\\":[{\\\"children\\\":[],\\\"id\\\":\\\"11\\\",\\\"labelName\\\":\\\"入库\\\",\\\"path\\\":\\\"/goodsIn\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"12\\\",\\\"labelName\\\":\\\"出库\\\",\\\"path\\\":\\\"/goodsOut\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"13\\\",\\\"labelName\\\":\\\"盘点\\\",\\\"path\\\":\\\"/inventory\\\"}],\\\"iconValue\\\":\\\"Operation\\\",\\\"id\\\":\\\"1\\\",\\\"labelName\\\":\\\"操作\\\",\\\"path\\\":\\\"\\\"},{\\\"children\\\":[{\\\"children\\\":[],\\\"id\\\":\\\"21\\\",\\\"labelName\\\":\\\"库存信息\\\",\\\"path\\\":\\\"/stock\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"22\\\",\\\"labelName\\\":\\\"物料信息\\\",\\\"path\\\":\\\"/goods\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"23\\\",\\\"labelName\\\":\\\"入库记录\\\",\\\"path\\\":\\\"/inTaskRecord\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"24\\\",\\\"labelName\\\":\\\"出库记录\\\",\\\"path\\\":\\\"/outTaskRecord\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"241\\\",\\\"labelName\\\":\\\"盘点记录\\\",\\\"path\\\":\\\"/inventoryRecord\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"25\\\",\\\"labelName\\\":\\\"任务监控\\\",\\\"path\\\":\\\"/taskMonitor\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"26\\\",\\\"labelName\\\":\\\"库位监控\\\",\\\"path\\\":\\\"/location\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"27\\\",\\\"labelName\\\":\\\"料箱监控\\\",\\\"path\\\":\\\"/vehicles\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"28\\\",\\\"labelName\\\":\\\"接口日志\\\",\\\"path\\\":\\\"/wmsLog\\\"}],\\\"iconValue\\\":\\\"Histogram\\\",\\\"id\\\":\\\"2\\\",\\\"labelName\\\":\\\"数据\\\",\\\"path\\\":\\\"\\\"},{\\\"children\\\":[{\\\"children\\\":[],\\\"id\\\":\\\"35\\\",\\\"labelName\\\":\\\"系统配置\\\",\\\"path\\\":\\\"/config\\\"}],\\\"iconValue\\\":\\\"Setting\\\",\\\"id\\\":\\\"3\\\",\\\"labelName\\\":\\\"系统\\\"},{\\\"children\\\":[{\\\"children\\\":[],\\\"id\\\":\\\"41\\\",\\\"labelName\\\":\\\"备料执行\\\",\\\"path\\\":\\\"/testDoKitting\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"42\\\",\\\"labelName\\\":\\\"备料完成\\\",\\\"path\\\":\\\"/testFinishKitting\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"43\\\",\\\"labelName\\\":\\\"呼叫空箱\\\",\\\"path\\\":\\\"/testCallEmptyVehicle\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"44\\\",\\\"labelName\\\":\\\"整理盒子\\\",\\\"path\\\":\\\"/testSortBoxs\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"45\\\",\\\"labelName\\\":\\\"上传DBS\\\",\\\"path\\\":\\\"/uploadDbs\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"46\\\",\\\"labelName\\\":\\\"上传工单\\\",\\\"path\\\":\\\"/uploadOrders\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"47\\\",\\\"labelName\\\":\\\"体验拣选\\\",\\\"path\\\":\\\"/play_boy\\\"}],\\\"iconValue\\\":\\\"Lock\\\",\\\"id\\\":\\\"4\\\",\\\"labelName\\\":\\\"测试\\\"}],\\\"standId\\\":\\\"\\\",\\\"user\\\":{\\\"addTime\\\":\\\"2023-03-23 11:17:06\\\",\\\"addUser\\\":\\\"系统\\\",\\\"loginAccount\\\":\\\"admin\\\",\\\"loginPassword\\\":\\\"812C0C84E2970FA98456DDC5B0B59594\\\",\\\"roleId\\\":1,\\\"updateTime\\\":\\\"2023-03-23 11:17:10\\\",\\\"userId\\\":1,\\\"userName\\\":\\\"管理员\\\"}}}\"', '127.0.0.1', '2024-08-07 10:53:37', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408071053447181722999224718', '获取当前站台任务完成信息', 'getFinishedWorkInfo', '[{\"goodsId\": \"\", \"standId\": \"\"}]', '\"{\\\"code\\\":999,\\\"message\\\":\\\"请求参数缺少站台号。\\\"}\"', '127.0.0.1', '2024-08-07 10:53:45', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408071055593071722999359307', '带密码登录', 'loginWithAuth', '[{\"isAsc\": true, \"pageNo\": 1, \"roleId\": null, \"sortBy\": \"\", \"userId\": null, \"addTime\": null, \"addUser\": \"\", \"pageSize\": 10, \"userName\": \"\", \"updateTime\": null, \"loginAccount\": \"admin\", \"loginPassword\": \"admin\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"登录成功\\\",\\\"returnData\\\":{\\\"menuList\\\":[{\\\"children\\\":[{\\\"children\\\":[],\\\"id\\\":\\\"11\\\",\\\"labelName\\\":\\\"入库\\\",\\\"path\\\":\\\"/goodsIn\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"12\\\",\\\"labelName\\\":\\\"出库\\\",\\\"path\\\":\\\"/goodsOut\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"13\\\",\\\"labelName\\\":\\\"盘点\\\",\\\"path\\\":\\\"/inventory\\\"}],\\\"iconValue\\\":\\\"Operation\\\",\\\"id\\\":\\\"1\\\",\\\"labelName\\\":\\\"操作\\\",\\\"path\\\":\\\"\\\"},{\\\"children\\\":[{\\\"children\\\":[],\\\"id\\\":\\\"21\\\",\\\"labelName\\\":\\\"库存信息\\\",\\\"path\\\":\\\"/stock\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"22\\\",\\\"labelName\\\":\\\"物料信息\\\",\\\"path\\\":\\\"/goods\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"23\\\",\\\"labelName\\\":\\\"入库记录\\\",\\\"path\\\":\\\"/inTaskRecord\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"24\\\",\\\"labelName\\\":\\\"出库记录\\\",\\\"path\\\":\\\"/outTaskRecord\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"241\\\",\\\"labelName\\\":\\\"盘点记录\\\",\\\"path\\\":\\\"/inventoryRecord\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"25\\\",\\\"labelName\\\":\\\"任务监控\\\",\\\"path\\\":\\\"/taskMonitor\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"26\\\",\\\"labelName\\\":\\\"库位监控\\\",\\\"path\\\":\\\"/location\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"27\\\",\\\"labelName\\\":\\\"料箱监控\\\",\\\"path\\\":\\\"/vehicles\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"28\\\",\\\"labelName\\\":\\\"接口日志\\\",\\\"path\\\":\\\"/wmsLog\\\"}],\\\"iconValue\\\":\\\"Histogram\\\",\\\"id\\\":\\\"2\\\",\\\"labelName\\\":\\\"数据\\\",\\\"path\\\":\\\"\\\"},{\\\"children\\\":[{\\\"children\\\":[],\\\"id\\\":\\\"35\\\",\\\"labelName\\\":\\\"系统配置\\\",\\\"path\\\":\\\"/config\\\"}],\\\"iconValue\\\":\\\"Setting\\\",\\\"id\\\":\\\"3\\\",\\\"labelName\\\":\\\"系统\\\"},{\\\"children\\\":[{\\\"children\\\":[],\\\"id\\\":\\\"41\\\",\\\"labelName\\\":\\\"备料执行\\\",\\\"path\\\":\\\"/testDoKitting\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"42\\\",\\\"labelName\\\":\\\"备料完成\\\",\\\"path\\\":\\\"/testFinishKitting\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"43\\\",\\\"labelName\\\":\\\"呼叫空箱\\\",\\\"path\\\":\\\"/testCallEmptyVehicle\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"44\\\",\\\"labelName\\\":\\\"整理盒子\\\",\\\"path\\\":\\\"/testSortBoxs\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"45\\\",\\\"labelName\\\":\\\"上传DBS\\\",\\\"path\\\":\\\"/uploadDbs\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"46\\\",\\\"labelName\\\":\\\"上传工单\\\",\\\"path\\\":\\\"/uploadOrders\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"47\\\",\\\"labelName\\\":\\\"体验拣选\\\",\\\"path\\\":\\\"/play_boy\\\"}],\\\"iconValue\\\":\\\"Lock\\\",\\\"id\\\":\\\"4\\\",\\\"labelName\\\":\\\"测试\\\"}],\\\"standId\\\":\\\"\\\",\\\"user\\\":{\\\"addTime\\\":\\\"2023-03-23 11:17:06\\\",\\\"addUser\\\":\\\"系统\\\",\\\"loginAccount\\\":\\\"admin\\\",\\\"loginPassword\\\":\\\"812C0C84E2970FA98456DDC5B0B59594\\\",\\\"roleId\\\":1,\\\"updateTime\\\":\\\"2023-03-23 11:17:10\\\",\\\"userId\\\":1,\\\"userName\\\":\\\"管理员\\\"}}}\"', '127.0.0.1', '2024-08-07 10:55:59', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408071058012411722999481241', '带密码登录', 'loginWithAuth', '[{\"isAsc\": true, \"pageNo\": 1, \"roleId\": null, \"sortBy\": \"\", \"userId\": null, \"addTime\": null, \"addUser\": \"\", \"pageSize\": 10, \"userName\": \"\", \"updateTime\": null, \"loginAccount\": \"admin\", \"loginPassword\": \"admin\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"登录成功\\\",\\\"returnData\\\":{\\\"menuList\\\":[{\\\"children\\\":[{\\\"children\\\":[],\\\"id\\\":\\\"11\\\",\\\"labelName\\\":\\\"入库\\\",\\\"path\\\":\\\"/goodsIn\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"12\\\",\\\"labelName\\\":\\\"出库\\\",\\\"path\\\":\\\"/goodsOut\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"13\\\",\\\"labelName\\\":\\\"盘点\\\",\\\"path\\\":\\\"/inventory\\\"}],\\\"iconValue\\\":\\\"Operation\\\",\\\"id\\\":\\\"1\\\",\\\"labelName\\\":\\\"操作\\\",\\\"path\\\":\\\"\\\"},{\\\"children\\\":[{\\\"children\\\":[],\\\"id\\\":\\\"21\\\",\\\"labelName\\\":\\\"库存信息\\\",\\\"path\\\":\\\"/stock\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"22\\\",\\\"labelName\\\":\\\"物料信息\\\",\\\"path\\\":\\\"/goods\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"23\\\",\\\"labelName\\\":\\\"入库记录\\\",\\\"path\\\":\\\"/inTaskRecord\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"24\\\",\\\"labelName\\\":\\\"出库记录\\\",\\\"path\\\":\\\"/outTaskRecord\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"241\\\",\\\"labelName\\\":\\\"盘点记录\\\",\\\"path\\\":\\\"/inventoryRecord\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"25\\\",\\\"labelName\\\":\\\"任务监控\\\",\\\"path\\\":\\\"/taskMonitor\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"26\\\",\\\"labelName\\\":\\\"库位监控\\\",\\\"path\\\":\\\"/location\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"27\\\",\\\"labelName\\\":\\\"料箱监控\\\",\\\"path\\\":\\\"/vehicles\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"28\\\",\\\"labelName\\\":\\\"接口日志\\\",\\\"path\\\":\\\"/wmsLog\\\"}],\\\"iconValue\\\":\\\"Histogram\\\",\\\"id\\\":\\\"2\\\",\\\"labelName\\\":\\\"数据\\\",\\\"path\\\":\\\"\\\"},{\\\"children\\\":[{\\\"children\\\":[],\\\"id\\\":\\\"35\\\",\\\"labelName\\\":\\\"系统配置\\\",\\\"path\\\":\\\"/config\\\"}],\\\"iconValue\\\":\\\"Setting\\\",\\\"id\\\":\\\"3\\\",\\\"labelName\\\":\\\"系统\\\"},{\\\"children\\\":[{\\\"children\\\":[],\\\"id\\\":\\\"41\\\",\\\"labelName\\\":\\\"备料执行\\\",\\\"path\\\":\\\"/testDoKitting\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"42\\\",\\\"labelName\\\":\\\"备料完成\\\",\\\"path\\\":\\\"/testFinishKitting\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"43\\\",\\\"labelName\\\":\\\"呼叫空箱\\\",\\\"path\\\":\\\"/testCallEmptyVehicle\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"44\\\",\\\"labelName\\\":\\\"整理盒子\\\",\\\"path\\\":\\\"/testSortBoxs\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"45\\\",\\\"labelName\\\":\\\"上传DBS\\\",\\\"path\\\":\\\"/uploadDbs\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"46\\\",\\\"labelName\\\":\\\"上传工单\\\",\\\"path\\\":\\\"/uploadOrders\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"47\\\",\\\"labelName\\\":\\\"体验拣选\\\",\\\"path\\\":\\\"/play_boy\\\"}],\\\"iconValue\\\":\\\"Lock\\\",\\\"id\\\":\\\"4\\\",\\\"labelName\\\":\\\"测试\\\"}],\\\"standId\\\":\\\"\\\",\\\"user\\\":{\\\"addTime\\\":\\\"2023-03-23 11:17:06\\\",\\\"addUser\\\":\\\"系统\\\",\\\"loginAccount\\\":\\\"admin\\\",\\\"loginPassword\\\":\\\"812C0C84E2970FA98456DDC5B0B59594\\\",\\\"roleId\\\":1,\\\"updateTime\\\":\\\"2023-03-23 11:17:10\\\",\\\"userId\\\":1,\\\"userName\\\":\\\"管理员\\\"}}}\"', '127.0.0.1', '2024-08-07 10:58:01', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408071058252341722999505234', '带密码登录', 'loginWithAuth', '[{\"isAsc\": true, \"pageNo\": 1, \"roleId\": null, \"sortBy\": \"\", \"userId\": null, \"addTime\": null, \"addUser\": \"\", \"pageSize\": 10, \"userName\": \"\", \"updateTime\": null, \"loginAccount\": \"admin\", \"loginPassword\": \"admin\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"登录成功\\\",\\\"returnData\\\":{\\\"menuList\\\":[{\\\"children\\\":[{\\\"children\\\":[],\\\"id\\\":\\\"11\\\",\\\"labelName\\\":\\\"入库\\\",\\\"path\\\":\\\"/goodsIn\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"12\\\",\\\"labelName\\\":\\\"出库\\\",\\\"path\\\":\\\"/goodsOut\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"13\\\",\\\"labelName\\\":\\\"盘点\\\",\\\"path\\\":\\\"/inventory\\\"}],\\\"iconValue\\\":\\\"Operation\\\",\\\"id\\\":\\\"1\\\",\\\"labelName\\\":\\\"操作\\\",\\\"path\\\":\\\"\\\"},{\\\"children\\\":[{\\\"children\\\":[],\\\"id\\\":\\\"21\\\",\\\"labelName\\\":\\\"库存信息\\\",\\\"path\\\":\\\"/stock\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"22\\\",\\\"labelName\\\":\\\"物料信息\\\",\\\"path\\\":\\\"/goods\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"23\\\",\\\"labelName\\\":\\\"入库记录\\\",\\\"path\\\":\\\"/inTaskRecord\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"24\\\",\\\"labelName\\\":\\\"出库记录\\\",\\\"path\\\":\\\"/outTaskRecord\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"241\\\",\\\"labelName\\\":\\\"盘点记录\\\",\\\"path\\\":\\\"/inventoryRecord\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"25\\\",\\\"labelName\\\":\\\"任务监控\\\",\\\"path\\\":\\\"/taskMonitor\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"26\\\",\\\"labelName\\\":\\\"库位监控\\\",\\\"path\\\":\\\"/location\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"27\\\",\\\"labelName\\\":\\\"料箱监控\\\",\\\"path\\\":\\\"/vehicles\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"28\\\",\\\"labelName\\\":\\\"接口日志\\\",\\\"path\\\":\\\"/wmsLog\\\"}],\\\"iconValue\\\":\\\"Histogram\\\",\\\"id\\\":\\\"2\\\",\\\"labelName\\\":\\\"数据\\\",\\\"path\\\":\\\"\\\"},{\\\"children\\\":[{\\\"children\\\":[],\\\"id\\\":\\\"35\\\",\\\"labelName\\\":\\\"系统配置\\\",\\\"path\\\":\\\"/config\\\"}],\\\"iconValue\\\":\\\"Setting\\\",\\\"id\\\":\\\"3\\\",\\\"labelName\\\":\\\"系统\\\"},{\\\"children\\\":[{\\\"children\\\":[],\\\"id\\\":\\\"41\\\",\\\"labelName\\\":\\\"备料执行\\\",\\\"path\\\":\\\"/testDoKitting\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"42\\\",\\\"labelName\\\":\\\"备料完成\\\",\\\"path\\\":\\\"/testFinishKitting\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"43\\\",\\\"labelName\\\":\\\"呼叫空箱\\\",\\\"path\\\":\\\"/testCallEmptyVehicle\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"44\\\",\\\"labelName\\\":\\\"整理盒子\\\",\\\"path\\\":\\\"/testSortBoxs\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"45\\\",\\\"labelName\\\":\\\"上传DBS\\\",\\\"path\\\":\\\"/uploadDbs\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"46\\\",\\\"labelName\\\":\\\"上传工单\\\",\\\"path\\\":\\\"/uploadOrders\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"47\\\",\\\"labelName\\\":\\\"体验拣选\\\",\\\"path\\\":\\\"/play_boy\\\"}],\\\"iconValue\\\":\\\"Lock\\\",\\\"id\\\":\\\"4\\\",\\\"labelName\\\":\\\"测试\\\"}],\\\"standId\\\":\\\"\\\",\\\"user\\\":{\\\"addTime\\\":\\\"2023-03-23 11:17:06\\\",\\\"addUser\\\":\\\"系统\\\",\\\"loginAccount\\\":\\\"admin\\\",\\\"loginPassword\\\":\\\"812C0C84E2970FA98456DDC5B0B59594\\\",\\\"roleId\\\":1,\\\"updateTime\\\":\\\"2023-03-23 11:17:10\\\",\\\"userId\\\":1,\\\"userName\\\":\\\"管理员\\\"}}}\"', '127.0.0.1', '2024-08-07 10:58:25', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408071059051491722999545149', '带密码登录', 'loginWithAuth', '[{\"isAsc\": true, \"pageNo\": 1, \"roleId\": null, \"sortBy\": \"\", \"userId\": null, \"addTime\": null, \"addUser\": \"\", \"pageSize\": 10, \"userName\": \"\", \"updateTime\": null, \"loginAccount\": \"admin\", \"loginPassword\": \"admin\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"登录成功\\\",\\\"returnData\\\":{\\\"menuList\\\":[{\\\"children\\\":[{\\\"children\\\":[],\\\"id\\\":\\\"11\\\",\\\"labelName\\\":\\\"入库\\\",\\\"path\\\":\\\"/goodsIn\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"12\\\",\\\"labelName\\\":\\\"出库\\\",\\\"path\\\":\\\"/goodsOut\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"13\\\",\\\"labelName\\\":\\\"盘点\\\",\\\"path\\\":\\\"/inventory\\\"}],\\\"iconValue\\\":\\\"Operation\\\",\\\"id\\\":\\\"1\\\",\\\"labelName\\\":\\\"操作\\\",\\\"path\\\":\\\"\\\"},{\\\"children\\\":[{\\\"children\\\":[],\\\"id\\\":\\\"21\\\",\\\"labelName\\\":\\\"库存信息\\\",\\\"path\\\":\\\"/stock\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"22\\\",\\\"labelName\\\":\\\"物料信息\\\",\\\"path\\\":\\\"/goods\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"23\\\",\\\"labelName\\\":\\\"入库记录\\\",\\\"path\\\":\\\"/inTaskRecord\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"24\\\",\\\"labelName\\\":\\\"出库记录\\\",\\\"path\\\":\\\"/outTaskRecord\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"241\\\",\\\"labelName\\\":\\\"盘点记录\\\",\\\"path\\\":\\\"/inventoryRecord\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"25\\\",\\\"labelName\\\":\\\"任务监控\\\",\\\"path\\\":\\\"/taskMonitor\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"26\\\",\\\"labelName\\\":\\\"库位监控\\\",\\\"path\\\":\\\"/location\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"27\\\",\\\"labelName\\\":\\\"料箱监控\\\",\\\"path\\\":\\\"/vehicles\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"28\\\",\\\"labelName\\\":\\\"接口日志\\\",\\\"path\\\":\\\"/wmsLog\\\"}],\\\"iconValue\\\":\\\"Histogram\\\",\\\"id\\\":\\\"2\\\",\\\"labelName\\\":\\\"数据\\\",\\\"path\\\":\\\"\\\"},{\\\"children\\\":[{\\\"children\\\":[],\\\"id\\\":\\\"35\\\",\\\"labelName\\\":\\\"系统配置\\\",\\\"path\\\":\\\"/config\\\"}],\\\"iconValue\\\":\\\"Setting\\\",\\\"id\\\":\\\"3\\\",\\\"labelName\\\":\\\"系统\\\"},{\\\"children\\\":[{\\\"children\\\":[],\\\"id\\\":\\\"41\\\",\\\"labelName\\\":\\\"备料执行\\\",\\\"path\\\":\\\"/testDoKitting\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"42\\\",\\\"labelName\\\":\\\"备料完成\\\",\\\"path\\\":\\\"/testFinishKitting\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"43\\\",\\\"labelName\\\":\\\"呼叫空箱\\\",\\\"path\\\":\\\"/testCallEmptyVehicle\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"44\\\",\\\"labelName\\\":\\\"整理盒子\\\",\\\"path\\\":\\\"/testSortBoxs\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"45\\\",\\\"labelName\\\":\\\"上传DBS\\\",\\\"path\\\":\\\"/uploadDbs\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"46\\\",\\\"labelName\\\":\\\"上传工单\\\",\\\"path\\\":\\\"/uploadOrders\\\"},{\\\"children\\\":[],\\\"id\\\":\\\"47\\\",\\\"labelName\\\":\\\"体验拣选\\\",\\\"path\\\":\\\"/play_boy\\\"}],\\\"iconValue\\\":\\\"Lock\\\",\\\"id\\\":\\\"4\\\",\\\"labelName\\\":\\\"测试\\\"}],\\\"standId\\\":\\\"ASRS-#1\\\",\\\"user\\\":{\\\"addTime\\\":\\\"2023-03-23 11:17:06\\\",\\\"addUser\\\":\\\"系统\\\",\\\"loginAccount\\\":\\\"admin\\\",\\\"loginPassword\\\":\\\"812C0C84E2970FA98456DDC5B0B59594\\\",\\\"roleId\\\":1,\\\"updateTime\\\":\\\"2023-03-23 11:17:10\\\",\\\"userId\\\":1,\\\"userName\\\":\\\"管理员\\\"}}}\"', '127.0.0.1', '2024-08-07 10:59:05', ''); +INSERT INTO `tbl_sys_log` VALUES ('LOG_202408071105579571722999957957', '获取当前站台任务完成信息', 'getFinishedWorkInfo', '[{\"goodsId\": \"\", \"standId\": \"ASRS-#1\"}]', '\"{\\\"code\\\":0,\\\"message\\\":\\\"获取工作信息成功\\\",\\\"returnData\\\":{\\\"actualCounts\\\":0,\\\"actualRows\\\":0,\\\"planCounts\\\":0,\\\"planRows\\\":0,\\\"standId\\\":\\\"ASRS-#1\\\",\\\"tip\\\":\\\"当前站台没有工作\\\"}}\"', '127.0.0.1', '2024-08-07 11:05:58', ''); -- ---------------------------- -- Table structure for tbl_sys_menu @@ -2997,6 +21477,7 @@ INSERT INTO `tbl_sys_menu` VALUES ('24', '出库记录', NULL, '/outTaskRecord', INSERT INTO `tbl_sys_menu` VALUES ('241', '盘点记录', NULL, '/inventoryRecord', '2'); INSERT INTO `tbl_sys_menu` VALUES ('25', '任务监控', NULL, '/taskMonitor', '2'); INSERT INTO `tbl_sys_menu` VALUES ('26', '库位监控', NULL, '/location', '2'); +INSERT INTO `tbl_sys_menu` VALUES ('27', '料箱监控', NULL, '/vehicles', '2'); INSERT INTO `tbl_sys_menu` VALUES ('28', '接口日志', NULL, '/wmsLog', '2'); INSERT INTO `tbl_sys_menu` VALUES ('3', '系统', 'Setting', NULL, '0'); INSERT INTO `tbl_sys_menu` VALUES ('35', '系统配置', NULL, '/config', '3'); @@ -3004,6 +21485,10 @@ INSERT INTO `tbl_sys_menu` VALUES ('4', '测试', 'Lock', NULL, '0'); INSERT INTO `tbl_sys_menu` VALUES ('41', '备料执行', NULL, '/testDoKitting', '4'); INSERT INTO `tbl_sys_menu` VALUES ('42', '备料完成', NULL, '/testFinishKitting', '4'); INSERT INTO `tbl_sys_menu` VALUES ('43', '呼叫空箱', NULL, '/testCallEmptyVehicle', '4'); +INSERT INTO `tbl_sys_menu` VALUES ('44', '整理盒子', NULL, '/testSortBoxs', '4'); +INSERT INTO `tbl_sys_menu` VALUES ('45', '上传DBS', NULL, '/uploadDbs', '4'); +INSERT INTO `tbl_sys_menu` VALUES ('46', '上传工单', NULL, '/uploadOrders', '4'); +INSERT INTO `tbl_sys_menu` VALUES ('47', '体验拣选', NULL, '/play_boy', '4'); -- ---------------------------- -- Table structure for tbl_sys_permission @@ -3038,6 +21523,11 @@ INSERT INTO `tbl_sys_permission` VALUES (21, '4', 1); INSERT INTO `tbl_sys_permission` VALUES (22, '41', 1); INSERT INTO `tbl_sys_permission` VALUES (23, '42', 1); INSERT INTO `tbl_sys_permission` VALUES (24, '43', 1); +INSERT INTO `tbl_sys_permission` VALUES (25, '44', 1); +INSERT INTO `tbl_sys_permission` VALUES (26, '27', 1); +INSERT INTO `tbl_sys_permission` VALUES (27, '45', 1); +INSERT INTO `tbl_sys_permission` VALUES (28, '46', 1); +INSERT INTO `tbl_sys_permission` VALUES (29, '47', 1); -- ---------------------------- -- Table structure for tbl_sys_role